Assignment 5. Machine Learning and Natural Language Processing

OPIM 5894 Data Science with Python

Name:Deepti Anie Varghese NetID:dav16108

Discussed with: if any

Instructions

In this assignment, you are asked to predict genders of users using their public information on websites. In question 1, you are asked to predict gender using only usename. In question 2, you are asked to predict gender using the profile description of a user instead. Finally, you may combine all available information of users to make predictions. You may explore different models and different combination of features, as well as different ways to transform features, to achieve best performance.

  • It is recommended to use NLTK for this classification task, as the features stored in dictionary style can be easily extended. While scikit-learn is easier for Q2, it might not be that straightforward to combine different features in Q3. In addition, dealing with categorical variables can be a pain in scikit-learn. If you plan to use scikit-learn anyway, please read the following post: http://pbpython.com/categorical-encoding.html
  • While protyping, it is easier to stick to the Naive Bayes Classifier. Adding other classifiers once your code is bug-free.
  • Use cross validation on the training set to avoid over-fitting, though it is not guaranteed achieve that purpose.


This assignment involves the following challenges:

  • Construct features from strings (i.e., usernames)
  • Frequent use of zip() and zip(*) (see doc https://docs.python.org/3/library/functions.html)
  • Parsing a json style column into multiple columns
  • Merging different features into one feature set
  • Find appropriate models and features to improve prediction accuracy
  • Writing and debugging a lot of code

What to submit?

  • The predictions of 5 models on the test set (see a sample submission sample_submission.csv). Diverify your portfolio, as similar models may suffer from similar problems.
  • The notebook file ( please make sure that your code are sufficiently commented)
  • In the end of the notebook file, briefly describe what you have done, which models work the best, and what findings you have.

The top 50% submissions will get 0-3 extra points. Try at least 3 models for each question. Try as many as you want for extra credit.

Please do NOT distribute the dataset used in this assignment!

In [96]:
import nltk
import pandas as pd
import os
os.chdir('C:/Users/deept/Desktop/Fall 2017/DataScience with Python/Nov16/Assignmnent5')
In [97]:
train = pd.read_csv('train.csv')
test = pd.read_csv('test.csv')

1. Predicting Gender with Username

Some potential features of usernames: whether it has capital letters, whether it has digits, number of characters, number of vowels, first and last letters, etc. See http://www.nltk.org/book/ch06.html for some related code.

In [98]:
# Function to extract various features from name like presence of capital letters, digits, vowels, length of names, first and 
# last characters from names using Regular Expression

import re
def usernamefeat(names):
    features={'Caps':re.search('[A-Z]',names),                # Checking presence of capital letters using regular expression
              'Digit':re.search('\d',names),                  # Checking presence of digits using regular expression
              'Numchar':len(names),                           # Calculating length of names
              'Vowel':re.search('[aeiou]', names,flags=re.I), # Checking presence of vowels using regular expression
              'First':names[0],                               # Extracting first character of name
               'Last':names[-1]}                              # Extracting last character of name
    return features
In [99]:
username1=train['username']
gender1=train['gender']
usergender=pd.concat([username1,gender1],axis=1)
In [100]:
# Create a list of tuples containing username and gender - this is the training set

trainfeat=[(usernamefeat(username),gender) for username,gender in usergender.values]
trainfeat
Out[100]:
[({'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'V',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'm',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'k',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 's',
   'Last': '1',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 't',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'y',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='2'>,
   'First': 'p',
   'Last': '9',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='4'>,
   'First': 'h',
   'Last': '3',
   'Numchar': 10,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'e',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='7'>,
   'First': 'B',
   'Last': '6',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='O'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': None,
   'First': 'V',
   'Last': 's',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
   'First': 'a',
   'Last': '6',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'm',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'R',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'g',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='3'>,
   'First': 'w',
   'Last': '3',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'd',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'b',
   'Last': '0',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'u',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'y',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'a',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='4'>,
   'First': 's',
   'Last': 'u',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'L',
   'Last': '5',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='E'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'y',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 'm',
   'Last': '1',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 's',
   'Last': '0',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 't',
   'Last': 'e',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'o',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
   'First': 's',
   'Last': '8',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(12, 13), match='1'>,
   'First': 'n',
   'Last': '8',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'e',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'Digit': None,
   'First': 'O',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'y',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'o',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 's',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'c',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'l',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='8'>,
   'First': 'O',
   'Last': '6',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'z',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='0'>,
   'First': 'c',
   'Last': '2',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(5, 6), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='Z'>,
   'Digit': None,
   'First': 'Z',
   'Last': 'h',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'p',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'z',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'h',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='5'>,
   'First': 'R',
   'Last': '4',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'z',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'h',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'z',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 's',
   'Last': '7',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'p',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='9'>,
   'First': 'k',
   'Last': '9',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'l',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': None,
   'First': 'N',
   'Last': 'y',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 't',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'x',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': None,
   'First': 'F',
   'Last': 'V',
   'Numchar': 3,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='E'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'o',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'r',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='3'>,
   'First': 'a',
   'Last': '3',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'm',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'a',
   'Last': '1',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'v',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'l',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'i',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='0'>,
   'First': 't',
   'Last': '9',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'V',
   'Last': '2',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='G'>,
   'Digit': None,
   'First': 'G',
   'Last': 'z',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='1'>,
   'First': 'd',
   'Last': 'g',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'v',
   'Last': '0',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'h',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': None,
   'First': 'V',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
   'First': 'a',
   'Last': '1',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'h',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'o',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'o',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'k',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'd',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
   'First': 'l',
   'Last': '4',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='5'>,
   'First': 'b',
   'Last': '5',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'f',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': None,
   'First': 'V',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'k',
   'Last': '1',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'z',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'h',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'j',
   'Last': '8',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'o',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'e',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'd',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': None,
   'First': 'F',
   'Last': 'y',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'j',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'p',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'I',
   'Last': '1',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='7'>,
   'First': 'm',
   'Last': '6',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'd',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='3'>,
   'First': 'e',
   'Last': '9',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 't',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'y',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'f',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'x',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'd',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
   'First': 'c',
   'Last': '2',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'o',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='9'>,
   'First': 'g',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'h',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'x',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'A',
   'Last': '8',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'l',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'd',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='0'>,
   'First': 'n',
   'Last': '1',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
   'First': 'm',
   'Last': '0',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'e',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'g',
   'Numchar': 3,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'd',
   'Last': '6',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='1'>,
   'First': 'K',
   'Last': 't',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(6, 7), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'o',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='1'>,
   'First': 'g',
   'Last': 'b',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(6, 7), match='B'>,
   'Digit': None,
   'First': 'h',
   'Last': 'a',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'd',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
   'First': 's',
   'Last': '2',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'v',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'M',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'n',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'D',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'n',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'e',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'u',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'm',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
   'First': 'o',
   'Last': '7',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'u',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 'f',
   'Last': '2',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'v',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'e',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'h',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='Y'>,
   'Digit': None,
   'First': 'Y',
   'Last': 'F',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'r',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'y',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='4'>,
   'First': 'p',
   'Last': 'o',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'h',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'y',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 's',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'c',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'u',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': None,
   'First': 'N',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'v',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='1'>,
   'First': 'n',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'k',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
   'First': 'm',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
   'First': 's',
   'Last': '0',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'k',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'm',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'm',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'A',
   'Last': '6',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(5, 6), match='I'>,
   'Digit': None,
   'First': 't',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'r',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='5'>,
   'First': 'E',
   'Last': '0',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'l',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
   'First': 'e',
   'Last': '5',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
   'Digit': None,
   'First': 'B',
   'Last': 'i',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 'g',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'h',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'p',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'c',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': '9',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'l',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'v',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'm',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'K',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
   'First': 'v',
   'Last': 'y',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'K',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'd',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(8, 9), match='I'>,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='0'>,
   'First': 's',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': None,
   'First': 'E',
   'Last': 't',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 'N',
   'Last': '5',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'x',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'h',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'y',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='Y'>,
   'Digit': None,
   'First': 'Y',
   'Last': 'i',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': None,
   'First': 'N',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='7'>,
   'First': 'r',
   'Last': '7',
   'Numchar': 7,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'z',
   'Last': '1',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'y',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'm',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'y',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'b',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'L',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='4'>,
   'First': 'k',
   'Last': '5',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'Digit': None,
   'First': 'O',
   'Last': 'm',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 's',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'g',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'j',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'g',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='8'>,
   'First': 'l',
   'Last': '8',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='3'>,
   'First': 'a',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 's',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='7'>,
   'First': 't',
   'Last': '9',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'i',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='0'>,
   'First': 'v',
   'Last': '4',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'e',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'J',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'n',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': '7',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'p',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='I'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'r',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'i',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'i',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='7'>,
   'First': 'h',
   'Last': '8',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'r',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'r',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 's',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'o',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='U'>,
   'Digit': None,
   'First': 'U',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='U'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'h',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 't',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'h',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='9'>,
   'First': 'm',
   'Last': '7',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'Digit': None,
   'First': 'O',
   'Last': 'l',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'g',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'a',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='7'>,
   'First': 's',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(5, 6), match='K'>,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='0'>,
   'First': 'r',
   'Last': 'K',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
   'Digit': None,
   'First': 'H',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(5, 6), match='L'>,
   'Digit': None,
   'First': 'h',
   'Last': 'r',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'o',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'g',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='2'>,
   'First': 'o',
   'Last': '9',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='7'>,
   'First': 'h',
   'Last': '6',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'W',
   'Last': '4',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='A'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(6, 7), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'o',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='4'>,
   'First': 'o',
   'Last': '7',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
   'First': 'l',
   'Last': '5',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 't',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'A',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'x',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': '1',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(5, 6), match='H'>,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'K',
   'Last': '8',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 'N',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'o',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='7'>,
   'First': 'p',
   'Last': '2',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'e',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 'm',
   'Last': '7',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'c',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'v',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'y',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
   'First': 'N',
   'Last': '0',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 't',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='3'>,
   'First': 's',
   'Last': '8',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'h',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'e',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='8'>,
   'First': 'l',
   'Last': '2',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'u',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'l',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'd',
   'Numchar': 5,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'e',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
   'Digit': None,
   'First': 'H',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'F',
   'Last': '7',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'v',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'f',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(14, 15), match='1'>,
   'First': 'h',
   'Last': '1',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'K',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='7'>,
   'First': 'p',
   'Last': '7',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='8'>,
   'First': 'b',
   'Last': '2',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'y',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': None,
   'First': 'V',
   'Last': 'e',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'm',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='4'>,
   'First': 'j',
   'Last': '0',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 's',
   'Last': '2',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'Z',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'x',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'J',
   'Last': '4',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'd',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'g',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'y',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='7'>,
   'First': 'n',
   'Last': 'h',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'z',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': None,
   'First': 'F',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'L',
   'Last': 'y',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'T',
   'Numchar': 4,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'b',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'l',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'e',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 't',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 't',
   'Numchar': 4,
   'Vowel': None},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'm',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'f',
   'Last': '0',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'c',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='7'>,
   'First': 'a',
   'Last': '8',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 't',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='5'>,
   'First': 'a',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'v',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'i',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'l',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'i',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'B',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(3, 4), match='S'>,
   'Digit': None,
   'First': 'p',
   'Last': 'R',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(5, 6), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 't',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'j',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'N',
   'Last': 'h',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'y',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='6'>,
   'First': 's',
   'Last': '6',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='8'>,
   'First': 'g',
   'Last': '3',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'f',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='A'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'd',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'h',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='6'>,
   'First': 'g',
   'Last': '3',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'm',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'a',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 'h',
   'Last': '3',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(1, 2), match='S'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='4'>,
   'First': 'e',
   'Last': 'u',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='Z'>,
   'Digit': None,
   'First': 'Z',
   'Last': 'l',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'i',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'y',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(5, 6), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': None,
   'First': 'N',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'u',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(12, 13), match='I'>,
   'Digit': None,
   'First': 'e',
   'Last': 'T',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='8'>,
   'First': 'e',
   'Last': '4',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'm',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': None,
   'First': 'F',
   'Last': 'K',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'S',
   'Last': '7',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='1'>,
   'First': 's',
   'Last': '1',
   'Numchar': 5,
   'Vowel': None},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'l',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'h',
   'Last': '5',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 't',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'o',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'j',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='8'>,
   'First': 'k',
   'Last': '7',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='4'>,
   'First': 'm',
   'Last': '2',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 't',
   'Last': '2',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'm',
   'Last': 't',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'o',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'a',
   'Last': 'i',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='0'>,
   'First': 'c',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'v',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
   'First': 'y',
   'Last': '5',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='4'>,
   'First': 't',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'l',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='4'>,
   'First': 'E',
   'Last': 'k',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': None,
   'First': 'F',
   'Last': 'o',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'l',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 't',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'r',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'r',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'm',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'u',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'n',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='2'>,
   'First': 'b',
   'Last': '3',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'n',
   'Last': '3',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'l',
   'Last': '8',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='1'>,
   'First': 'P',
   'Last': '1',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='8'>,
   'First': 'a',
   'Last': '8',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='1'>,
   'First': 'p',
   'Last': '9',
   'Numchar': 6,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
   'First': 'e',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'f',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'z',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='8'>,
   'First': 's',
   'Last': '7',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'c',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'e',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'p',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'i',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'S',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'n',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(1, 2), match='M'>,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
   'First': 'i',
   'Last': '0',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='4'>,
   'First': 'a',
   'Last': '1',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='1'>,
   'First': 'c',
   'Last': '4',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'b',
   'Last': '0',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 't',
   'Last': '6',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='1'>,
   'First': 'J',
   'Last': '3',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'x',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'c',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'v',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'l',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'o',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'h',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'm',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='0'>,
   'First': 'm',
   'Last': 't',
   'Numchar': 6,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='3'>,
   'First': 's',
   'Last': '8',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 't',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'e',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 't',
   'Last': '3',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'x',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'b',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 's',
   'Last': '6',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'i',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'n',
   'Last': '0',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'g',
   'Numchar': 6,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'c',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'o',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'm',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'Digit': None,
   'First': 'O',
   'Last': 's',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(15, 16), match='1'>,
   'First': 'm',
   'Last': '1',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'l',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'b',
   'Last': 'b',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'l',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 't',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'j',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': None,
   'First': 'E',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'e',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='7'>,
   'First': 's',
   'Last': '1',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
   'Digit': None,
   'First': 'W',
   'Last': 'z',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'y',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 's',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='1'>,
   'First': 't',
   'Last': '3',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'o',
   'Last': '5',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 't',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='1'>,
   'First': 'f',
   'Last': 'e',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'c',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'm',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'c',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='3'>,
   'First': 't',
   'Last': '6',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'r',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'J',
   'Last': '8',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 'n',
   'Last': '5',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
   'Digit': None,
   'First': 'W',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'm',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'm',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'A',
   'Last': '1',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'k',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'e',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='2'>,
   'First': 'u',
   'Last': '9',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'm',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
   'First': 's',
   'Last': '7',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='4'>,
   'First': 's',
   'Last': '4',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'S',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'h',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'j',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'x',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='G'>,
   'Digit': None,
   'First': 'G',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'o',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'z',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'j',
   'Last': '3',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'g',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'b',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 's',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 's',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='4'>,
   'First': 'm',
   'Last': '0',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'o',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'v',
   'Last': '3',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='5'>,
   'First': 'v',
   'Last': '5',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'j',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='2'>,
   'First': 'd',
   'Last': '1',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'f',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
   'First': 't',
   'Last': '0',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'y',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'y',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'l',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'j',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'd',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 't',
   'Last': 'd',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'd',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'p',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 't',
   'Last': '7',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(12, 13), match='0'>,
   'First': 'g',
   'Last': '8',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'e',
   'Last': '0',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'm',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
   'First': 'm',
   'Last': '3',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'c',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'b',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
   'First': 'r',
   'Last': '2',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'c',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'e',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='6'>,
   'First': 'S',
   'Last': '5',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
   'First': 'l',
   'Last': '8',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='8'>,
   'First': 'H',
   'Last': '6',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'M',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'e',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'm',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'd',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': None,
   'First': 'E',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'g',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'r',
   'Last': '1',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'R',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'e',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'C',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 'a',
   'Last': '8',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
   'First': 'm',
   'Last': '6',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'q',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='U'>,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
   'First': 'U',
   'Last': '4',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='U'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='3'>,
   'First': 'b',
   'Last': '2',
   'Numchar': 5,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'g',
   'Last': '3',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
   'First': 'w',
   'Last': '7',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 't',
   'Last': '5',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'M',
   'Last': '3',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 's',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 's',
   'Last': '1',
   'Numchar': 6,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'r',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'a',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='7'>,
   'First': 's',
   'Last': '6',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'h',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'h',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'q',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'c',
   'Last': '0',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'P',
   'Last': '5',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'k',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'm',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'f',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'f',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'p',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'e',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'c',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'v',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'N',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(12, 13), match='2'>,
   'First': 'v',
   'Last': '8',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='0'>,
   'First': 'C',
   'Last': '7',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'R',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'x',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='2'>,
   'First': 'b',
   'Last': '0',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'm',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'o',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'v',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'P',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='6'>,
   'First': 'r',
   'Last': '5',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'u',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'k',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'y',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'r',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'o',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'o',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'l',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'r',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 's',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'b',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='6'>,
   'First': 'z',
   'Last': '1',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'o',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'h',
   'Last': '7',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
   'Digit': None,
   'First': 'B',
   'Last': 'X',
   'Numchar': 3,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'S',
   'Last': '1',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'k',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': None,
   'First': 'E',
   'Last': 'x',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='1'>,
   'First': 'm',
   'Last': '3',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'z',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'R',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='E'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'e',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'y',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='1'>,
   'First': 's',
   'Last': '3',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'd',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'j',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'r',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'v',
   'Last': '0',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'o',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='1'>,
   'First': 'd',
   'Last': '3',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'h',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='3'>,
   'First': 'i',
   'Last': 'd',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='5'>,
   'First': 'M',
   'Last': 'D',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(15, 16), match='1'>,
   'First': 'b',
   'Last': '1',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='7'>,
   'First': 'm',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'h',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 't',
   'Last': '0',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'v',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'g',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'G',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='8'>,
   'First': 'r',
   'Last': '5',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 't',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='3'>,
   'First': 'a',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'u',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'p',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': None,
   'First': 'E',
   'Last': 'a',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 'D',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'v',
   'Last': '0',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'b',
   'Last': '8',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 'd',
   'Last': '2',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'k',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'y',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'd',
   'Last': '4',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'a',
   'Last': '9',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'k',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='7'>,
   'First': 'd',
   'Last': '9',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'a',
   'Last': '5',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'e',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(15, 16), match='1'>,
   'First': 'w',
   'Last': '1',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'k',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'r',
   'Last': '8',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'd',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='3'>,
   'First': 'a',
   'Last': 'x',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'k',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'd',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'm',
   'Numchar': 3,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'i',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 's',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 'y',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'm',
   'Last': 't',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
   'First': 'v',
   'Last': '3',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'j',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'a',
   'Last': '8',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'v',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'i',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 'S',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'k',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'y',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'a',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='8'>,
   'First': 's',
   'Last': '6',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'q',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'm',
   'Numchar': 5,
   'Vowel': None},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': None,
   'First': 'V',
   'Last': 'G',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'i',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='3'>,
   'First': 'd',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'v',
   'Last': '2',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'c',
   'Last': '0',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
   'Digit': None,
   'First': 'H',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'n',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'd',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='5'>,
   'First': 'p',
   'Last': '5',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
   'Digit': None,
   'First': 'W',
   'Last': 'l',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'o',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'o',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 's',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'h',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'n',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'j',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='3'>,
   'First': 'r',
   'Last': '7',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='1'>,
   'First': 's',
   'Last': '8',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'a',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'e',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 's',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'w',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'e',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'o',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
   'First': 'd',
   'Last': '7',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'y',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'c',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'l',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'u',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
   'Digit': None,
   'First': 'H',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'm',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'A',
   'Last': '0',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 't',
   'Last': '2',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='Y'>,
   'Digit': None,
   'First': 'Y',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'x',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'T',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 's',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'm',
   'Last': '2',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'w',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'a',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='2'>,
   'First': 'N',
   'Last': 'd',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'o',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='3'>,
   'First': 'g',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'b',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'B',
   'Numchar': 3,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'k',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='3'>,
   'First': 'm',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'l',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
   'Digit': None,
   'First': 'B',
   'Last': 'e',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='8'>,
   'First': 'f',
   'Last': '6',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
   'Digit': None,
   'First': 'B',
   'Last': 'o',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'x',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'y',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='2'>,
   'First': 'e',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='1'>,
   'First': 't',
   'Last': '3',
   'Numchar': 6,
   'Vowel': None},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='G'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='7'>,
   'First': 'G',
   'Last': '7',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'p',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='4'>,
   'First': 'b',
   'Last': '4',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='9'>,
   'First': 'a',
   'Last': '5',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'r',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'f',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
   'First': 's',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'e',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 't',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'e',
   'Last': 'j',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
   'First': 'a',
   'Last': '9',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'u',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 't',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'l',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'f',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'p',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 'u',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'z',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'q',
   'Last': 'x',
   'Numchar': 3,
   'Vowel': None},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 's',
   'Last': '7',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'a',
   'Last': '1',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
   'First': 's',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='6'>,
   'First': 'n',
   'Last': '6',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>},
  'M'),
 ...]
In [101]:
# Run a Naive Bayes classifier on above training set using 5 fold cross validation and check accuracy of model

from sklearn.model_selection import KFold
import numpy as np
k_fold = KFold(n_splits=5, shuffle=True)
accu = []
for train_idx, test_idx in k_fold.split(trainfeat):
    train = [trainfeat[i] for i in train_idx]
    test = [trainfeat[i] for i in test_idx]
    classifier = nltk.NaiveBayesClassifier.train(train)   
    accu.append( nltk.classify.util.accuracy(classifier, test) )
    print('accuracy:', accu[len(accu)-1])    
print('CV mean accuracy:', np.mean(accu))   
accuracy: 0.7168
accuracy: 0.6952
accuracy: 0.7208
accuracy: 0.7168
accuracy: 0.722177742193755
CV mean accuracy: 0.714355548439
In [102]:
# Display top 5 most informative features used for classification

classifier.show_most_informative_features(5)
Most Informative Features
                   First = 'U'                 F : M      =      7.2 : 1.0
                    Last = 'O'                 F : M      =      7.2 : 1.0
                   First = 'X'                 F : M      =      4.3 : 1.0
                   First = 'Y'                 F : M      =      3.5 : 1.0
                    Last = 'B'                 F : M      =      3.5 : 1.0
In [103]:
#Train Naive Bayes classifier on entire training set and use it to predict gender on test set

test = pd.read_csv('test.csv')
username1=test['username']
testfeat=[usernamefeat(username) for username in username1]   # Creation of test set
classifier2 = nltk.NaiveBayesClassifier.train(trainfeat)  
pred = [classifier2.classify(row) for row in testfeat]        # Predicting output of test set 
pred
Out[103]:
['M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 ...]
In [104]:
# Copy test set predictions to output dataset

naiveqn1 = pd.DataFrame({'username':test['username'], 'prediction':pred})
naiveqn1.to_csv('dav16108naiveqn1.csv', index=False)
In [105]:
# Run a Max Entropy classifier on above training set using 5 fold cross validation and check accuracy of model


k_fold = KFold(n_splits=5, shuffle=True)
accu = []
for train_idx, test_idx in k_fold.split(trainfeat):
    train = [trainfeat[i] for i in train_idx]
    test = [trainfeat[i] for i in test_idx]
    classifier = nltk.classify.MaxentClassifier.train(trainfeat, trace=3, max_iter=5)       
    accu.append( nltk.classify.util.accuracy(classifier, test) )
    print('accuracy:', accu[len(accu)-1])    
print('CV mean accuracy:', np.mean(accu)) 
  ==> Training (5 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.813
             2          -0.33608        0.813
             3          -0.30253        0.819
             4          -0.27509        0.836
         Final          -0.25208        0.868
accuracy: 0.868
  ==> Training (5 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.813
             2          -0.33608        0.813
             3          -0.30253        0.819
             4          -0.27509        0.836
         Final          -0.25208        0.868
accuracy: 0.8632
  ==> Training (5 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.813
             2          -0.33608        0.813
             3          -0.30253        0.819
             4          -0.27509        0.836
         Final          -0.25208        0.868
accuracy: 0.8856
  ==> Training (5 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.813
             2          -0.33608        0.813
             3          -0.30253        0.819
             4          -0.27509        0.836
         Final          -0.25208        0.868
accuracy: 0.86
  ==> Training (5 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.813
             2          -0.33608        0.813
             3          -0.30253        0.819
             4          -0.27509        0.836
         Final          -0.25208        0.868
accuracy: 0.8630904723779024
CV mean accuracy: 0.867978094476
In [106]:
# Display top 5 most informative features used for classification

classifier.show_most_informative_features(5)
   1.468 Vowel==<_sre.SRE_Match object; span=(2, 3), match='a'> and label is 'F'
   1.401 Vowel==<_sre.SRE_Match object; span=(0, 1), match='i'> and label is 'F'
   1.398 Vowel==<_sre.SRE_Match object; span=(1, 2), match='o'> and label is 'F'
   1.390 Vowel==<_sre.SRE_Match object; span=(1, 2), match='e'> and label is 'F'
   1.387 Vowel==<_sre.SRE_Match object; span=(0, 1), match='u'> and label is 'F'
In [107]:
#Train Max Entropy classifier on entire training set and use it to predict gender on test set


test3 = pd.read_csv('test.csv')
username3=test3['username']
testfeat=[usernamefeat(username) for username in username3]
classifier3 = nltk.classify.MaxentClassifier.train(trainfeat, trace=3, max_iter=5)  
pred3 = [classifier3.classify(row) for row in testfeat]
pred3
  ==> Training (5 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.813
             2          -0.33608        0.813
             3          -0.30253        0.819
             4          -0.27509        0.836
         Final          -0.25208        0.868
Out[107]:
['M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 ...]
In [108]:
# Copy test set predictions to output dataset

maxentropyqn1 = pd.DataFrame({'username':test3['username'], 'prediction':pred3})
maxentropyqn1.to_csv('dav16108maxentropyqn1.csv', index=False)
In [109]:
# support your predictions are stored in a list named pred_uname
# zz = pd.DataFrame({'username':test['username'], 'prediction':pred_uname})
# zz.to_csv('pred_uname.csv', index=False)

2. Predicting Gender with Description

The updated notebook for lecture 11 might be of some help, which now includes demo code for making predictions with NLTK classifier.

In [110]:
#Sentence preprocessing

from nltk.corpus import stopwords
from nltk.stem import PorterStemmer
import string
ps = PorterStemmer()
from nltk.tokenize import word_tokenize
def preprocess(text):
    return [ps.stem(w) for w in word_tokenize(text.lower()) 
             if w not in string.punctuation and w not in stopwords.words('english')] 
In [111]:
#Extracting word counts from sentences
def extract_features(words, selected_words):
    ''' simply using words counts'''
    return nltk.FreqDist([w for w in words if w in selected_words])
In [112]:
# Read train and test data sets

train = pd.read_csv('train.csv')
test = pd.read_csv('test.csv')
In [113]:
# Extract gender and description and from training set

gender1=train['gender']
desc1=train['description']
userdesc1=pd.concat([gender1,desc1],axis=1)
In [114]:
# Create a list of tuples containing relevant words from description and gender - this is the training set

all_words = [(gender,preprocess(description)) for gender,description in userdesc1.values ]
all_words2 = [w for gender, description in all_words for w in description]  #Ungroup or flatten and convert into 1 set of words
words_freq = nltk.FreqDist(all_words2)
selected_words = [word for word, freq in words_freq.items() if freq>1] #Word count greater than 1 in whole set of words
trainfeat2=[(extract_features(desc,selected_words),gender) for gender,desc in all_words]# retain only those words in each group where word count>!
trainfeat2
Out[114]:
[(FreqDist({'5': 1,
            'content': 1,
            'data': 1,
            'entri': 1,
            'project': 1,
            'relat': 1,
            'research': 1,
            'team': 1,
            'variou': 1,
            'work': 2,
            'write': 1}),
  'M'),
 (FreqDist({'compani': 2,
            'e-learn': 1,
            'expertis': 1,
            'know': 1,
            'media': 1,
            'provid': 1,
            'servic': 1,
            'social': 1,
            'solut': 1,
            'url': 1,
            'visit': 1}),
  'M'),
 (FreqDist({'administr': 1, 'hobbi': 1, 'system': 1, 'work': 1}), 'M'),
 (FreqDist({'acquir': 1,
            'articl': 1,
            'check': 1,
            'content': 1,
            'copywrit': 1,
            'day': 1,
            'experi': 2,
            'experienc': 1,
            'good': 1,
            'hope': 1,
            'knowledg': 1,
            'offer': 1,
            'profil': 1,
            'promis': 1,
            'qualiti': 1,
            'soon': 1,
            'take': 1,
            'thank': 1,
            'time': 1,
            'work': 1,
            'writer': 1,
            'year': 2}),
  'F'),
 (FreqDist({'build': 1,
            'client': 1,
            'deliv': 1,
            'good': 1,
            'high': 1,
            'price': 1,
            'qualiti': 1,
            'reason': 1,
            'relat': 1,
            'time': 1,
            'work': 1}),
  'M'),
 (FreqDist({'12': 1,
            'adob': 1,
            'ajax': 1,
            'also': 1,
            'area': 1,
            'build': 1,
            'busi': 1,
            'business.i': 1,
            'compani': 1,
            'compet': 1,
            'complet': 1,
            'core': 1,
            'cs3': 1,
            'design': 1,
            'develop': 2,
            'dhtml': 1,
            'dreamweav': 1,
            'end-end': 1,
            'experi': 1,
            'express': 1,
            'follow': 1,
            'ground': 1,
            'hmtl': 1,
            'includ': 1,
            'last': 1,
            'lie': 1,
            'logo': 1,
            'manag': 1,
            'microsoft': 1,
            'new': 1,
            'opportun': 1,
            'photoshop': 1,
            'php': 1,
            'project': 1,
            'rang': 1,
            'seek': 1,
            'site': 1,
            'small': 1,
            'startup': 1,
            'use': 1,
            'web': 1,
            'websit': 3,
            'wide': 1,
            'year': 1}),
  'M'),
 (FreqDist({'1': 3,
            '10': 1,
            '10.0': 1,
            '13': 1,
            '1999-2003': 1,
            '2': 1,
            '20': 1,
            '2003': 1,
            '2004': 2,
            '2004\\t': 1,
            '2005': 5,
            '2006': 3,
            '2007': 3,
            '2008': 3,
            '2009': 1,
            '2009surigao': 2,
            '3': 2,
            '30': 1,
            '4': 1,
            '4th': 1,
            '6': 5,
            '70': 1,
            '79': 2,
            '80': 1,
            '\\t\\tweb': 1,
            '\\xe2\\u20ac\\u201c': 17,
            'academi': 3,
            'accord': 2,
            'account': 3,
            'accredit': 1,
            'address': 1,
            'adob': 4,
            'advertis': 1,
            'affect': 1,
            'agenc': 1,
            'agent': 6,
            'agent\\xe2\\u20ac\\u2122': 2,
            'aht': 2,
            'aid': 1,
            'alway': 1,
            'american': 1,
            'amount': 1,
            'answer': 1,
            'apa': 6,
            'applic': 1,
            'apprais': 2,
            'area': 1,
            'art': 1,
            'artwork': 1,
            'asiatown': 6,
            'assur': 1,
            'august': 2,
            'avail': 1,
            'ave.': 1,
            'avenu': 3,
            'averag': 1,
            'basic': 1,
            'beginn': 1,
            'bigger': 1,
            'bill': 1,
            'bldng': 5,
            'bohol': 4,
            'bpo': 1,
            'busi': 1,
            'cagayan': 2,
            'calibr': 2,
            'call': 10,
            'campu': 2,
            'cancel': 3,
            'cca': 2,
            'cebu': 15,
            'center': 7,
            'certif': 1,
            'chang': 1,
            'churn': 2,
            'citi': 5,
            'cityjanuari': 2,
            'cityjun': 7,
            'class': 3,
            'cleric': 1,
            'client': 5,
            'coach': 3,
            'colleg': 1,
            'commun': 2,
            'compani': 2,
            'company\\xe2\\u20ac\\u2122': 2,
            'complianc': 2,
            'comput': 1,
            'concept': 2,
            'concern': 1,
            'constant': 2,
            'correct': 1,
            'cours': 1,
            'cover': 2,
            'cp': 1,
            'credit': 1,
            'cs': 1,
            'csat': 2,
            'cultur': 1,
            'curriculum': 1,
            'custom': 12,
            'customer\\xe2\\u20ac\\u2122': 1,
            'day': 1,
            'day/': 1,
            'de': 2,
            'depart': 3,
            'depend': 1,
            'descript': 1,
            'design': 5,
            'desir': 1,
            'develop': 1,
            'differ': 1,
            'direct': 3,
            'dmv': 1,
            'document': 1,
            'don\\xe2\\u20ac\\u2122t': 1,
            'drive': 1,
            'due': 2,
            'earthlink': 4,
            'educ': 2,
            'effect': 6,
            'elementari': 1,
            'english': 3,
            'ensur': 1,
            'establish': 1,
            'etc': 3,
            'evalu': 1,
            'everi': 2,
            'excel': 1,
            'execut': 1,
            'expans': 1,
            'extern': 1,
            'factor': 1,
            'februari': 2,
            'feedback': 2,
            'floor': 7,
            'focus': 1,
            'follow': 1,
            'foreign': 1,
            'formul': 2,
            'foundat': 1,
            'frequenc': 1,
            'full': 2,
            'gener': 3,
            'geographi': 1,
            'get': 1,
            'gift': 3,
            'govern': 1,
            'grammar': 1,
            'graphic': 2,
            'gross': 1,
            'growth': 2,
            'gsr': 2,
            'handl': 4,
            'help': 1,
            'high': 2,
            'hit': 3,
            'hotel': 1,
            'illustr': 2,
            'inbound': 1,
            'inc.2nd': 2,
            'inc.unit': 4,
            'indic': 1,
            'inform': 1,
            'insur': 2,
            'intend': 1,
            'intens': 2,
            'interact': 2,
            'intermedi': 1,
            'intern': 1,
            'interpret': 1,
            'investig': 1,
            'januari': 2,
            'japanes': 1,
            'job': 2,
            'juli': 2,
            'june': 1,
            'key': 1,
            'korean': 1,
            'kpi': 1,
            'kpi/': 2,
            'lahug': 8,
            'lapu-lapu': 3,
            'layout': 1,
            'leadership': 1,
            'level': 1,
            'life': 1,
            'make': 1,
            'manag': 2,
            'manner': 1,
            'march': 3,
            'market': 2,
            'mass': 1,
            'materi': 1,
            'maxilom': 2,
            'maximum': 1,
            'may': 5,
            'mepz': 2,
            'metric': 1,
            'minimum': 1,
            'modul': 1,
            'monitor': 1,
            'motor': 1,
            'move': 1,
            'name': 1,
            'ndoe': 2,
            'necessari': 3,
            'negoti': 1,
            'new': 2,
            'nhandl': 2,
            'normal': 1,
            'novemb': 1,
            'number': 1,
            'oic': 2,
            'one': 4,
            'oper': 1,
            'order': 3,
            'oro': 1,
            'outsourc': 1,
            'overview': 1,
            'page': 2,
            'paperwork': 1,
            'park': 6,
            'peoplesupport': 8,
            'per': 2,
            'perform': 6,
            'phil': 9,
            'philippin': 3,
            'phone': 1,
            'photoshop': 1,
            'polici': 3,
            'potenti': 1,
            'powerpoint': 1,
            'prepar': 1,
            'prioriti': 1,
            'problem': 1,
            'procedur': 3,
            'process': 5,
            'profici': 3,
            'program': 4,
            'progress': 1,
            'put': 1,
            'qa': 3,
            'qualiti': 1,
            'question': 2,
            'rate': 1,
            'read': 1,
            'reader': 1,
            'receiv': 1,
            'recruit': 1,
            'refresh': 1,
            'regard': 2,
            'regular': 1,
            'relat': 1,
            'remot': 1,
            'report': 4,
            'repres': 2,
            'research': 1,
            'respons': 3,
            'result': 1,
            'retent': 5,
            'role': 1,
            'rule': 1,
            'sale': 3,
            'satisfact': 1,
            'save': 10,
            'schedul': 1,
            'school': 1,
            'schoolwith': 1,
            'seminar': 2,
            'senior': 1,
            'servic': 5,
            'session': 3,
            'skill': 1,
            'specif': 3,
            'specifi': 1,
            'speech': 1,
            'stage': 1,
            'state': 2,
            'strategi': 2,
            'strength': 1,
            'student': 2,
            'sudeco': 2,
            'supervisor': 2,
            'supervisor\\xe2\\u20ac\\u2122': 2,
            'supervisori': 1,
            'sure': 1,
            'survey': 1,
            'symposium': 1,
            'tagbilaran': 4,
            'take': 1,
            'teach': 1,
            'team': 4,
            'team\\xe2\\u20ac\\u2122': 1,
            'telemarket': 1,
            'tenur': 1,
            'term': 2,
            'thorough': 1,
            'time': 3,
            'tour': 2,
            'tourist': 1,
            'train': 10,
            'trainer': 1,
            'univers': 5,
            'updat': 2,
            'use': 1,
            'veg': 2,
            'vehicl': 1,
            'ventur': 1,
            'version': 1,
            'visaya': 1,
            'voic': 1,
            'web': 1,
            'week': 1,
            'weekli': 1,
            'within': 2,
            'work': 1,
            'workshop': 2,
            'write': 2,
            'writer': 1,
            'wrong': 1}),
  'F'),
 (FreqDist({"'m": 2,
            'blog': 1,
            'chemic': 1,
            'data': 1,
            'engin': 1,
            'entri': 1,
            'faculti': 1,
            'freelanc': 1,
            'graduat': 1,
            'hobbi': 1,
            'internet': 1,
            'logo': 1,
            'make': 1,
            'seo': 1}),
  'M'),
 (FreqDist({'3': 1,
            '3d': 3,
            '3year': 1,
            '5': 1,
            '8': 1,
            'actual': 1,
            'adjac': 1,
            'adob': 2,
            'advertis': 1,
            'alia': 1,
            'anim': 1,
            'architectur': 2,
            'artist': 1,
            'automot': 1,
            'basic': 2,
            'beggin': 4,
            'catia': 1,
            'certif': 1,
            'cgi': 2,
            'citi': 1,
            'close': 1,
            'colleg': 1,
            'comput': 1,
            'countri': 1,
            'cuza': 1,
            'databas': 1,
            'design': 1,
            'design-': 3,
            'educ': 1,
            'effects-': 1,
            'engin': 1,
            'english': 1,
            'experi': 3,
            'far': 1,
            'film': 1,
            'final': 1,
            'flow': 1,
            'fluent': 1,
            'french': 1,
            'fx': 1,
            'game': 1,
            'generalist': 2,
            'hometown': 1,
            'industri': 1,
            'italian': 1,
            'light': 1,
            'locat': 2,
            'london': 1,
            'max': 1,
            'mental': 1,
            'microsoft': 2,
            'model': 1,
            'name': 1,
            'nativ': 1,
            'norway': 1,
            'nuke': 1,
            'offic': 2,
            'packag': 1,
            'photorealist': 1,
            'photoshop': 1,
            'portfolio': 1,
            'present': 1,
            'profil': 2,
            'program': 1,
            'project': 1,
            'ray': 1,
            'real': 1,
            'render': 2,
            'romania': 2,
            'romanian': 1,
            'scienc': 1,
            'sibiu': 2,
            'softwar': 3,
            'software-': 1,
            'str': 1,
            'studio': 2,
            'tool': 1,
            'uk': 1,
            'univers': 1,
            'visual': 1,
            'visualis': 1,
            'web': 1,
            'year': 2}),
  'M'),
 (FreqDist({'assist': 1,
            'client': 1,
            'creat': 1,
            'goal': 1,
            'highli': 1,
            'long-last': 1,
            'relationship': 1,
            'satisfi': 1,
            'task': 1,
            'virtual': 1,
            'well': 1}),
  'F'),
 (FreqDist({"'ve": 1,
            'attent': 1,
            'client': 1,
            'detail': 1,
            'develop': 1,
            'focus': 1,
            'got': 1,
            'hard': 1,
            'love': 1,
            'pay': 1,
            'practic': 1,
            'resourc': 1,
            'satisfi': 1,
            'skill': 1,
            'softwar': 1,
            'web': 1,
            'work': 1}),
  'M'),
 (FreqDist({'7': 1,
            '7+': 1,
            'api': 1,
            'build': 1,
            'crm': 1,
            'experi': 1,
            'industri': 1,
            'know': 1,
            'last': 1,
            'pharmaceut': 1,
            'php/mysql': 1,
            'total': 1,
            'use': 1,
            'version': 1,
            'vtiger': 2,
            'work': 2,
            'year': 2}),
  'M'),
 (FreqDist({'10': 1,
            'abid': 1,
            'afford': 1,
            'believ': 1,
            'compani': 1,
            'contact': 1,
            'convert': 1,
            'countri': 1,
            'custom': 2,
            'design': 1,
            'domain': 1,
            'ethic': 1,
            'evalu': 1,
            'free': 5,
            'googl': 1,
            'help': 1,
            'host': 1,
            'hour': 1,
            'lb': 1,
            'limit': 1,
            'manag': 1,
            'market': 1,
            'offer': 1,
            'packag': 2,
            'profession': 2,
            'project': 1,
            'report': 1,
            'sale': 1,
            'search': 1,
            'select': 1,
            'seo': 5,
            'specialist': 1,
            'traffic': 1,
            'unlimit': 1,
            'us': 1,
            'work': 1}),
  'F'),
 (FreqDist({'2000/2003': 2,
            '4.0': 1,
            '9.x': 1,
            'activ': 1,
            'antispam': 1,
            'apach': 1,
            'architect': 1,
            'asset': 1,
            'certifi': 2,
            'cisco': 1,
            'citrix': 1,
            'cobit': 1,
            'code': 1,
            'comput': 1,
            'content': 1,
            'corpor': 1,
            'crack': 1,
            'databas': 1,
            'degre': 1,
            'directori': 1,
            'dn': 1,
            'emc': 1,
            'end': 1,
            'ethic': 1,
            'exchang': 1,
            'expert': 1,
            'filter': 1,
            'firewal': 1,
            'frame': 1,
            'front': 1,
            'function': 1,
            'hack': 1,
            'hacker': 2,
            'help': 1,
            'ids/ip': 1,
            'ii': 1,
            'includ': 1,
            'inform': 1,
            'infrastructur': 1,
            'isc': 1,
            'iscsi': 1,
            'joomla': 1,
            'knowledg': 1,
            'lan': 1,
            'linux': 1,
            'mpl': 1,
            'network': 1,
            'oracl': 1,
            'profession': 2,
            'protect': 1,
            'qualif': 1,
            'relay': 1,
            'router': 1,
            'scienc': 1,
            'secur': 3,
            'server': 3,
            'solut': 1,
            'specif': 1,
            'sql': 1,
            'storag': 1,
            'strong': 1,
            'system': 1,
            'tcp/ip': 1,
            'technic': 1,
            'tomcat': 1,
            'virtual': 1,
            'virtuozzo': 1,
            'vlan': 1,
            'vmware': 1,
            'vpn': 1,
            'wan': 1,
            'web': 2,
            'whose': 1,
            'window': 1,
            'xen': 1}),
  'M'),
 (FreqDist({'6': 1,
            'ac': 1,
            'assur': 1,
            'beleiv': 1,
            'choic': 1,
            'client': 1,
            'close': 1,
            'compani': 1,
            'good': 1,
            'hard': 1,
            'like': 1,
            'long': 1,
            'made': 1,
            'may': 1,
            'outsourc': 1,
            'project': 1,
            'qualiti': 1,
            'relationship': 1,
            'rest': 1,
            'reuter': 1,
            'right': 1,
            'strict': 1,
            'term': 1,
            'valuabl': 1,
            'work': 2,
            'years.i': 1}),
  'M'),
 (FreqDist(), 'M'),
 (FreqDist({'3': 1,
            'bulk': 1,
            'carrier': 1,
            'designer/develop': 1,
            'email': 1,
            'expert': 1,
            'freelanc': 1,
            'hi': 1,
            'market': 1,
            'upwork': 1,
            'web': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'academia': 1,
            'alert': 1,
            'audienc': 1,
            'avail': 1,
            'background': 1,
            'checker': 1,
            'creativ': 1,
            'develop': 1,
            'done': 1,
            'english': 1,
            'enthusiast': 1,
            'environ': 1,
            'expertis': 1,
            'flexibl': 1,
            'formal': 1,
            'freelanc': 2,
            'grammar': 1,
            'like': 1,
            'nativ': 1,
            'never': 1,
            'onlin': 1,
            'perfectionist': 1,
            'piec': 1,
            'possess': 1,
            'pride': 1,
            'profession': 1,
            'project': 1,
            'quickli': 1,
            'request': 1,
            'set': 1,
            'speaker': 1,
            'spell': 1,
            'state': 1,
            'strong': 1,
            'tip': 1,
            'unit': 1,
            'upon': 1,
            'want': 1,
            'well': 2,
            'work': 1,
            'write': 1}),
  'F'),
 (FreqDist({'...': 2,
            '10': 1,
            '2': 1,
            '3': 1,
            '9': 2,
            'above-': 2,
            'access': 1,
            'also': 1,
            'amazon': 1,
            'api': 1,
            'busi': 1,
            'ccavenu': 1,
            'checkout': 1,
            'cm': 1,
            'code': 1,
            'contact': 1,
            'content': 1,
            'creation': 1,
            'csv': 1,
            'custom': 2,
            'databas': 1,
            'dear': 1,
            'develop': 1,
            'direct': 1,
            'done': 2,
            'etc': 1,
            'etc.if': 1,
            'experi': 2,
            'file': 1,
            'gateway': 1,
            'googl': 1,
            'handl': 1,
            'huge': 1,
            'implement': 2,
            'interest': 1,
            'item': 1,
            'java': 1,
            'kind': 1,
            'like': 2,
            'mainten': 1,
            'manag': 2,
            'million': 1,
            'mssql': 1,
            'mssql-': 1,
            'mysql': 2,
            'new': 1,
            'open': 2,
            'payment': 1,
            'paypal': 1,
            'php': 2,
            'procedur': 1,
            'product': 3,
            'project': 3,
            'readi': 1,
            'record': 1,
            'relationship': 1,
            'site': 1,
            'sourc': 2,
            'store': 1,
            'system': 1,
            'take': 1,
            'technolog': 1,
            'transfer': 1,
            'upto': 1,
            'use': 2,
            'variou': 1,
            'video': 1,
            'webservic': 2,
            'work': 1,
            'worldpay': 1,
            'xml': 1,
            'yahoo': 1,
            'year': 2}),
  'M'),
 (FreqDist({'part': 1, 'portfolio': 1, 'see': 1}), 'F'),
 (FreqDist({'20': 1,
            'abl': 1,
            'articl': 1,
            'day': 1,
            'handl': 1,
            'output': 1,
            'per': 1}),
  'M'),
 (FreqDist({'.mi': 1,
            'ad': 1,
            'admin': 1,
            'ahead': 1,
            'also': 1,
            'alway': 1,
            'appli': 1,
            'area': 1,
            'attent': 1,
            'attribut': 2,
            'busi': 1,
            'cart': 1,
            'cheer': 1,
            'combin': 1,
            'commit': 1,
            'configur': 1,
            'copi': 1,
            'creat': 1,
            'custom': 1,
            'data': 2,
            'day': 1,
            'dead': 1,
            'decid': 1,
            'deliveri': 1,
            'detail': 1,
            'develop': 1,
            'els': 1,
            'entri': 1,
            'excel': 1,
            'extens': 1,
            'face': 1,
            'fair': 2,
            'familiar': 3,
            'fast': 1,
            'fix': 1,
            'flexibl': 1,
            'high': 1,
            'includ': 2,
            'incomplet': 1,
            'integr': 1,
            'interact': 1,
            'interest': 1,
            'interv': 1,
            'issu': 1,
            'job': 3,
            'line': 1,
            'long': 1,
            'magento': 2,
            'mainfram': 2,
            'much': 1,
            'open': 1,
            'option': 1,
            'past': 1,
            'perfect': 3,
            'period': 1,
            'plan': 1,
            'precis': 1,
            'prestashop': 1,
            'price': 1,
            'product': 2,
            'qualiti': 1,
            'receiv': 1,
            'regular': 1,
            'relationship': 1,
            'requir': 3,
            'set': 1,
            'simpl': 1,
            'sound': 1,
            'step': 1,
            'super': 1,
            'support': 1,
            'task': 1,
            'technolog': 1,
            'term': 1,
            'time-wast': 2,
            'tool': 1,
            'trainer': 1,
            'type': 1,
            'updat': 2,
            'upload': 1,
            'use': 1,
            'well': 1,
            'whether': 1,
            'wordpress': 1,
            'work': 4,
            'worker': 2}),
  'M'),
 (FreqDist({'test': 1}), 'M'),
 (FreqDist({'3d': 1}), 'M'),
 (FreqDist({'.develop': 1,
            '7': 2,
            'adept': 1,
            'also': 2,
            'around': 1,
            'articl': 1,
            'awar': 1,
            'blog': 1,
            'brand': 1,
            'clientel': 1,
            'contact': 1,
            'content': 4,
            'copy-writ': 1,
            'core': 1,
            'creation': 1,
            'custom': 1,
            'customer-specif': 1,
            'design': 2,
            'develop': 3,
            'dikka': 2,
            'drupal': 1,
            'engin': 1,
            'english': 1,
            'entrust': 1,
            'etc': 1,
            'ethic': 1,
            'except': 1,
            'experi': 2,
            'extens': 1,
            'fort': 1,
            'french': 1,
            'german': 1,
            'good': 2,
            'googl': 1,
            'hat': 1,
            'hello': 1,
            'html5': 1,
            'includ': 1,
            'internet': 1,
            'joomla': 1,
            'magento': 1,
            'market': 2,
            'maximum': 1,
            'media': 1,
            'need': 1,
            'negi': 2,
            'optim': 1,
            'page': 3,
            'panda': 1,
            'passion': 1,
            'penguin': 1,
            'php': 2,
            'produc': 1,
            'profici': 1,
            'profil': 1,
            'project': 2,
            'promot': 1,
            'protect': 1,
            'rank': 1,
            'regard': 1,
            'requir': 1,
            'revolv': 1,
            'rewrit': 2,
            'search': 1,
            'secur': 1,
            'seo': 3,
            'servic': 1,
            'smo': 1,
            'social': 1,
            'spam': 1,
            'specif': 1,
            'success': 1,
            'summari': 1,
            'techniqu': 1,
            'thank': 1,
            'top': 1,
            'traffic': 1,
            'translat': 1,
            'updat': 1,
            'use': 2,
            'visit': 1,
            'web': 2,
            'websit': 2,
            'websites.seo': 1,
            'well': 1,
            'white': 1,
            'wide': 1,
            'write': 5,
            'year': 2}),
  'F'),
 (FreqDist({'hard': 1,
            'honest': 1,
            'laxmi': 1,
            'name': 2,
            'road': 1,
            'sharma': 1,
            'sumit': 1,
            'us': 1,
            'worker': 1}),
  'M'),
 (FreqDist({'-\\t\\t': 1,
            '10': 1,
            '2006': 1,
            '2007': 1,
            '2007\\t': 2,
            '2008': 2,
            '2009': 2,
            '21': 1,
            '26': 1,
            '29': 1,
            '3': 1,
            '8': 1,
            '\\t': 1,
            '\\t\\t': 4,
            '\\xe2\\u20ac\\u201c': 2,
            'academi': 2,
            'ad': 1,
            'advoc': 1,
            'april': 1,
            'articl': 1,
            'bachelor': 3,
            'best': 1,
            'blog': 1,
            'call': 1,
            'center': 1,
            'champion': 1,
            'citi': 1,
            'colleg': 1,
            'compani': 1,
            'comput': 2,
            'coop': 1,
            'cours': 1,
            'de': 1,
            'educ': 1,
            'engin': 2,
            'enthusiast': 1,
            'excel': 1,
            'finish': 1,
            'high': 2,
            'iligan': 2,
            'institut': 1,
            'jun': 1,
            'june': 1,
            'keen': 1,
            'la': 1,
            'lloyd': 1,
            'major': 1,
            'march': 1,
            'may': 1,
            'michael\\xe2\\u20ac\\u2122': 1,
            'microsoft': 1,
            'nation': 2,
            'oct.': 2,
            'part-tim': 1,
            'peter\\xe2\\u20ac\\u2122': 3,
            'point': 1,
            'power': 1,
            'present': 1,
            'saint': 2,
            'sall': 1,
            'school': 1,
            'scienc': 2,
            'secondari': 1,
            'singl': 1,
            'speaker': 1,
            'st.': 3,
            'substitut': 2,
            'tesda': 1,
            'train': 2,
            'troubleshoot': 1,
            'undergrad': 2,
            'word': 1,
            'writer/editor': 1}),
  'M'),
 (FreqDist({"''": 2,
            "'s": 2,
            '1987': 1,
            '1989': 1,
            '1994': 1,
            '``': 2,
            'airway': 1,
            'art': 3,
            'artist': 2,
            'awar': 1,
            'award': 1,
            'bachelor': 1,
            'bangkok': 2,
            'born': 1,
            'campaign': 1,
            'colleg': 1,
            'daili': 1,
            'day': 1,
            'degre': 1,
            'display': 1,
            'done': 1,
            'drug': 1,
            'exhibit': 1,
            'faculti': 1,
            'fine': 2,
            'follow': 1,
            'graphic': 2,
            'institut': 1,
            'list': 1,
            'media': 1,
            'nation': 1,
            'newspap': 1,
            'paint': 2,
            'sinc': 1,
            'sky': 1,
            'technolog': 1,
            'thai': 1,
            'websit': 1,
            'winner': 1,
            'woman': 1,
            'work': 2,
            'youth': 1}),
  'F'),
 (FreqDist({'ad': 1,
            'ai': 1,
            'content': 3,
            'continu': 1,
            'corel': 1,
            'css': 1,
            'draw': 1,
            'edit': 1,
            'editor': 1,
            'html': 1,
            'imag': 1,
            'necessari': 1,
            'pdf': 1,
            'photoshop': 1,
            'poster': 1,
            'redesign': 1,
            'tabl': 1,
            'updat': 1,
            'websit': 2}),
  'M'),
 (FreqDist({"'m": 1,
            'blog': 1,
            'brazilian': 1,
            'english': 1,
            'everyon': 1,
            'guy': 1,
            'hi': 1,
            'hire': 1,
            'love': 1,
            'make': 1,
            "n't": 1,
            'need': 1,
            'portugues': 1,
            'regret': 1,
            'review': 1,
            'see': 1,
            'simpli': 1,
            'translat': 1,
            'wo': 1}),
  'M'),
 (FreqDist({'custom': 1,
            'design': 2,
            'develop': 1,
            'e-commerc': 1,
            'edit': 1,
            'etc': 1,
            'graphic': 1,
            'indesign': 1,
            'joomla': 1,
            'photoshop': 1,
            'php': 1,
            'product': 1,
            'record': 1,
            'respons': 1,
            'social': 1,
            'surgic': 1,
            'video': 1,
            'web': 1,
            'word': 1,
            'wordpress': 1}),
  'M'),
 (FreqDist({'15': 1,
            'api': 1,
            'applic': 1,
            'better': 1,
            'code': 2,
            'css': 1,
            'databas': 1,
            'development.mi': 1,
            'easili': 1,
            'experi': 1,
            'fast': 1,
            'fix': 1,
            'help': 1,
            'html': 1,
            'implement': 1,
            'includ': 1,
            'issu': 1,
            'jqueri': 1,
            'legaci': 1,
            'limit': 1,
            'load': 1,
            'mani': 1,
            'migrat': 1,
            'mysql': 1,
            'new': 1,
            'number': 2,
            'old': 1,
            'oop': 2,
            'optim': 3,
            'page': 1,
            'php': 3,
            'processing*': 1,
            'provid': 1,
            'pure': 1,
            'reduc': 1,
            'script': 1,
            'secur': 1,
            'server': 1,
            'set': 1,
            'skill': 1,
            'sourc': 1,
            'speed': 1,
            'swift': 1,
            'variou': 1,
            'version': 1,
            'web': 1,
            'websit': 2,
            'well': 1,
            'written': 1,
            'year': 2}),
  'M'),
 (FreqDist({'articl': 1,
            'blogger': 1,
            'content': 3,
            'creation': 1,
            'creativ': 1,
            'develop': 2,
            'experi': 1,
            'experienc': 1,
            'expert': 1,
            'fiction': 1,
            'gener': 1,
            'gig': 1,
            'hallmark': 1,
            'link': 1,
            'long': 1,
            'mark': 1,
            'non-fict': 1,
            'origin': 1,
            'profession': 2,
            'qualiti': 1,
            'rank': 1,
            'seo': 1,
            'skill': 1,
            'time': 1,
            'traffic': 1,
            'web': 3,
            'web/blog': 1,
            'work': 1,
            'write': 2,
            'writer': 1}),
  'M'),
 (FreqDist({'.net': 1,
            'adob': 1,
            'also': 1,
            'asp': 1,
            'base': 1,
            'best': 1,
            'c': 1,
            'certif': 1,
            'client': 1,
            'cucumb': 1,
            'current': 1,
            'engin': 1,
            'establish': 1,
            'goal': 1,
            'good': 1,
            'great': 1,
            'illustr': 1,
            'knowledg': 1,
            'mvc': 1,
            'nunit': 1,
            'opportun': 1,
            'photoshop': 1,
            'practic': 1,
            'profici': 1,
            'provid': 1,
            'qualiti': 1,
            'rail': 1,
            'relationship': 1,
            'rspec': 1,
            'rubi': 2,
            'satisfi': 1,
            'servic': 1,
            'softwar': 1,
            'tdd': 1,
            'uk': 1,
            'use': 2,
            'work': 2}),
  'M'),
 (FreqDist({'abl': 2,
            'academ': 1,
            'accur': 1,
            'across': 1,
            'also': 4,
            'articl': 2,
            'assist': 1,
            'churn': 1,
            'content': 1,
            'copyedit': 1,
            'differ': 1,
            'done': 1,
            'editor': 1,
            'editori': 1,
            'essay': 2,
            'excel': 1,
            'experi': 1,
            'extens': 1,
            'fast': 1,
            'fiction': 1,
            'function': 1,
            'job': 1,
            'nich': 1,
            'non-fict': 1,
            'piec': 1,
            'possess': 1,
            'produc': 1,
            'project': 1,
            'proofread': 1,
            'relat': 1,
            'scholarli': 1,
            'seo': 1,
            'short': 1,
            'skill': 2,
            'time': 1,
            'transcript': 2,
            'transcriptionist': 1,
            'turnaround': 1,
            'type': 1,
            'use': 2,
            'virtual': 1,
            'well.i': 1,
            'write': 1}),
  'F'),
 (FreqDist({"'m": 2,
            '+4': 1,
            'design': 1,
            'develop': 1,
            'experi': 1,
            'experienc': 1,
            'fast': 1,
            'flexibl': 1,
            'realli': 1,
            'wordpress': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 2,
            '.i': 2,
            '10': 1,
            '3': 1,
            '5.1': 1,
            'administr': 1,
            'avail': 1,
            'bootstrap': 1,
            'develop': 2,
            'digit': 1,
            'experi': 1,
            'host': 1,
            'job': 1,
            'jqueri': 1,
            'laravel': 3,
            'ocean': 1,
            'odd': 1,
            'php': 1,
            'senior': 1,
            'server': 1,
            'special': 1,
            'twitter': 1,
            'unmanag': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            'administr': 1,
            'also': 1,
            'apach': 1,
            'c++': 1,
            'css': 1,
            'degre': 1,
            'develop': 1,
            'expert': 1,
            'html': 1,
            'jqueri': 1,
            'js': 1,
            'linux': 1,
            'mathemat': 1,
            'mysql': 1,
            'phd': 1,
            'php': 1,
            'physic': 1,
            'profession': 1,
            'program': 1,
            'server': 1,
            'skill': 1,
            'statist': 1,
            'strong': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '6': 1,
            'alway': 1,
            'art': 1,
            'best': 1,
            'bsc': 1,
            'busi': 1,
            'card': 1,
            'check': 1,
            'client': 1,
            'cours': 1,
            'creat': 1,
            'degre': 1,
            'design': 5,
            'design.i': 1,
            'easi': 1,
            'experi': 2,
            'experienc': 1,
            'find': 1,
            'fine': 1,
            'forward': 1,
            'graphic': 2,
            'help': 1,
            'illustr': 1,
            'includ': 2,
            'industri': 1,
            'like': 1,
            'logo': 1,
            'look': 1,
            'microsoft': 1,
            'photoshop': 2,
            'pleas': 1,
            'portfolio.i': 1,
            'possibl': 1,
            'profil': 1,
            'program': 1,
            'publish': 1,
            'sampl': 1,
            'start': 1,
            'subject': 1,
            'take': 1,
            'taken': 1,
            'time': 1,
            'use': 1,
            'view': 1,
            'want': 1,
            'web': 1,
            'websit': 1,
            'work': 4,
            'year': 1}),
  'M'),
 (FreqDist({'arm': 1,
            'around': 1,
            'bachelor': 1,
            'board': 1,
            'c': 1,
            'comput': 1,
            'develop': 1,
            'devic': 1,
            'domain': 1,
            'driver': 1,
            'e.t.c': 2,
            'embed': 1,
            'experi': 1,
            'extens': 1,
            'graduat': 1,
            'i2c': 1,
            'interfac': 1,
            'like': 2,
            'linux': 1,
            'mac': 1,
            'network': 1,
            'packag': 1,
            'pci': 1,
            'processor': 1,
            'profession': 1,
            'scienc': 1,
            'softwar': 1,
            'spi': 1,
            'storag': 1,
            'support': 1,
            'usb': 1,
            'variou': 1,
            'work': 3}),
  'M'),
 (FreqDist({'anim': 1,
            'applic': 2,
            'design': 1,
            'differ': 1,
            'expertis': 1,
            'game': 1,
            'multipl': 1,
            'peopl': 1,
            'platform': 1,
            'program': 1,
            'prove': 1,
            'standalon': 1,
            'team': 1,
            'technolog': 1,
            'video': 1,
            'web': 1}),
  'M'),
 (FreqDist({'5': 1,
            '7-14': 1,
            'age': 1,
            'class': 1,
            'dollars/hour.i': 1,
            'everywher': 1,
            'kid': 1,
            'line': 1,
            'make': 1,
            'math': 1,
            'price': 1,
            'wait': 1,
            'welcom': 1,
            'wolrd': 1,
            'year': 1}),
  'M'),
 (FreqDist({'a+': 1,
            'certif': 1,
            'ciw': 2,
            'databas': 1,
            'mcp': 1,
            'mct': 1,
            'network+': 1,
            'pro': 1,
            'profession': 1,
            'project': 1,
            'staff': 1,
            'support': 1,
            'technician': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '27': 1,
            '2nd': 1,
            '60': 1,
            'access': 1,
            'also': 1,
            'british': 1,
            'bsc': 1,
            'candid': 1,
            'certif': 1,
            'chang': 1,
            'colombo': 1,
            'comput': 1,
            'council': 1,
            'cours': 1,
            'custom': 1,
            'data': 1,
            'degre': 3,
            'depart': 1,
            'develop': 1,
            'diploma': 1,
            'econom': 1,
            'educ': 1,
            'english': 1,
            'enquiri': 1,
            'examin': 1,
            'excel': 1,
            'experi': 1,
            'extern': 2,
            'freelanc': 1,
            'gain': 1,
            'hi': 1,
            'hour': 1,
            'hsbc': 1,
            'includ': 1,
            'inform': 1,
            'informat': 1,
            'interview': 1,
            'job': 2,
            'languag': 1,
            'lanka': 2,
            'london': 2,
            'make': 1,
            'manag': 3,
            'market': 1,
            'much': 2,
            'old': 1,
            'paper': 1,
            'part': 2,
            'part-tim': 1,
            'powerpoint': 1,
            'process': 1,
            'profession': 1,
            'programm': 2,
            'qualif': 1,
            'repres': 1,
            'research': 2,
            'role': 1,
            'sector': 1,
            'servic': 1,
            'singapor': 1,
            'skill': 1,
            'sri': 2,
            'studi': 1,
            'suitabl': 1,
            'survey': 1,
            'system': 1,
            'thank': 1,
            'train': 1,
            'uk': 1,
            'univers': 1,
            'upper': 1,
            'word': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'3d': 1,
            'cad': 2,
            'consum': 1,
            'design': 4,
            'english': 1,
            'experi': 1,
            'experienc': 1,
            'export': 1,
            'hi': 1,
            'knowledg': 1,
            'machin': 1,
            'manufactur': 2,
            'model': 1,
            'mold': 1,
            'print': 1,
            'process': 1,
            'product': 2,
            'qualif': 1,
            'softwar': 1,
            'solidwork': 1,
            'spanish': 1,
            'surfac': 1,
            'use': 1,
            'year': 1}),
  'M'),
 (FreqDist({'abstract': 1,
            'advertis': 3,
            'adword': 1,
            'also': 1,
            'artist': 1,
            'campaign': 1,
            'charact': 1,
            'color': 1,
            'design': 2,
            'digit': 1,
            'experi': 1,
            'extens': 1,
            'flyer': 1,
            'industri': 1,
            'kyle': 1,
            'magazin': 1,
            'manag': 1,
            'murphi': 1,
            'name': 1,
            'onlin': 1,
            'ontario': 1,
            'paint': 1,
            'sem': 1,
            'southern': 1,
            'special': 1,
            'standard': 1,
            'success': 1,
            'work': 2}),
  'M'),
 (FreqDist({"'m": 1,
            'alway': 1,
            'articl': 1,
            'edit': 1,
            'enjoy': 1,
            'error': 1,
            'look': 1,
            'love': 1,
            'new': 1,
            'proofread': 1,
            'proud': 1,
            'research': 1,
            'short': 1,
            'thing': 1,
            'turn': 1,
            'work': 1,
            'write': 1}),
  'F'),
 (FreqDist({'addr': 1, 'bangladesh': 1, 'dhaka': 1, 'md': 2, 'name': 2}), 'M'),
 (FreqDist({"'m": 1,
            'also': 1,
            'colour': 1,
            'corpor': 1,
            'design': 2,
            'etc': 1,
            'freelanc': 1,
            'help': 1,
            'ident': 1,
            'logo': 1,
            'page': 1,
            'php/mysql': 1,
            'project': 1,
            'style': 1,
            'web': 1,
            'will': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'re": 1,
            '10': 1,
            '\\xc3\\xbe\\tadvis': 4,
            '\\xc3\\xbe\\tassist': 2,
            '\\xc3\\xbe\\tpay': 3,
            '\\xc3\\xbe\\tperform': 2,
            '\\xe2\\u20ac\\u201c': 6,
            'a/r': 1,
            'abl': 1,
            'access': 1,
            'account': 12,
            'achiev': 1,
            'acquisit': 1,
            'act': 1,
            'action': 1,
            'activ': 1,
            'ad': 1,
            'addit': 1,
            'adjust': 1,
            'advanc': 1,
            'advic': 2,
            'advis': 1,
            'advisori': 4,
            'agenc': 1,
            'agent': 1,
            'agreement': 3,
            'aim': 1,
            'along': 1,
            'also': 2,
            'analysi': 5,
            'annual': 1,
            'anticip': 2,
            'appeal': 1,
            'applic': 2,
            'approach': 1,
            'appropri': 1,
            'approv': 1,
            'approxim': 1,
            'area': 2,
            'around': 1,
            'aspect': 2,
            'asset': 1,
            'assist': 1,
            'associ': 3,
            'audit': 4,
            'author': 1,
            'avail': 1,
            'balanc': 1,
            'bank': 1,
            'base': 1,
            'best': 1,
            'better': 1,
            'bill': 2,
            'board': 2,
            'book': 2,
            'bottom': 1,
            'budget': 2,
            'busi': 22,
            'buyout': 1,
            'capit': 1,
            'card': 1,
            'cash': 2,
            'centr': 2,
            'certain': 1,
            'chang': 1,
            'changeov': 1,
            'check': 1,
            'choos': 1,
            'citi': 1,
            'claim': 2,
            'client': 7,
            'client\\xe2\\u20ac\\u2122': 1,
            'clients\\xe2\\u20ac\\u2122': 1,
            'clientsw': 1,
            'combin': 1,
            'compani': 4,
            'company\\xe2\\u20ac\\u2122': 1,
            'compens': 1,
            'complex': 2,
            'complianc': 2,
            'compon': 1,
            'conduct': 1,
            'conjunct': 1,
            'consult': 2,
            'contact': 1,
            'control': 2,
            'core': 1,
            'corpor': 3,
            'cost': 10,
            'cost-effect': 1,
            'cost/benefit': 1,
            'could': 1,
            'cours': 1,
            'credit': 4,
            'custom': 6,
            'deal': 1,
            'declin': 1,
            'deduct': 1,
            'deliv': 1,
            'depart': 1,
            'depend': 1,
            'depreci': 1,
            'detail': 1,
            'differ': 2,
            'direct': 2,
            'distribut': 1,
            'divis': 2,
            'document': 3,
            'draft': 1,
            'due': 1,
            'earn': 1,
            'easili': 1,
            'effect': 1,
            'effici': 1,
            'electr': 1,
            'enabl': 1,
            'end': 1,
            'enjoy': 1,
            'ensur': 1,
            'enter': 1,
            'entri': 1,
            'establish': 3,
            'estim': 1,
            'etc': 2,
            'execut': 1,
            'exercis': 2,
            'expans': 1,
            'experienc': 1,
            'expert': 2,
            'facil': 1,
            'facilit': 1,
            'feasibl': 3,
            'financ': 4,
            'financi': 9,
            'firm': 4,
            'fix': 1,
            'flow': 1,
            'focus': 2,
            'formul': 1,
            'fraud': 2,
            'full': 2,
            'function': 2,
            'furnitur': 1,
            'futur': 1,
            'gener': 2,
            'get': 1,
            'go': 1,
            'goal': 1,
            'govern': 1,
            'grow': 1,
            'histor': 1,
            'identifi': 1,
            'impact': 1,
            'implement': 1,
            'incent': 1,
            'includ': 6,
            'incom': 3,
            'indirect': 2,
            'individu': 1,
            'industri': 3,
            'inform': 1,
            'instead': 1,
            'insur': 3,
            'intern': 2,
            'inventori': 3,
            'investig': 1,
            'invoic': 2,
            'involv': 2,
            'issu': 1,
            'it\\xe2\\u20ac\\u2122': 1,
            'job': 1,
            'journal': 1,
            'leav': 2,
            'legal': 4,
            'legisl': 1,
            'level': 1,
            'liquid': 1,
            'list': 2,
            'litig': 2,
            'local': 1,
            'locat': 1,
            'long': 2,
            'look': 1,
            'loss': 1,
            'mail': 1,
            'maintain': 1,
            'major': 2,
            'make': 1,
            'manag': 7,
            'matter': 2,
            'medic': 1,
            'medium': 1,
            'meet': 3,
            'memo': 1,
            'memoranda': 1,
            'mission': 1,
            'model': 2,
            'monthli': 3,
            'nation': 1,
            'natur': 1,
            'need': 2,
            'new': 1,
            'ngong': 2,
            'nhif': 3,
            'non-financi': 1,
            'nssf': 3,
            'object': 1,
            'offer': 1,
            'offic': 1,
            'oper': 3,
            'order': 1,
            'organization\\xe2\\u20ac\\u2122': 1,
            'outsourc': 3,
            'packag': 1,
            'paramet': 1,
            'park': 1,
            'part': 1,
            'particip': 1,
            'partner': 1,
            'pay': 4,
            'payabl': 1,
            'payment': 1,
            'payrol': 3,
            'perform': 1,
            'period': 1,
            'person': 1,
            'pick': 1,
            'place': 1,
            'plan': 5,
            'point': 1,
            'polici': 2,
            'post': 1,
            'practic': 1,
            'prepar': 9,
            'prevent': 1,
            'price': 1,
            'problem': 1,
            'procedur': 2,
            'process': 4,
            'profession': 1,
            'profit': 2,
            'project': 2,
            'protect': 1,
            'provid': 10,
            'purchas': 2,
            'qualifi': 1,
            'queri': 1,
            'rang': 4,
            'ratio': 1,
            'real': 1,
            'receiv': 1,
            'recogn': 1,
            'reconcil': 1,
            'record': 2,
            'recoveri': 1,
            'reduc': 1,
            'refund': 1,
            'regist': 1,
            'registr': 2,
            'registrar': 1,
            'relat': 1,
            'rent': 1,
            'report': 4,
            'request': 1,
            'requir': 3,
            'restructur': 3,
            'retir': 1,
            'return': 2,
            'review': 1,
            'right': 1,
            'risk': 2,
            'road': 2,
            'routin': 2,
            'run': 1,
            'safe': 1,
            'secretari': 5,
            'secur': 1,
            'seminar': 2,
            'servic': 16,
            'servicesw': 2,
            'set': 2,
            'set-up': 1,
            'sharehold': 2,
            'sick': 1,
            'similar': 1,
            'situat': 1,
            'size': 2,
            'slip': 1,
            'small': 1,
            'softwar': 1,
            'solut': 3,
            'space': 1,
            'specialis': 1,
            'specif': 3,
            'spent': 3,
            'staff': 2,
            'statement': 4,
            'statu': 1,
            'statutori': 2,
            'strateg': 1,
            'strategi': 1,
            'studi': 2,
            'submiss': 2,
            'submit': 1,
            'suitabl': 1,
            'supplier': 2,
            'support': 4,
            'sustain': 1,
            'system': 4,
            'tailor': 1,
            'tax': 19,
            'taxat': 2,
            'team': 1,
            'technolog': 1,
            'telephon': 1,
            'term': 3,
            'therebi': 1,
            'time': 5,
            'timesheet': 1,
            'train': 4,
            'trend': 1,
            'tune-up': 1,
            'turn': 1,
            'turnov': 1,
            'type': 1,
            'understand': 1,
            'undertaken': 1,
            'updat': 1,
            'use': 2,
            'vacat': 1,
            'valu': 2,
            'valuat': 2,
            'varianc': 1,
            'variou': 1,
            'vat': 2,
            'viabl': 1,
            'view': 1,
            'wage': 1,
            'well': 1,
            'whether': 1,
            'wide': 1,
            'wind': 1,
            'wit': 1,
            'work': 1}),
  'M'),
 (FreqDist({'alway': 1,
            'articles-': 2,
            'best': 1,
            'blog': 1,
            'comfort': 1,
            'forum': 1,
            'help': 1,
            'obtain': 1,
            'order': 1,
            'posts-': 1,
            'research': 1,
            'result': 1,
            'rewrit': 1,
            'subject': 1,
            'thoroughli': 1,
            'write': 1}),
  'F'),
 (FreqDist({'3.0': 1,
            '8+': 1,
            'ajax': 1,
            'c': 1,
            'desktop': 1,
            'develop': 2,
            'driver': 1,
            'embed': 1,
            'employe': 1,
            'etc': 3,
            'experi': 1,
            'firm': 1,
            'framework': 2,
            'hotel': 1,
            'instal': 1,
            'java': 1,
            'javascript': 1,
            'jdbc': 1,
            'jsp': 1,
            'jstl': 1,
            'like': 1,
            'manag': 4,
            'monitor': 1,
            'onlin': 1,
            'platform.i': 1,
            'profession': 1,
            'programm': 1,
            'project': 2,
            'remot': 2,
            'secur': 1,
            'servlet': 1,
            'soa': 1,
            'softwar': 3,
            'spring': 2,
            'supermarket': 1,
            'system': 4,
            'templat': 1,
            'use': 1,
            'variou': 1,
            'webservic': 1,
            'windows/linux': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            'anytim': 1,
            'around': 1,
            'avail': 1,
            'enough': 1,
            'fair': 1,
            'internet': 1,
            'mess': 1,
            "n't": 1,
            'pleas': 1,
            'scam': 1,
            'scammer': 1,
            'start': 1}),
  'M'),
 (FreqDist({'broaden': 1,
            'complement': 1,
            'dynam': 1,
            'environ': 1,
            'experi': 2,
            'gain': 1,
            'horizon': 1,
            'knowledg': 1,
            'practic': 1,
            'theoret': 1,
            'work': 1}),
  'F'),
 (FreqDist({'anyon': 1,
            'complet': 1,
            'data': 2,
            'entri': 2,
            'guy': 1,
            'hard': 1,
            'mani': 2,
            'project': 1,
            'requir': 1,
            'sincer': 1,
            'websit': 1,
            'work': 2}),
  'M'),
 (FreqDist({'5': 1,
            'api': 1,
            'codeignit': 1,
            'css': 1,
            'develop': 1,
            'dynam': 1,
            'experi': 1,
            'extens': 1,
            'facebook': 1,
            'handl': 1,
            'html': 1,
            'javascript': 1,
            'joomla': 1,
            'jqueri': 1,
            'knowledg': 1,
            'larg': 1,
            'mysql': 1,
            'number': 1,
            'php': 1,
            'project': 1,
            'qualifi': 1,
            'talent': 1,
            'technic': 1,
            'wordpress': 1,
            'year': 1}),
  'M'),
 (FreqDist({'custom': 1,
            'deliveri': 1,
            'electr': 1,
            'electron': 1,
            'engin': 1,
            'lot': 1,
            'loyal': 1,
            'mba': 1,
            'one': 1,
            'promis': 1,
            'regret': 1,
            'skill': 1,
            'time': 1,
            'type': 1,
            'variou': 1,
            'work': 1,
            'would': 1,
            'write': 1}),
  'M'),
 (FreqDist({'best': 1,
            'break': 1,
            'famili': 1,
            'freelanc': 1,
            'good': 1,
            'reason': 1,
            'start': 1,
            'took': 1,
            'tri': 1,
            'want': 1,
            'work': 1}),
  'F'),
 (FreqDist({'blog': 1,
            'creativ': 1,
            'data': 1,
            'databas': 1,
            'done': 1,
            'end': 1,
            'entri': 1,
            'full': 1,
            'get': 1,
            'look': 1,
            'make': 1,
            'meet': 1,
            'muscl': 1,
            'opportun': 1,
            'part': 1,
            'profici': 1,
            'quickli': 1,
            'quit': 1,
            'still': 1,
            'time': 3,
            'tri': 1,
            'work': 2,
            'writer': 1}),
  'M'),
 (FreqDist({'activ': 1,
            'age': 1,
            'also': 3,
            'apart': 1,
            'attitud': 1,
            'blog': 1,
            'busi': 1,
            'come': 1,
            'content': 1,
            'creat': 1,
            'creativ': 2,
            'deadlin': 1,
            'develop': 1,
            'discuss': 1,
            'earli': 1,
            'edit': 1,
            'editori': 1,
            'essay': 1,
            'experi': 2,
            'experienc': 1,
            'extens': 1,
            'field': 1,
            'filipino': 1,
            'forum': 1,
            'freelanc': 1,
            'gaf': 1,
            'good': 1,
            'great': 1,
            'high': 1,
            'hold': 2,
            'independ': 1,
            'join': 1,
            'joy': 1,
            'level': 1,
            'love': 1,
            'mani': 1,
            'matur': 1,
            'much': 2,
            'need': 1,
            'network': 1,
            'philippin': 1,
            'pleas': 1,
            'poem': 1,
            'post': 1,
            'practic': 1,
            'profil': 1,
            'qualiti': 2,
            'review': 1,
            'right': 1,
            'sampl': 1,
            'self-motiv': 1,
            'seo': 1,
            'sever': 1,
            'short': 1,
            'side': 1,
            'sinc': 1,
            'site': 1,
            'spectrum': 1,
            'stori': 1,
            'talent': 1,
            'target': 1,
            'team': 2,
            'toward': 1,
            'visit': 2,
            'web': 2,
            'well': 4,
            'work': 2,
            'worker': 1,
            'write': 3,
            'writer': 4,
            'year': 1}),
  'F'),
 (FreqDist({"'ve": 1,
            'abroad': 1,
            'academ': 2,
            'alway': 1,
            'audio/video': 1,
            'basi': 1,
            'come': 1,
            'commun': 1,
            'degre': 1,
            'deriv': 1,
            'engin': 1,
            'english': 1,
            'excel': 1,
            'experi': 3,
            'extend': 1,
            'fellow': 1,
            'fluent': 1,
            'franc': 1,
            'french': 1,
            'full-tim': 1,
            'human': 1,
            'humanit': 1,
            'ii': 1,
            'interest': 1,
            'ireland': 1,
            'itali': 1,
            'job': 1,
            'legal': 1,
            'level': 1,
            'malta': 1,
            'master': 1,
            'medical/pharmaceut': 1,
            'militari': 1,
            'past': 1,
            'period': 1,
            'redactor': 1,
            'research': 2,
            'result': 1,
            'scienc': 2,
            'scotland': 1,
            'sinc': 1,
            'six': 1,
            'skill': 1,
            'social': 1,
            'steward/interpret': 1,
            'studi': 1,
            'technic': 1,
            'technician': 2,
            'text': 1,
            'translat': 2,
            'two': 1,
            'variou': 1,
            'work': 2,
            'write': 1,
            'writer': 1,
            'year': 2}),
  'M'),
 (FreqDist({'adventur': 1,
            'bigger': 1,
            'client': 1,
            'creativ': 1,
            'enthusiasm': 1,
            'envis': 1,
            'fast-learn': 1,
            'full': 1,
            'help': 1,
            'market': 2,
            'motiv': 1,
            'onlin': 2,
            'passion': 1,
            'pictur': 1,
            'results-ori': 1,
            'seo': 1,
            'staff': 1,
            'thinker': 1,
            'three': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'activ': 1,
            'final': 1,
            'go': 1,
            'home': 1,
            'husband': 1,
            'interest': 1,
            'keep': 1,
            'kid': 1,
            'mom': 1,
            'school': 1,
            'start': 1,
            'stay': 1,
            'support': 1}),
  'M'),
 (FreqDist({'.net': 1,
            'analysi': 1,
            'applic': 1,
            'develop': 1,
            'experi': 1,
            'in-depth': 1,
            'investig': 1,
            'proven': 1,
            'skill': 1,
            'sql': 1,
            'strong': 1}),
  'M'),
 (FreqDist({'12+': 1, 'seo': 1, 'web': 1, 'year': 1}), 'M'),
 (FreqDist({"'m": 1,
            '10': 1,
            'advic': 1,
            'apach': 1,
            'base': 1,
            'blog': 1,
            'bug': 1,
            'chang': 1,
            'codeignit': 1,
            'contact': 1,
            'databas': 1,
            'design': 1,
            'drupal': 1,
            'etc': 1,
            'experi': 1,
            'fast': 1,
            'favorit': 1,
            'fix': 1,
            'framework': 1,
            'freelancer.i': 1,
            'help': 2,
            'host': 1,
            'hourli': 1,
            'instal': 1,
            'joomla': 1,
            'lamp': 1,
            'lighttpd': 1,
            'like': 4,
            'linux': 1,
            'lot': 1,
            'mysql': 1,
            'need': 2,
            'php': 3,
            'pleas': 1,
            'price': 1,
            'project.i': 1,
            'rate': 1,
            'script': 1,
            'server': 1,
            'setup': 1,
            'site': 2,
            'sqlite': 1,
            'suggest': 1,
            'web': 5,
            'whole': 1,
            'wordpress': 1,
            'year': 1}),
  'M'),
 (FreqDist({'appear': 1,
            'click': 1,
            'game': 1,
            'home': 1,
            'logo': 1,
            'page': 1,
            'program': 1,
            'puzzl': 1}),
  'M'),
 (FreqDist({'9': 1,
            'add': 1,
            'anim': 1,
            'banner': 1,
            'budget': 1,
            'client': 1,
            'creat': 1,
            'custom': 2,
            'design': 3,
            'dream': 1,
            'etc': 1,
            'experi': 1,
            'flash': 2,
            'globe.i': 1,
            'graphic': 1,
            'high': 1,
            'illustr': 1,
            'insid': 1,
            'lot': 1,
            'make': 1,
            'program': 1,
            'qualiti': 1,
            'realiti': 1,
            'web': 1,
            'wordpress': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'...': 1,
            'account': 1,
            'australian': 1,
            'custom': 1,
            'inbound': 1,
            'outbound': 1,
            'repres': 1,
            'servic': 1,
            'us': 1,
            'work': 1}),
  'F'),
 (FreqDist({'ajax': 1,
            'android': 1,
            'cm': 1,
            'cs5': 1,
            'getway': 1,
            'html': 1,
            'illustr': 1,
            'implement': 1,
            'integr': 1,
            'mysqljavascript': 1,
            'payment': 1,
            'variou': 1}),
  'M'),
 (FreqDist({'effect': 1,
            'model': 1,
            'photorealist': 1,
            'render': 1,
            'special': 1,
            'textur': 1}),
  'M'),
 (FreqDist({'editor': 1, 'region': 1, 'station': 1, 'tv': 1}), 'M'),
 (FreqDist({'accord': 1,
            'base': 1,
            'cart': 2,
            'compani': 1,
            'custom': 1,
            'deal': 1,
            'design': 1,
            'develop': 1,
            'full': 1,
            'individu': 1,
            'modul': 1,
            'need': 1,
            'oscommerc': 2,
            'seo': 1,
            'shop': 2,
            'structur': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '2d': 1,
            'anim': 1,
            'artist': 1,
            'check': 1,
            'updat': 1,
            'visual': 1,
            'websit': 1,
            'work': 1}),
  'M'),
 (FreqDist({'15': 1,
            '300': 1,
            'afford': 1,
            'attract': 1,
            'busi': 1,
            'develop': 1,
            'dilig': 1,
            'industri': 1,
            'peopl': 1,
            'plu': 1,
            'produc': 1,
            'rate': 1,
            'serv': 1,
            'type': 1,
            'variou': 1,
            'web': 1,
            'websit': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'angularj': 1,
            'cm': 1,
            'coder': 1,
            'cs-cart': 1,
            'css3': 1,
            'develop': 2,
            'frontend': 1,
            'html5': 1,
            'implement': 1,
            'javascript': 1,
            'joomla': 1,
            'jqueri': 1,
            'magento': 1,
            'modx': 1,
            'nativ': 1,
            'site': 1,
            'skill': 1,
            'strong': 1,
            'web': 2,
            'wordpress': 1}),
  'M'),
 (FreqDist({"'m": 1,
            "'s": 1,
            'anim': 2,
            'atlanta': 1,
            'contact': 1,
            'creat': 1,
            'creativ': 1,
            'design': 2,
            'discuss': 1,
            'flash': 1,
            'freelanc': 1,
            'georgia': 1,
            'greet': 1,
            'illustr': 1,
            'let': 1,
            'love': 1,
            'network': 1,
            'project': 1,
            'today': 1}),
  'F'),
 (FreqDist({'appli': 1,
            'best': 1,
            'dedic': 1,
            'determin': 1,
            'hand': 2,
            'hard': 1,
            'job': 1,
            'lose': 1,
            'price': 1,
            'success': 1,
            'task': 1,
            'whether': 1,
            'win': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '3': 1,
            '8': 2,
            'aesthet': 1,
            'allow': 1,
            'appli': 1,
            'attent': 1,
            'cm': 1,
            'collabor': 1,
            'combin': 1,
            'conceptu': 2,
            'creativ': 1,
            'css': 1,
            'custom': 1,
            'cut': 1,
            'design': 4,
            'detail': 1,
            'develop': 4,
            'dreamweav': 1,
            'edg': 1,
            'except': 1,
            'experi': 1,
            'expertis': 1,
            'extrem': 1,
            'firework': 1,
            'flash': 1,
            'freehand': 1,
            'get': 1,
            'graphic': 1,
            'illustr': 1,
            'imagereadi': 1,
            'involv': 1,
            'joomla': 1,
            'launch': 2,
            'leader': 1,
            'leadership': 1,
            'lot': 1,
            'manag': 1,
            'ms': 1,
            'ning': 1,
            'nonsens': 1,
            'philippin': 1,
            'photoshop': 1,
            'php': 1,
            'process': 1,
            'profici': 1,
            'project': 1,
            'rang': 1,
            'research': 1,
            'rigor': 1,
            'sens': 1,
            'site': 1,
            'skill': 1,
            'strong': 1,
            'team': 2,
            'theme': 1,
            'usabl': 1,
            'web': 4,
            'web/graph': 1,
            'wordpress': 1,
            'year': 1}),
  'F'),
 (FreqDist({'1.': 1,
            'asset': 1,
            'atm': 1,
            'authent': 3,
            'base': 3,
            'busi': 1,
            'card': 4,
            'complet': 4,
            'concept': 1,
            'cryptographi': 1,
            'deploy': 1,
            'design': 4,
            'develop': 4,
            'fabric': 1,
            'finger': 1,
            'implement': 1,
            'integr': 1,
            'internet': 1,
            'key': 1,
            'manag': 2,
            'palm': 1,
            'particularli': 1,
            'print': 1,
            'process': 1,
            'servic': 1,
            'smart': 4,
            'softwar': 3,
            'solut': 2,
            'strong': 1,
            'system': 2,
            'technolog': 1,
            'termin': 1,
            'track': 2,
            'vehicl': 1,
            'web': 1}),
  'M'),
 (FreqDist({'cultur': 1,
            'energet': 1,
            'explor': 1,
            'fast': 1,
            'flexibl': 1,
            'free': 1,
            'honest': 1,
            'learn': 1,
            'learner': 1,
            'new': 2,
            'shop': 1,
            'spirit': 1,
            'work': 1}),
  'F'),
 (FreqDist({"'s": 1,
            '...': 1,
            'biggest': 1,
            'bpo': 1,
            'copi': 1,
            'current': 1,
            'editor': 1,
            'one': 1,
            'philippin': 1,
            'work': 1}),
  'F'),
 (FreqDist({"'s": 1,
            'bachelor': 1,
            'current': 1,
            'degre': 1,
            'freelanc': 1,
            'journal': 1,
            'kent': 1,
            'name': 1,
            'state': 1,
            'univers': 1}),
  'F'),
 (FreqDist({"'s": 1,
            '1.': 1,
            '10': 1,
            '100': 1,
            '2.': 1,
            '3.': 1,
            '4.': 1,
            '5': 1,
            '5.': 1,
            '6.': 1,
            '7.': 1,
            '8.': 1,
            'accuraci': 1,
            'admin': 1,
            'asp': 1,
            'assur': 1,
            'case': 1,
            'check': 2,
            'commerc': 1,
            'confid': 1,
            'control': 1,
            'convers': 1,
            'data': 3,
            'develop': 2,
            'dispatch': 1,
            'document': 1,
            'entri': 1,
            'experi': 1,
            'extract': 1,
            'file': 1,
            'final': 1,
            'follow': 2,
            'group': 1,
            'hold': 1,
            'html': 1,
            'instruct': 1,
            'involv': 1,
            'macro': 1,
            'mainli': 1,
            'mine': 1,
            'mysql': 1,
            'oper': 3,
            'pdf': 1,
            'person': 1,
            'php': 1,
            'processor': 1,
            'project': 2,
            'qc': 3,
            'qualiti': 3,
            'rest': 1,
            'scrape': 1,
            'scrapper': 1,
            'screen': 1,
            'script': 1,
            'separ': 1,
            'setup': 1,
            'softwar': 3,
            'special': 1,
            'supervisor': 1,
            'support': 1,
            'team': 2,
            'train': 1,
            'use': 1,
            'vba': 1,
            'vers': 1,
            'web': 1,
            'well': 3,
            'word': 1,
            'work': 1,
            'write': 1,
            'year': 1}),
  'M'),
 (FreqDist({'almost': 1,
            'alway': 1,
            'base': 1,
            'basi': 1,
            'believ': 1,
            'chanc': 1,
            'client': 2,
            'commit': 1,
            'credibl': 1,
            'deliv': 1,
            'effect': 1,
            'expect': 1,
            'fulfil': 1,
            'get': 1,
            'given': 1,
            'good': 3,
            'keep': 1,
            'love': 1,
            'made': 1,
            'make': 1,
            'manner': 1,
            'promis': 1,
            'qualiti': 1,
            'relat': 1,
            'rest': 1,
            'simplic': 1,
            'strength': 1,
            'strongli': 1,
            'time': 1,
            'timelin': 1,
            'trust': 1,
            'work': 2,
            'work.i': 1}),
  'M'),
 (FreqDist({'2009': 6,
            '3': 2,
            '\\xe2\\u20ac\\u0153multi': 2,
            '\\xe2\\u20ac\\u0153pharmaci': 2,
            '\\xe2\\u20ac\\u201c': 2,
            'a+': 2,
            'abil': 3,
            'abl': 2,
            'accept': 1,
            'achiev': 2,
            'adopt': 1,
            'agent': 2,
            'ajax': 2,
            'almost': 2,
            'analyz': 1,
            'appl': 2,
            'applic': 12,
            'approv': 2,
            'april': 2,
            'architectur': 2,
            'area': 2,
            'base': 4,
            'block': 2,
            'challeng': 1,
            'chanc': 2,
            'chang': 1,
            'china': 2,
            'complet': 8,
            'comput': 2,
            'confer': 2,
            'cse': 2,
            'css': 2,
            'current': 2,
            'databas': 2,
            'degre': 2,
            'designsoftwar': 2,
            'desir': 2,
            'develop': 6,
            'developmenteduc': 2,
            'developmentmobil': 2,
            'developmentweb': 2,
            'easili': 2,
            'effect': 1,
            'energi': 2,
            'eng': 2,
            'engag': 2,
            'engin': 7,
            'environ': 1,
            'experi': 4,
            'familiar': 1,
            'final': 2,
            'framework': 1,
            'free': 1,
            'fudan': 2,
            'given': 2,
            'go': 2,
            'goal': 1,
            'got': 4,
            'groceri': 2,
            'highli': 2,
            'hon': 2,
            'html': 2,
            'ide': 5,
            'implement': 2,
            'individu': 1,
            'interest': 1,
            'involv': 2,
            'ipad': 2,
            'iphone/ipod': 2,
            'ironon': 2,
            'j2ee': 2,
            'j2se': 4,
            'jade': 1,
            'java': 1,
            'javascript': 2,
            'join': 2,
            'jsp': 2,
            'kind': 1,
            'knowledg': 2,
            'languag': 8,
            'lanka': 2,
            'level': 2,
            'linux': 2,
            'look': 1,
            'ltd': 2,
            'main': 4,
            'manag': 2,
            'management\\xe2\\u20ac\\x9d': 2,
            'mobil': 4,
            'month': 2,
            'moratuwa': 2,
            'moratuwa.experi': 2,
            'mysql': 1,
            'name': 4,
            'netbean': 5,
            'netbeansi': 2,
            'next': 2,
            'non': 2,
            'one': 4,
            'oracl': 1,
            'packag': 2,
            'paper': 2,
            'platform': 1,
            'player': 1,
            'problem': 1,
            'process': 1,
            'process.i': 1,
            'profil': 1,
            'program': 6,
            'project': 19,
            'projects.i': 1,
            'publish': 2,
            'pvt': 2,
            'r': 4,
            'relat': 2,
            'research': 5,
            'scienc': 2,
            'servicesenterpris': 2,
            'seven': 2,
            'shanghai': 2,
            'sm': 2,
            'socket': 3,
            'softwar': 6,
            'sound': 2,
            'special': 2,
            'sql': 2,
            'sqldatabas': 2,
            'sri': 2,
            'stress': 1,
            'success': 6,
            'swing': 2,
            'system': 2,
            'system\\xe2\\u20ac\\x9d': 2,
            'team': 1,
            'technolog': 8,
            'throughout': 2,
            'time': 1,
            'train': 2,
            'two': 4,
            'ubuntu': 2,
            'univers': 6,
            'use': 6,
            'web': 2,
            'well': 5,
            'window': 3,
            'within': 1,
            'work': 11,
            'xml': 2,
            'year': 6}),
  'M'),
 (FreqDist({'.net': 2,
            '2.0': 1,
            '2000': 2,
            '2000.': 1,
            '2005': 1,
            '2007': 1,
            '6.0': 1,
            '9': 1,
            'asp': 2,
            'asp.net': 3,
            'audit': 1,
            'basic': 1,
            'c': 2,
            'css': 1,
            'custom': 1,
            'e-card': 1,
            'environ': 1,
            'excel': 1,
            'experi': 1,
            'field': 1,
            'file': 1,
            'flash': 1,
            'framework': 1,
            'frontpag': 1,
            'gym': 1,
            'ii': 1,
            'includ': 1,
            'intern': 1,
            'intranet': 1,
            'java': 1,
            'knowledg': 1,
            'learn': 1,
            'lionbridg': 1,
            'manag': 1,
            'moss': 2,
            'ms': 2,
            'patni': 2,
            'pivot': 1,
            'profici': 1,
            'qualiti': 1,
            'report': 1,
            'return': 1,
            'satisfact': 1,
            'script': 1,
            'server': 4,
            'sql': 3,
            'survey': 1,
            'system\\twindow': 1,
            'tax': 1,
            'technolog': 1,
            'titl': 6,
            'tool': 2,
            'use': 1,
            'vb': 1,
            'vb.net': 1,
            'vbscript': 1,
            'visual': 1,
            'websit': 4,
            'window': 1,
            'xml': 1}),
  'F'),
 (FreqDist({'accuraci': 1,
            'believ': 1,
            'compani': 1,
            'evalu': 1,
            'experi': 1,
            'expertis': 1,
            'hardwork': 1,
            'properli': 1,
            'readi': 1,
            'success': 1,
            'work': 1}),
  'M'),
 (FreqDist({'acquir': 1,
            'addit': 1,
            'afraid': 1,
            'also': 1,
            'analysi': 2,
            'analyt': 1,
            'approv': 1,
            'assist': 1,
            'bachelor\\xe2\\u20ac\\u2122': 1,
            'calculu': 1,
            'circuit': 1,
            'commun': 1,
            'cours': 1,
            'cover': 1,
            'creat': 1,
            'degre': 1,
            'differ': 1,
            'engin': 2,
            'excel': 1,
            'experi': 1,
            'found': 1,
            'fundament': 1,
            'gain': 1,
            'implement': 1,
            'includ': 5,
            'initi': 1,
            'issu': 1,
            'lab': 1,
            'materi': 1,
            'may': 1,
            'mechatron': 1,
            'monitor': 1,
            'new': 2,
            'organiz': 1,
            'orient': 1,
            'person': 1,
            'physic': 1,
            'potenti': 1,
            'problem': 2,
            'process': 1,
            'product': 1,
            'projects.i': 1,
            'regard': 1,
            'risk': 1,
            'robot': 1,
            'run': 1,
            'search': 1,
            'skill': 2,
            'solut': 1,
            'solv': 1,
            'spend': 1,
            'strong': 1,
            'studi': 1,
            'take': 1,
            'team': 1,
            'test': 1,
            'time': 1,
            'train': 1,
            'type': 1,
            'use': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '2004': 1,
            'also': 1,
            'amazon': 1,
            'articl': 1,
            'author': 1,
            'bestsel': 1,
            'book': 1,
            'check': 1,
            'client': 1,
            'could': 1,
            'cover': 1,
            'current': 1,
            'debt': 1,
            'directori': 1,
            'earn': 1,
            'english': 1,
            'enjoy': 1,
            'entertain': 1,
            'experi': 1,
            'fact': 1,
            'far': 1,
            'freelanc': 1,
            'googl': 1,
            'great': 2,
            'health': 1,
            'high': 1,
            'huge': 1,
            'husband': 1,
            'india': 1,
            'level': 1,
            'long-term': 1,
            'math': 1,
            'maya': 1,
            'middl': 1,
            'name': 1,
            'new': 1,
            'partner': 1,
            'pet': 1,
            'primari': 1,
            'profess': 1,
            'rang': 2,
            'revenu': 1,
            'review': 1,
            'school': 2,
            'scienc': 1,
            'search': 1,
            'set': 1,
            'sever': 1,
            'sinc': 1,
            'subject': 1,
            'submit': 1,
            'teach': 1,
            'teacher': 1,
            'turn': 1,
            'way': 1,
            'wide': 1,
            'work.i': 1,
            'write': 3}),
  'M'),
 (FreqDist({'5': 1,
            'certifi': 1,
            'challeng': 1,
            'experi': 1,
            'good': 1,
            'insight': 1,
            'interest': 1,
            'problem': 1,
            'softwar': 1,
            'startup': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'s": 1,
            "'ve": 1,
            '10': 1,
            'bachelor': 1,
            'build': 1,
            'comput': 1,
            'degre': 1,
            'familiar': 1,
            'framework': 1,
            'hold': 1,
            'languag': 1,
            'scienc': 1,
            'sinc': 1,
            'varieti': 1,
            'websit': 1,
            'wide': 1}),
  'M'),
 (FreqDist({'...': 1,
            'draw': 1,
            'hand': 1,
            'old': 1,
            'photo': 1,
            'restor': 1,
            'sketch': 1,
            'vector': 1}),
  'M'),
 (FreqDist({'current': 1,
            'decad': 1,
            'develop': 1,
            'employ': 1,
            'experi': 1,
            'free': 1,
            'freelanc': 1,
            'like': 1,
            'much': 1,
            'program': 1,
            'still': 1,
            'time': 1,
            'web': 1}),
  'M'),
 (FreqDist({'achiev': 1,
            'answer': 1,
            'care': 1,
            'client': 3,
            'clients.w': 1,
            'commit': 3,
            'commun': 1,
            'compani': 1,
            'custom': 1,
            'educ': 1,
            'everyth': 1,
            'goal': 1,
            'happen': 1,
            'help': 1,
            'highest': 1,
            'innov': 1,
            'level': 1,
            'make': 1,
            'market': 1,
            'may': 1,
            'need': 1,
            'onlin': 1,
            'patient': 1,
            'power': 1,
            'profession': 1,
            'promis': 1,
            'provid': 3,
            'question': 1,
            'regard': 1,
            'respons': 1,
            'see': 1,
            'servic': 3,
            'sincer': 1,
            'succeed': 1,
            'take': 1,
            'time': 1,
            'work': 1}),
  'M'),
 (FreqDist({'accord': 1,
            'applic': 1,
            'exactli': 1,
            'javascript': 1,
            'mysql': 1,
            'php': 1,
            'requir': 1,
            'time': 1,
            'web': 1,
            'wordpress': 1}),
  'M'),
 (FreqDist({'.net': 1,
            '9i/10g': 1,
            'abil': 1,
            'advantag': 1,
            'app': 1,
            'applic': 1,
            'busi': 1,
            'c': 1,
            'commun': 1,
            'comput': 1,
            'data': 4,
            'db': 1,
            'develop': 1,
            'educ': 1,
            'employ': 1,
            'entri': 2,
            'experi': 3,
            'five': 1,
            'growth': 1,
            'java': 1,
            'long-term': 1,
            'master': 1,
            'mca': 1,
            'name': 1,
            'opportun': 1,
            'oracl': 2,
            'profession': 1,
            'qualif': 1,
            'seek': 1,
            'skill': 1,
            'softwar': 1,
            'two': 1,
            'valid': 2,
            'within': 1,
            'would': 1,
            'year': 2}),
  'M'),
 (FreqDist({'6': 1,
            '8': 1,
            'algorithm': 1,
            'also': 1,
            'c++': 1,
            'challenges.w': 1,
            'charg': 1,
            'check': 1,
            'company.w': 1,
            'distribut': 1,
            'dont': 1,
            'experi': 2,
            'huge': 1,
            'index': 1,
            'innov': 1,
            'interest': 1,
            'java': 1,
            'ms': 1,
            'page': 1,
            'perl': 1,
            'php': 1,
            'program': 2,
            'programm': 1,
            'python': 1,
            'script': 1,
            'search': 1,
            'small': 1,
            'sourc': 1,
            'studio': 1,
            'team': 1,
            'via': 1,
            'visual': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'8': 1,
            '9+': 1,
            'abil': 1,
            'adob': 2,
            'applic': 1,
            'base': 1,
            'center': 1,
            'commun': 1,
            'concept': 1,
            'corpor': 1,
            'css': 1,
            'design': 4,
            'direct': 1,
            'dreamweav': 1,
            'environ': 1,
            'etc': 1,
            'excel': 1,
            'experi': 2,
            'factor': 1,
            'firework': 1,
            'home': 1,
            'html': 1,
            'human': 1,
            'illustr': 1,
            'implement': 1,
            'interact': 1,
            'interfac': 3,
            'intranet': 1,
            'javascript': 1,
            'knowledg': 2,
            'macromedia': 2,
            'methodolog': 1,
            'model': 1,
            'overal': 1,
            'photoshop': 1,
            'record': 1,
            'site': 2,
            'skill': 1,
            'strategi': 1,
            'success': 1,
            'team': 1,
            'thorough': 1,
            'track': 1,
            'ui': 1,
            'usabl': 1,
            'use': 1,
            'user': 4,
            'user-cent': 1,
            'web': 3,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'access': 1,
            'compos': 1,
            'design': 1,
            'encor': 1,
            'ethic': 1,
            'excel': 1,
            'experi': 1,
            'high': 1,
            'logic': 1,
            'ms': 1,
            'music': 1,
            'musician': 1,
            'pdf': 1,
            'pro': 1,
            'produc': 1,
            'standard': 1,
            'strong': 1,
            'teacher': 1,
            'web': 1,
            'word': 1,
            'wordpress': 1,
            'work': 1}),
  'M'),
 (FreqDist({'ad': 2,
            'agenc': 1,
            'alreadi': 1,
            'campaign': 1,
            'creativ': 1,
            'degre': 1,
            'documentari': 1,
            'editor': 1,
            'experi': 1,
            'freelanc': 1,
            'journalist': 1,
            'lead': 1,
            'made': 1,
            'magazin': 1,
            'mass': 1,
            'minut': 1,
            'movi': 1,
            'news': 1,
            'per': 1,
            'reput': 1,
            'speed': 1,
            'team': 1,
            'type': 1,
            'websit': 1,
            'well': 2,
            'word': 1,
            'work': 4}),
  'M'),
 (FreqDist({'10': 1,
            '2003': 1,
            '3': 1,
            '4+': 1,
            '5': 1,
            'addit': 1,
            'advertis': 1,
            'alreadi': 1,
            'base': 2,
            'cs': 1,
            'css': 2,
            'develop': 2,
            'done': 1,
            'grate': 1,
            'html': 2,
            'i`m': 1,
            'idea': 1,
            'includ': 1,
            'integr': 3,
            'joomla': 1,
            'manag': 1,
            'market': 1,
            'mysql': 1,
            'onlin': 5,
            'payment': 3,
            'photoshop': 1,
            'php': 1,
            'profession': 1,
            'project': 2,
            'sinc': 1,
            'skill': 1,
            'sm': 1,
            'softwar': 1,
            'stori': 2,
            'system': 1,
            'test': 1,
            'virtuemart': 1,
            'web': 4,
            'websit': 1,
            'year': 1}),
  'M'),
 (FreqDist({'5.5': 1,
            'accur': 1,
            'also': 2,
            'applic': 1,
            'area': 2,
            'avail': 1,
            'conveni': 1,
            'crm': 1,
            'data': 1,
            'enabl': 1,
            'entri': 1,
            'especi': 1,
            'experi': 1,
            'gmt': 1,
            'high': 1,
            'hr': 1,
            'inform': 1,
            'internet': 1,
            'like': 1,
            'make': 1,
            'meet': 1,
            'mutual': 1,
            'object': 1,
            'offer': 1,
            'onlin': 1,
            'packag': 1,
            'per': 1,
            'price': 1,
            'project': 1,
            'provid': 2,
            'qualiti': 1,
            'reason': 1,
            'report': 1,
            'requir': 1,
            'research': 1,
            'salesforc': 1,
            'servic': 3,
            'shall': 1,
            'softwar': 1,
            'statu': 1,
            'technolog': 1,
            'test': 1,
            'though': 1,
            'time': 3,
            'use': 1,
            'work': 1,
            'zone': 1}),
  'M'),
 (FreqDist({'design': 1, 'graphic': 1}), 'M'),
 (FreqDist({'1983.': 1,
            '2007': 1,
            '2d': 1,
            'air': 1,
            'anim': 1,
            'born': 1,
            'bueno': 1,
            'design': 1,
            'finish': 1,
            'illustr': 1,
            'imag': 1,
            'portfolio': 1,
            'sound': 1,
            'studi': 1,
            'uba': 1,
            'univers': 1,
            'work': 1}),
  'F'),
 (FreqDist({'achiev': 1,
            'array': 1,
            'autom': 1,
            'back': 1,
            'brainstorm': 1,
            'build': 1,
            'comput': 2,
            'dedic': 1,
            'degre': 1,
            'develop': 1,
            'end': 1,
            'engin': 1,
            'experi': 1,
            'front': 1,
            'goal': 1,
            'initi': 1,
            'intens': 1,
            'knowledg': 1,
            'labor': 1,
            'maintain': 1,
            'method': 1,
            'optim': 1,
            'person': 1,
            'process': 1,
            'profession': 1,
            'scienc': 1,
            'script': 1,
            'softwar': 2,
            'use': 1,
            'variou': 1,
            'vast': 1,
            'web': 1,
            'websit': 1}),
  'M'),
 (FreqDist({'12': 1,
            '2': 1,
            '40': 1,
            'abil': 1,
            'administr': 1,
            'advic': 2,
            'base': 2,
            'basi': 1,
            'branch': 1,
            'busi': 2,
            'career': 1,
            'colleg': 1,
            'column': 1,
            'creat': 1,
            'custom': 1,
            'ex': 1,
            'experi': 1,
            'forum': 1,
            'give': 1,
            'held': 1,
            'interest': 1,
            'launch': 1,
            'locat': 1,
            'look': 3,
            'market': 1,
            'need': 1,
            'new': 1,
            'offer': 1,
            'old': 1,
            'open': 1,
            'owner': 1,
            'past': 1,
            'person': 1,
            'prepar': 1,
            'public': 2,
            'rais': 1,
            'relat': 1,
            'research': 2,
            'sale': 1,
            'servic': 1,
            'son': 1,
            'subcontractor': 1,
            'support': 1,
            'topic': 2,
            'watch': 1,
            'websit': 1,
            'well': 1,
            'wisconsin': 1,
            'woman': 1,
            'work': 2,
            'would': 1,
            'write': 1,
            'writer': 1,
            'yr': 3}),
  'F'),
 (FreqDist({'30': 1,
            'edit': 1,
            'english': 1,
            'high': 1,
            'odd': 1,
            'passion': 1,
            'proofread': 1,
            'school': 1,
            'teacher': 1,
            'transcrib': 1,
            'year': 1}),
  'F'),
 (FreqDist({'cm': 1,
            'design': 1,
            'ecommerc': 1,
            'freelanc': 1,
            'graphic': 1,
            'much': 1,
            'photoshop': 1,
            'specialis': 1,
            'web': 1,
            'wordpress': 1,
            'xhtml/css': 1}),
  'M'),
 (FreqDist({'c': 1, 'c++': 1, 'expert': 1, 'studio': 1, 'visual': 1}), 'M'),
 (FreqDist({'html': 1,
            'list': 1,
            'open': 1,
            'php3': 1,
            'provid': 1,
            'qualiti': 1,
            'servic': 1}),
  'M'),
 (FreqDist({'administr': 1,
            'avail': 1,
            'hire': 1,
            'secur': 1,
            'specialist': 1,
            'system': 1,
            'web': 1}),
  'M'),
 (FreqDist({'abil': 3,
            'account': 1,
            'advertis': 1,
            'applic': 1,
            'articl': 1,
            'aspect': 1,
            'command': 1,
            'comput': 1,
            'confid': 1,
            'consid': 1,
            'copy-writ': 1,
            'coral': 1,
            'craigslist': 1,
            'custom': 1,
            'design': 4,
            'draw': 1,
            'edit': 1,
            'employ': 1,
            'experi': 1,
            'expert': 1,
            'expertis': 1,
            'field': 1,
            'flash': 1,
            'free': 1,
            'good': 2,
            'graphic': 2,
            'grate': 1,
            'grip': 1,
            'hand': 1,
            'highli': 1,
            'illustr': 1,
            'independ': 1,
            'knowledg': 1,
            'logo': 2,
            'make': 1,
            'market': 1,
            'meet': 1,
            'member': 1,
            'ms': 1,
            'mx': 1,
            'need': 1,
            'network': 1,
            'offic': 1,
            'organ': 1,
            'photoshop': 2,
            'post': 1,
            'pressur': 1,
            'profession': 1,
            'project': 1,
            'provid': 1,
            'review': 1,
            'scienc': 1,
            'serv': 1,
            'servic': 1,
            'strong': 1,
            'team': 3,
            'use': 1,
            'web': 1,
            'web-design': 1,
            'well': 2,
            'work': 4,
            'would': 1,
            'write': 2}),
  'M'),
 (FreqDist({"'ve": 1,
            '--': 5,
            '2.': 1,
            'ajax': 1,
            'align': 1,
            'also': 1,
            'bellow': 1,
            'cm': 1,
            'cmmi': 2,
            'coordin': 1,
            'css': 1,
            'databas': 1,
            'db': 1,
            'definit': 1,
            'develop': 1,
            'disciplin': 1,
            'ejb': 1,
            'engin': 2,
            'exper': 1,
            'experienc': 1,
            'extj': 1,
            'find': 1,
            'govern': 1,
            'gwt': 1,
            'hibern': 1,
            'highli': 1,
            'hs': 1,
            'html': 1,
            'implement': 1,
            'java': 3,
            'jboss': 1,
            'jpa': 1,
            'jqueri': 1,
            'jsf': 1,
            'jsp': 1,
            'level': 1,
            'link': 1,
            'mainli': 1,
            'ms': 1,
            'mysql': 1,
            'oracl': 3,
            'php': 1,
            'platform': 1,
            'pm': 1,
            'portlet': 1,
            'postgresql': 1,
            'process': 2,
            'profession': 1,
            'project': 1,
            'python': 1,
            'qa': 1,
            'rubi': 1,
            'rup': 1,
            'script': 1,
            'server': 1,
            'servlet': 1,
            'skill': 2,
            'soa': 2,
            'softwar': 2,
            'sql': 2,
            'suit': 1,
            'summari': 1,
            'sybas': 1,
            'technolog': 1,
            'tomcat': 1,
            'top': 1,
            'uml': 1,
            'use': 1,
            'web': 2,
            'weblog': 1,
            'webspher': 1,
            'work': 1,
            'xhtml': 1}),
  'M'),
 (FreqDist({'.i': 1,
            'affair': 1,
            'also': 1,
            'analyt': 1,
            'carv': 1,
            'challeng': 1,
            'commun': 1,
            'compani': 1,
            'corpor': 1,
            'develop': 1,
            'earn': 1,
            'educ': 1,
            'electron': 1,
            'employees.i': 1,
            'engin': 2,
            'firm': 1,
            'firm.i': 1,
            'futur': 1,
            'good': 1,
            'great': 1,
            'human': 1,
            'immers': 1,
            'industri': 1,
            'instrument': 1,
            'ltd': 1,
            'manag': 2,
            'ministri': 1,
            'new': 1,
            'nich': 1,
            'plan': 1,
            'privat': 1,
            'project': 1,
            'pvt': 1,
            'recent': 1,
            'skill': 1,
            'softwar': 1,
            'start': 1,
            'team': 1,
            'want': 1,
            'went': 1,
            'work': 1,
            'worth': 1}),
  'M'),
 (FreqDist({'3': 1, 'develop': 1, 'experi': 1, 'year': 1}), 'M'),
 (FreqDist({'alt': 1,
            'articl': 1,
            'blog': 2,
            'bookmark': 1,
            'classifi': 1,
            'creat': 2,
            'descript': 1,
            'directori': 1,
            'etc': 2,
            'experi': 1,
            'feed': 2,
            'h1': 1,
            'html': 1,
            'implement': 1,
            'keyword': 1,
            'meta': 1,
            'network': 1,
            'optim': 1,
            'page': 4,
            'post': 1,
            'press': 1,
            'releas': 1,
            'rss': 2,
            'sitemap': 2,
            'social': 2,
            'submiss': 7,
            'success': 1,
            'tag': 1,
            'titl': 1,
            'write': 2,
            'xml': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '2005': 1,
            'bachelor': 1,
            'commun': 1,
            'compani': 1,
            'contributor': 1,
            'degre': 1,
            'freelanc': 1,
            'freelancer.com': 1,
            'hold': 1,
            'journal': 1,
            'major': 1,
            'mass': 1,
            'news': 1,
            'one': 1,
            'press': 1,
            'rate': 1,
            'regular': 1,
            'releas': 1,
            'sinc': 1,
            'tech': 1,
            'top': 1,
            'websit': 1,
            'writer': 3}),
  'F'),
 (FreqDist({'amazon': 1,
            'commerc': 1,
            'e': 1,
            'etc': 1,
            'expert.': 1,
            'financi': 1,
            'flipkart': 1,
            'freelanc': 1,
            'hardwar': 1,
            'like': 1,
            'onlin': 1,
            'product': 1,
            'profession': 1,
            'sell': 2,
            'servic': 1,
            'site': 1,
            'snapdeal': 1,
            'variou': 1}),
  'M'),
 (FreqDist({'11i': 1,
            '1999': 1,
            '2009': 2,
            '28': 2,
            '85': 1,
            '\\xe2\\u20ac\\u201c': 2,
            'abil': 1,
            'account': 12,
            'accur': 1,
            'achiev': 1,
            'action': 1,
            'activ': 2,
            'age': 1,
            'agil': 4,
            'agreement': 1,
            'alloc': 2,
            'alto': 1,
            'american': 2,
            'analys': 1,
            'analysi': 2,
            'appli': 1,
            'april': 1,
            'area': 1,
            'articl': 1,
            'asia': 1,
            'associ': 2,
            'asst': 1,
            'audit': 1,
            'award': 1,
            'balanc': 1,
            'bank': 5,
            'belt': 2,
            'benchmark': 1,
            'better': 1,
            'book': 1,
            'build': 2,
            'buildup': 1,
            'busi': 7,
            'cash': 1,
            'caus': 1,
            'center': 4,
            'central': 1,
            'certif': 2,
            'certifi': 1,
            'chain': 2,
            'challeng': 1,
            'china': 4,
            'chines': 1,
            'clear': 3,
            'clearanc': 1,
            'client': 4,
            'clients\\xe2\\u20ac\\u2122': 1,
            'close': 1,
            'coe': 1,
            'collect': 1,
            'commit': 1,
            'commun': 2,
            'compani': 1,
            'complianc': 3,
            'conduct': 1,
            'consum': 1,
            'continu': 1,
            'contract': 1,
            'control': 1,
            'corpor': 2,
            'cost': 8,
            'cpc': 1,
            'current': 1,
            'custom': 2,
            'daili': 2,
            'data': 2,
            'date': 1,
            'decis': 1,
            'deliveri': 1,
            'depart': 1,
            'develop': 3,
            'divis': 1,
            'doc': 1,
            'dynam': 1,
            'effect': 3,
            'ensur': 1,
            'er': 1,
            'especi': 1,
            'excel': 3,
            'exist': 2,
            'expens': 2,
            'experi': 1,
            'exposur': 1,
            'express': 1,
            'extern': 1,
            'f': 1,
            'face': 1,
            'facilit': 1,
            'financ': 3,
            'financi': 1,
            'focu': 4,
            'formul': 1,
            'function': 2,
            'gb': 1,
            'gener': 1,
            'give': 1,
            'global': 5,
            'green': 1,
            'grievanc': 1,
            'gross': 1,
            'group': 1,
            'growth': 1,
            'guidanc': 1,
            'hand': 1,
            'handl': 1,
            'head': 1,
            'hon': 1,
            'honeywel': 3,
            'hong': 1,
            'hotel': 1,
            'hr': 1,
            'implement': 4,
            'imprest': 2,
            'improv': 2,
            'includ': 1,
            'individu': 1,
            'institut': 1,
            'interact': 2,
            'intern': 2,
            'internationalmanag': 1,
            'internet': 1,
            'interperson': 1,
            'inventori': 1,
            'involv': 2,
            'issu': 2,
            'japa': 2,
            'japan': 1,
            'job': 1,
            'karvi': 1,
            'knowledg': 3,
            'kong': 1,
            'lead': 1,
            'leader': 1,
            'ledger': 1,
            'legaci': 1,
            'legal': 1,
            'level': 1,
            'line': 1,
            'locat': 2,
            'mainten': 1,
            'make': 2,
            'manag': 7,
            'map': 1,
            'market': 2,
            'match': 1,
            'matrix': 1,
            'meet': 1,
            'mi': 3,
            'million': 2,
            'monthli': 1,
            'motiv': 1,
            'movement': 1,
            'multi': 1,
            'n\\ttransit': 2,
            'nation': 1,
            'new': 2,
            'niit': 1,
            'non': 1,
            'nov-2005': 1,
            'objectiveto': 1,
            'off-shor': 1,
            'onlin': 2,
            'oper': 4,
            'optim': 1,
            'optimum': 1,
            'oracl': 1,
            'order': 1,
            'organ': 1,
            'organis': 1,
            'organiz': 1,
            'outstand': 1,
            'p2p': 2,
            'pacif': 1,
            'palo': 1,
            'paper': 1,
            'paramet': 1,
            'part': 2,
            'partner': 1,
            'pay': 2,
            'payabl': 3,
            'payment': 2,
            'payrol': 1,
            'peopl': 2,
            'people\\xe2\\u20ac\\u2122': 1,
            'per': 2,
            'perform': 1,
            'plan': 1,
            'plant': 3,
            'point': 1,
            'polici': 1,
            'prc': 2,
            'procedur': 1,
            'process': 11,
            'procur': 8,
            'product': 1,
            'profession': 1,
            'program': 2,
            'progress': 1,
            'project': 13,
            'propos': 1,
            'purchas': 1,
            'put': 1,
            'qualiti': 2,
            'queri': 2,
            'r': 1,
            'receiv': 1,
            'reconcili': 6,
            'recruit': 1,
            'reduc': 1,
            'region': 1,
            'relat': 2,
            'relationship': 3,
            'remot': 1,
            'render': 1,
            'report': 4,
            'republ': 1,
            'request': 1,
            'requir': 1,
            'resolut': 1,
            'resourc': 3,
            'respect': 1,
            'respons': 1,
            'review': 1,
            'rfp': 1,
            'rich': 1,
            'root': 1,
            'run': 1,
            'sale': 2,
            'scan': 1,
            'servic': 7,
            'set': 1,
            'setup': 1,
            'share': 3,
            'situat': 1,
            'skill': 2,
            'smooth': 1,
            'solut': 3,
            'special': 1,
            'specialist-': 1,
            'ssc': 2,
            'stakehold': 2,
            'standard': 1,
            'strategi': 1,
            'streamlin': 2,
            'sub': 1,
            'success': 1,
            'suppli': 2,
            'support': 2,
            'suspens': 1,
            'sync': 1,
            'system': 2,
            'team': 10,
            'technolog': 2,
            'templat': 1,
            'till': 1,
            'time': 1,
            'toward': 1,
            'train': 2,
            'transfer': 2,
            'transit': 3,
            'two': 1,
            'understand': 1,
            'unit': 1,
            'univers': 1,
            'usd': 1,
            'user': 1,
            'util': 1,
            'variou': 1,
            'vendor': 3,
            'voucher': 1,
            'weekli': 1,
            'well': 2,
            'wing': 2,
            'work': 4,
            'worldwid': 1,
            'years\\xe2\\u20ac\\u2122': 1,
            'zero': 1}),
  'F'),
 (FreqDist({'10': 1,
            'consult': 1,
            'design': 1,
            'engin': 1,
            'experi': 1,
            'field': 1,
            'local': 1,
            'profession': 1,
            'structur': 2,
            'work': 1,
            'yr': 1}),
  'M'),
 (FreqDist({"'m": 1, 'ana': 1, 'desaign': 1, 'grapic': 1, 'surya': 1}), 'M'),
 (FreqDist({'..': 1,
            '...': 42,
            'excel': 2,
            'internet': 1,
            'knowledg': 1,
            'ms.': 1,
            'surf': 1,
            'word': 1}),
  'M'),
 (FreqDist({'2005': 1,
            '2checkout': 1,
            '6.0': 1,
            '9i/10g/11g': 1,
            '9x': 1,
            '\\xe2\\u20ac\\u201c': 1,
            'abap': 1,
            'access': 2,
            'acrobat': 1,
            'actionscript': 1,
            'activ': 2,
            'activex': 1,
            'ad': 1,
            'admin': 1,
            'adob': 1,
            'advertis': 2,
            'ajax': 1,
            'alt': 1,
            'amazon': 1,
            'analysi': 2,
            'analyt': 2,
            'analyz': 1,
            'anim': 1,
            'anywher': 1,
            'apach': 4,
            'api': 1,
            'articl': 1,
            'asp': 1,
            'asp.net': 1,
            'aspdotnetstorefront': 1,
            'astra': 2,
            'azur': 2,
            'banner': 1,
            'bcp': 1,
            'bea': 1,
            'blog': 3,
            'bookmark': 1,
            'borland': 1,
            'box': 1,
            'br': 1,
            'bugzilla': 1,
            'build': 1,
            'busi': 3,
            'button': 2,
            'c': 1,
            'c++': 1,
            'c/c++': 1,
            'cakephp': 1,
            'cam': 1,
            'campaign': 1,
            'cart': 1,
            'ce': 1,
            'center': 1,
            'cgi': 1,
            'cgi/perl': 1,
            'channel': 1,
            'check': 1,
            'checkout': 2,
            'cic': 1,
            'classifi': 1,
            'clear': 1,
            'client': 1,
            'cluster': 1,
            'cobol': 1,
            'coda': 1,
            'codeignit': 1,
            'com': 2,
            'comment': 3,
            'competitor': 1,
            'composit': 1,
            'consult': 1,
            'content': 1,
            'control': 2,
            'convert': 1,
            'coreldraw': 1,
            'creation': 3,
            'crystal': 1,
            'css': 1,
            'custom': 1,
            'cv': 1,
            'cyber': 1,
            'data': 2,
            'databas': 2,
            'db2': 1,
            'dedic': 2,
            'deliv': 1,
            'design': 1,
            'develop': 6,
            'devexpress': 1,
            'dhtml': 1,
            'director': 2,
            'directori': 3,
            'div': 1,
            'dm': 1,
            'dn': 1,
            'dom': 1,
            'domain': 1,
            'dotnetnuk': 1,
            'dreamweav': 1,
            'drupal': 2,
            'eagl': 1,
            'eclips': 1,
            'editor': 1,
            'ejb': 1,
            'email': 2,
            'endeavor': 1,
            'engin': 1,
            'enterpris': 1,
            'entiti': 1,
            'erwin': 1,
            'excel': 1,
            'experienc': 1,
            'explain': 1,
            'fab': 1,
            'facebook': 1,
            'feed': 1,
            'firework': 1,
            'flash': 2,
            'flexibl': 1,
            'forum': 1,
            'foundat': 1,
            'framework': 1,
            'frontpag': 1,
            'ftp': 1,
            'gateway': 1,
            'googl': 3,
            'grail': 1,
            'graph': 2,
            'gwt': 1,
            'h1': 1,
            'high': 1,
            'host': 1,
            'hp-ux': 1,
            'html': 1,
            'hyperlink': 1,
            'hyperv': 1,
            'ibm': 2,
            'idea': 1,
            'ii': 2,
            'illustr': 1,
            'improv': 1,
            'index': 1,
            'informatica': 1,
            'innov': 1,
            'intellig': 1,
            'interbas': 1,
            'jadasit': 2,
            'java': 1,
            'javascript': 1,
            'jcl': 1,
            'jdbc': 1,
            'jira': 1,
            'jmeter': 1,
            'joomla': 1,
            'jqueri': 1,
            'json': 1,
            'jsp': 2,
            'jstl': 1,
            'kentico': 2,
            'keyword': 2,
            'keyword/phras': 1,
            'knockoutj': 1,
            'lab': 1,
            'lamp': 1,
            'like': 3,
            'link': 7,
            'linux': 1,
            'list': 1,
            'live': 1,
            'load': 2,
            'loader': 1,
            'loadrunn': 1,
            'log': 1,
            'lotu': 1,
            'mac': 1,
            'magento': 1,
            'manag': 2,
            'manageengin': 1,
            'market': 3,
            'mc-credit': 2,
            'mc-debit': 2,
            'md': 1,
            'media': 2,
            'mesh': 2,
            'meta': 1,
            'method': 1,
            'metro': 1,
            'mfc': 1,
            'microsoft': 8,
            'migrat': 1,
            'model': 1,
            'modx': 1,
            'monitor': 1,
            'ms': 5,
            'ms-access': 1,
            'msf': 1,
            'mt': 1,
            'multithread': 1,
            'mvc': 1,
            'mvp': 1,
            'mvvm': 1,
            'mysql': 3,
            'netbean': 1,
            'network': 2,
            'nopcommerc': 1,
            'note': 1,
            'notepad++': 1,
            'nuke': 2,
            'nunit': 1,
            'obie': 1,
            'object': 1,
            'one': 1,
            'ood': 1,
            'oop': 1,
            'open': 1,
            'optim': 5,
            'oracl': 1,
            'oscommerc': 1,
            'outsid': 1,
            'pagemak': 1,
            'panic': 1,
            'payment': 1,
            'paypal': 1,
            'pdf': 1,
            'perform': 3,
            'photoshop': 2,
            'php': 2,
            'pl/sql': 1,
            'plan': 1,
            'post': 1,
            'postgresql': 1,
            'powerpoint': 1,
            'ppc': 1,
            'press': 1,
            'prestashop': 1,
            'prism': 1,
            'profession': 1,
            'profil': 1,
            'project': 4,
            'puls': 1,
            'pump': 1,
            'python': 1,
            'qc': 1,
            'qtp': 1,
            'qualifi': 1,
            'qualiti': 3,
            'queri': 1,
            'quest': 1,
            'quick': 1,
            'ration': 3,
            'releas': 1,
            'report': 1,
            'ria': 1,
            'rmi': 1,
            'robot': 1,
            'rss': 2,
            'rubi': 1,
            'runner': 1,
            'rup': 1,
            'samurai': 1,
            'satisfact': 1,
            'search': 1,
            'seo': 2,
            'server': 3,
            'servic': 3,
            'servlet': 1,
            'share': 1,
            'sharepoint': 1,
            'ship': 1,
            'siebel': 1,
            'silk': 2,
            'silverlight': 1,
            'silverstrip': 1,
            'simul': 4,
            'sitemap': 1,
            'sm': 1,
            'soa': 1,
            'soap': 1,
            'social': 4,
            'softwar': 1,
            'solari': 1,
            'sort': 1,
            'sourc': 1,
            'sourcesaf': 1,
            'speedi': 1,
            'spring': 1,
            'sqa': 1,
            'sql': 3,
            'sql*plu': 1,
            'sqlite': 1,
            'ssa': 1,
            'ssh': 1,
            'ssi': 1,
            'ssl': 1,
            'ssr': 1,
            'star': 1,
            'starteam': 1,
            'stream': 1,
            'stripe': 1,
            'structur': 1,
            'struts2': 1,
            'studio': 4,
            'submiss': 8,
            'subvers': 1,
            'suit': 1,
            'svn': 1,
            'swing': 1,
            'sybas': 1,
            'symfoni': 1,
            'sync': 1,
            'system': 2,
            't-sql': 1,
            'tag': 1,
            'team': 5,
            'test': 6,
            'tester': 1,
            'three': 1,
            'titl': 1,
            'toad': 1,
            'tool': 1,
            'tower': 1,
            'transpar': 1,
            'tune': 2,
            'two': 1,
            'umbraco': 1,
            'uml': 1,
            'unix': 1,
            'use': 1,
            'user': 1,
            'util': 2,
            'valid': 1,
            'valu': 1,
            'vb': 1,
            'vb.net': 1,
            'vbscript': 1,
            'version': 3,
            'video': 1,
            'view': 1,
            'virtuemart-': 1,
            'visio': 1,
            'visual': 4,
            'vpn': 1,
            'vss': 1,
            'w3c': 1,
            'wamp': 1,
            'way': 4,
            'wcf': 1,
            'wealth': 1,
            'web': 1,
            'webform': 1,
            'webload': 1,
            'websit': 2,
            'win': 1,
            'window': 5,
            'winform': 1,
            'wizard': 2,
            'wm': 1,
            'word': 1,
            'wordpress': 1,
            'work': 4,
            'workbench': 1,
            'wpf': 1,
            'writer': 1,
            'wsdl': 1,
            'xampp': 1,
            'xhtml': 1,
            'xi': 1,
            'xml': 2,
            'xp': 1,
            'xpath': 1,
            'xsl': 1,
            'xslt': 1,
            'yii': 1,
            'yui': 1,
            'zen': 1,
            'zend': 3}),
  'M'),
 (FreqDist({'adob': 2,
            'banner': 1,
            'corel': 1,
            'design': 2,
            'draw': 1,
            'experi': 1,
            'html': 1,
            'illustr': 1,
            'logo': 1,
            'mysql': 1,
            'photoshop': 1,
            'php': 1}),
  'F'),
 (FreqDist({'css3': 1,
            'develop': 3,
            'experi': 1,
            'freelanc': 1,
            'good': 1,
            'html5': 1,
            'java': 1,
            'javascript': 1,
            'look': 1,
            'need': 1,
            'skill': 1,
            'strong': 1,
            'websit': 1,
            'work': 1}),
  'M'),
 (FreqDist({'sincer': 1, 'want': 1, 'work': 1}), 'M'),
 (FreqDist({'ahead': 1,
            'certainli': 1,
            'commit': 1,
            'forward': 1,
            'hard': 1,
            'look': 1,
            'project': 2,
            'submit': 1,
            'worker': 1}),
  'F'),
 (FreqDist({'best': 1,
            'countri': 1,
            'descript': 1,
            'fast': 1,
            'feedback': 1,
            'honest': 1,
            'peopl': 1,
            'variou': 1,
            'work': 1}),
  'M'),
 (FreqDist({'.a': 1,
            'art': 1,
            'blank': 1,
            'cinema': 1,
            'color': 1,
            'commun': 1,
            'degre': 1,
            'design': 3,
            'etern': 1,
            'even': 1,
            'experiment': 1,
            'graphic': 2,
            'imag': 1,
            'import': 1,
            'ingredi': 1,
            'interest': 1,
            'involv': 1,
            'logo': 1,
            'photographi': 1,
            'profession': 1,
            'space': 1,
            'student': 1,
            'task': 1,
            'type': 1,
            'typographi': 1,
            'visual': 1,
            'websit': 1}),
  'M'),
 (FreqDist({'--': 1,
            '15': 1,
            '2006': 1,
            '2013': 1,
            '23': 1,
            '60': 1,
            '7': 1,
            '\\tlevel': 2,
            'convers': 1,
            'data': 3,
            'do': 1,
            'earlier': 2,
            'english': 1,
            'entri': 1,
            'etc': 1,
            'excel': 1,
            'feb': 2,
            'file': 1,
            'format': 1,
            'hindi': 1,
            'know': 1,
            'member': 1,
            'ms': 1,
            'offic': 1,
            'perl': 2,
            'powerpoint': 1,
            'process': 1,
            'program': 1,
            'script': 1,
            'sinc': 1,
            'speed': 1,
            'statu': 1,
            'transcript': 1,
            'translat': 1,
            'type': 2,
            'usernam': 1,
            'well-vers': 1,
            'window': 1,
            'word': 1,
            'wpm.i': 1}),
  'M'),
 (FreqDist({"''": 8,
            '...': 3,
            '``': 12,
            'accur': 1,
            'adher': 1,
            'also': 1,
            'client': 1,
            'defin': 1,
            'definit': 1,
            'deliv': 1,
            'detail-ori': 1,
            'done': 1,
            'effect': 1,
            'estim': 2,
            'excel': 3,
            'extrem': 1,
            'fast': 2,
            'forward': 1,
            'futur': 1,
            'gave': 1,
            'good': 2,
            'great': 1,
            'help': 1,
            'high': 1,
            'highli': 3,
            'inform': 1,
            'job': 2,
            'knowledg': 1,
            'let': 1,
            'look': 1,
            'manner': 1,
            'next': 1,
            'origin': 1,
            'outstand': 1,
            'prefer': 1,
            'profession': 1,
            'provid': 7,
            'qualiti': 2,
            'quick': 1,
            'recommend': 3,
            'requir': 1,
            'respons': 2,
            'satisfi': 1,
            'schedul': 1,
            'skill': 1,
            'talk': 1,
            'thank': 2,
            'time': 2,
            'use': 2,
            'valentin': 2,
            'well': 1,
            'work': 6,
            'worker': 1}),
  'M'),
 (FreqDist({'16': 1,
            '2': 1,
            '2006': 1,
            '2007': 1,
            '2009': 1,
            '27': 1,
            '4': 1,
            '70': 1,
            '\\t': 1,
            'access': 1,
            'account': 1,
            'accur': 1,
            'appoint': 1,
            'appropri': 1,
            'april': 1,
            'assign': 1,
            'assist': 1,
            'ave.': 3,
            'b2b/b2c': 1,
            'bldg': 1,
            'build': 1,
            'campaign': 2,
            'career': 1,
            'carri': 1,
            'center': 2,
            'citi': 2,
            'client': 1,
            'clients-': 1,
            'coordin': 1,
            'copy/past': 1,
            'creativ': 1,
            'crm': 1,
            'custom': 1,
            'data': 1,
            'de': 1,
            'direct': 1,
            'estat': 1,
            'etc': 2,
            'excel': 1,
            'expect': 1,
            'februari': 1,
            'gil': 2,
            'group': 1,
            'growth': 1,
            'guidelin': 1,
            'inbound': 1,
            'inc': 1,
            'intern': 1,
            'lead': 1,
            'leav': 1,
            'makati': 2,
            'manag': 1,
            'market': 1,
            'may': 1,
            'meet': 1,
            'networking-': 1,
            'open': 1,
            'outbound': 1,
            'paseo': 1,
            'peoplesupport': 1,
            'person': 1,
            'philippin': 3,
            'process': 1,
            'provid': 1,
            'puyat': 2,
            'real': 1,
            'relat': 1,
            'repres': 1,
            'respons': 1,
            'roxa': 1,
            'sale': 2,
            'salesforc': 1,
            'sever': 1,
            'social': 1,
            'supervisor': 1,
            'support': 1,
            'time': 1,
            'virtual': 1,
            'workflow': 1}),
  'F'),
 (FreqDist({'ajax': 1,
            'css': 1,
            'done': 1,
            'jqueri': 1,
            'mani': 1,
            'mysql': 1,
            'php': 1,
            'project': 1,
            'use': 1}),
  'F'),
 (FreqDist({"'m": 1,
            '16': 1,
            '17': 1,
            '18': 1,
            'area': 1,
            'complianc': 1,
            'copywrit': 1,
            'degre': 1,
            'distribut': 1,
            'experi': 3,
            'fit': 1,
            'focus': 1,
            'food': 1,
            'health': 1,
            'hi': 1,
            'inform': 1,
            'lifetim': 1,
            'manag': 1,
            'mine': 1,
            'oper': 1,
            'organ': 1,
            'passion': 1,
            'person': 1,
            'restaur': 1,
            'safeti': 1,
            'system': 1,
            'technolog': 1,
            'wareh': 1,
            'year': 3}),
  'M'),
 (FreqDist({'also': 1,
            'concentr': 1,
            'content': 1,
            'creat': 1,
            'engin': 1,
            'experi': 1,
            'guid': 3,
            'help': 1,
            'main': 1,
            'mainli': 1,
            'onlin': 1,
            'optim': 1,
            'quick': 1,
            'search': 1,
            'start': 1,
            'task': 1,
            'troubleshoot': 1,
            'user': 1,
            'write': 1}),
  'M'),
 (FreqDist({"'ve": 2,
            '.net': 1,
            'believ': 1,
            'best': 1,
            'c': 1,
            'crystal': 1,
            'expertis': 1,
            'give': 1,
            'like': 1,
            'project': 1,
            'server': 1,
            'sql': 1,
            'technolog': 1,
            'variou': 1,
            'work': 2}),
  'M'),
 (FreqDist({"'m": 1,
            "'ve": 2,
            'also': 1,
            'basi': 1,
            'clip': 1,
            'collabor': 1,
            'compani': 1,
            'confirm': 1,
            'continu': 1,
            'curiou': 1,
            'deadline-ori': 1,
            'dig': 1,
            'expert': 1,
            'fact': 1,
            'fb': 1,
            'freelanc': 1,
            'happi': 1,
            'hone': 1,
            'includ': 1,
            'inform': 1,
            'instagram': 1,
            'journal': 1,
            'mani': 1,
            'market': 1,
            'media': 1,
            'much': 1,
            'number': 1,
            'onlin': 1,
            'peopl': 1,
            'pinterest': 1,
            'prepar': 1,
            'public': 1,
            'report': 1,
            'research': 2,
            'resourc': 1,
            'result': 1,
            'share': 1,
            'skill': 1,
            'social': 1,
            'spend': 1,
            'stori': 1,
            'strong': 1,
            'time': 2,
            'twitter': 1,
            'websit': 1,
            'work': 1,
            'write': 1,
            'writer': 1}),
  'F'),
 (FreqDist({'also': 1,
            'applic': 1,
            'c': 1,
            'develop': 1,
            'experi': 1,
            'expert': 1,
            'interest': 1,
            'intern': 1,
            'kernel': 1,
            'linux': 2,
            'network': 2,
            'particularli': 1,
            'program': 1,
            'wide': 1}),
  'M'),
 (FreqDist({'--': 7,
            '9000': 2,
            '\\xc3\\xa0': 1,
            '\\xc3\\xa1rea': 1,
            'acli': 2,
            'acquir': 1,
            'aerospac': 1,
            'alto': 2,
            'analysi': 2,
            'angola': 2,
            'ano': 1,
            'argentina': 2,
            'artex': 2,
            'automot': 1,
            'bahrein': 2,
            'berlitz': 2,
            'born': 1,
            'br': 2,
            'brazil': 1,
            'busi': 1,
            'cabo': 1,
            'cape': 1,
            'case': 4,
            'certifi': 1,
            'client': 1,
            'coast': 1,
            'colombia': 1,
            'commod': 2,
            'como': 2,
            'compani': 4,
            'conhecimento': 1,
            'control': 1,
            'costa': 1,
            'countri': 1,
            'custom': 1,
            'da': 2,
            'de': 5,
            'denmark': 1,
            'desd': 1,
            'do': 3,
            'dupont': 2,
            'e': 11,
            'effect': 1,
            'electron': 1,
            'em': 4,
            'empresa': 2,
            'end': 1,
            'est': 1,
            'experi': 2,
            'experi\\xc3\\xaancia': 2,
            'field': 1,
            'former': 1,
            'franc': 1,
            'fundament': 1,
            'germani': 1,
            'hands-on': 1,
            'hong': 1,
            "int'l": 2,
            'intern': 1,
            'iso': 4,
            'japan': 1,
            'ji': 2,
            'knowledg': 1,
            'kong': 1,
            'kuwait': 2,
            'lebanon': 1,
            'leon': 2,
            'live': 1,
            'logist': 1,
            'maxion': 2,
            'measur': 1,
            'medic': 1,
            'meet': 1,
            'mexico': 1,
            'minha': 1,
            'mode': 1,
            'modo': 1,
            'morocco': 1,
            'na': 2,
            'nigeria': 1,
            'para': 1,
            'paraguay': 1,
            'plan': 1,
            'portug': 2,
            'process': 1,
            'procur': 2,
            'product': 1,
            'purchas': 1,
            'qs': 2,
            'qualidad': 2,
            'qualiti': 2,
            'ramo': 1,
            'sale': 1,
            'sap': 1,
            'seneg': 2,
            'servic': 2,
            'sever': 1,
            'share': 1,
            'siemen': 2,
            'sierra': 2,
            'sinc': 1,
            'sistema': 1,
            'spain': 1,
            'splice': 2,
            'statist': 1,
            'sweden': 1,
            'switzerland': 1,
            'system': 1,
            'taiwan': 2,
            'todo': 1,
            'trade': 2,
            'usa': 1,
            'venezuela': 2,
            'volta': 2,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'15+': 1,
            '201': 1,
            '5+': 1,
            'certifi': 1,
            'cloud': 1,
            'configur': 1,
            'consult': 1,
            'dev': 1,
            'experi': 1,
            'expert': 1,
            'project': 1,
            'salesforc': 1,
            'servic': 1,
            'year': 1}),
  'M'),
 (FreqDist({"''": 1,
            "'s": 1,
            '1000': 1,
            '20': 1,
            '3.0': 1,
            '``': 1,
            'actor': 1,
            'adob': 1,
            'audit': 1,
            'averag': 1,
            'channel': 1,
            'deep': 1,
            'door': 1,
            'frank': 3,
            'friendli': 1,
            'guy': 1,
            'hard': 1,
            'interfac': 1,
            'jame': 1,
            'next': 1,
            'nt': 1,
            'profession': 1,
            'radio': 1,
            'sell': 1,
            'slightli': 1,
            'studio': 1,
            'talent': 1,
            'usb': 1,
            'use': 1,
            'voic': 4,
            'year': 1}),
  'M'),
 (FreqDist({'alway': 1,
            'best': 1,
            'excel': 1,
            'independ': 1,
            'like': 1,
            'member': 1,
            'offer': 1,
            'prefer': 1,
            'team': 1,
            'work': 3}),
  'M'),
 (FreqDist({'1': 1,
            '5': 1,
            'assign': 1,
            'consult': 1,
            'current': 1,
            'edit': 1,
            'excel': 1,
            'experi': 1,
            'hour': 1,
            'ms': 1,
            'nich': 1,
            'per': 1,
            'project': 1,
            'technic': 1,
            'variou': 1,
            'vers': 1,
            'well': 1,
            'work': 2,
            'write': 1,
            'writer': 1}),
  'F'),
 (FreqDist({"'s": 1,
            'app': 2,
            'base': 1,
            'c': 1,
            'care': 1,
            'compani': 1,
            'construct': 1,
            'data': 1,
            'everi': 1,
            'experi': 1,
            'free': 1,
            'freelanc': 1,
            'japan': 1,
            'night': 1,
            'programm': 1,
            'project': 1,
            'small': 1,
            'take': 1,
            'time': 1,
            'websit': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'m": 1,
            'contest': 1,
            'footag': 1,
            'found': 1,
            'place': 1,
            'recent': 1,
            'screenwrit': 1,
            'script': 1,
            'short': 1,
            'third': 1}),
  'M'),
 (FreqDist({'adapt': 1,
            'agil': 1,
            'alway': 1,
            'ambiti': 1,
            'area': 1,
            'coverag': 1,
            'dedic': 1,
            'develop': 1,
            'done': 1,
            'everi': 1,
            'experi': 1,
            'full': 1,
            'get': 1,
            'greedi': 1,
            'hard': 1,
            'job': 1,
            'meet': 1,
            'requir': 1,
            'sever': 1,
            'step': 1,
            'trust': 1,
            'vast': 1,
            'way': 2,
            'work': 2,
            'young': 1}),
  'M'),
 (FreqDist({'3+': 1,
            'coreldraw': 1,
            'css': 1,
            'design': 1,
            'dreamweav': 1,
            'experi': 1,
            'expertis': 1,
            'flash': 1,
            'good': 1,
            'illustr': 1,
            'india.i': 1,
            'multimedia': 1,
            'photoshop': 1,
            'web': 1,
            'xhtml': 1,
            'year': 1}),
  'M'),
 (FreqDist({'deliv': 1,
            'experi': 1,
            'field': 1,
            'good': 1,
            'interest': 1,
            'job': 1,
            'servic': 1,
            'sure': 1,
            'use': 1,
            'year': 1}),
  'M'),
 (FreqDist({'allahabad': 1, 'cours': 1, 'differ': 1, 'nit': 1, 'teach': 1}),
  'M'),
 (FreqDist({'build': 1,
            'data': 1,
            'entri': 1,
            'experi': 1,
            'last': 1,
            'link': 1,
            'lot': 1,
            'one': 1,
            'privat': 1,
            'well': 1,
            'year': 1}),
  'M'),
 (FreqDist({'greec': 1, 'make': 1, 'websit': 1}), 'M'),
 (FreqDist({'13': 1,
            'email': 1,
            'experi': 1,
            'expert': 1,
            'exposur': 1,
            'gener': 1,
            'genuin': 1,
            'get': 1,
            'great': 1,
            'improv': 1,
            'market': 1,
            'onlin': 1,
            'rank': 1,
            'real': 1,
            'sale': 1,
            'se': 1,
            'traffic': 2,
            'visibl': 1,
            'visitor': 1,
            'websit': 1,
            'year': 1}),
  'M'),
 (FreqDist({'abil': 5,
            'accomplish': 1,
            'adob': 1,
            'client\\xe2\\u20ac\\u2122': 1,
            'cm': 1,
            'coda': 1,
            'creativ': 2,
            'cs5': 1,
            'current': 1,
            'deadlin': 1,
            'design': 1,
            'develop': 1,
            'differ': 1,
            'entail': 1,
            'experi': 1,
            'gener': 1,
            'high': 2,
            'idea': 2,
            'learn': 1,
            'maco': 1,
            'main': 1,
            'mobil': 1,
            'new': 2,
            'page': 1,
            'photoshop': 1,
            'platform': 1,
            'program': 1,
            'qualiti': 1,
            'readi': 1,
            'respons': 1,
            'site': 1,
            'skill': 2,
            'support': 1,
            'surround': 1,
            'task': 1,
            'team': 1,
            'tool': 1,
            'vision': 1,
            'work': 3}),
  'M'),
 (FreqDist({"'ve": 1,
            '7': 1,
            'applic': 1,
            'busi': 1,
            'desktop': 1,
            'dev': 1,
            'develop': 1,
            'experi': 1,
            'field': 1,
            'former': 1,
            'good': 1,
            'hand': 1,
            'ibm': 1,
            'kind': 1,
            'sap': 1,
            'server': 1,
            'support': 1,
            'system': 1,
            'web': 1,
            'year': 1}),
  'M'),
 (FreqDist({'2004': 1,
            'africa': 1,
            'agenc': 2,
            'bangladesh': 2,
            'canada': 1,
            'code': 1,
            'com': 1,
            'cut': 1,
            'denmark': 1,
            'design': 1,
            'develop': 1,
            'excel': 1,
            'experi': 1,
            'first': 1,
            'freelanc': 1,
            'hand': 1,
            'look': 1,
            'mani': 1,
            'outsourc': 1,
            'placement': 1,
            'project': 1,
            'seven': 1,
            'sinc': 1,
            'system': 1,
            'teeth': 1,
            'uk': 1,
            'web': 4,
            'websit': 1,
            'well': 1,
            'whilst': 1,
            'work': 5,
            'year': 1}),
  'M'),
 (FreqDist({'abl': 1,
            'background': 1,
            'bank': 1,
            'copywrit': 1,
            'differ': 1,
            'done': 1,
            'english': 1,
            'etc': 1,
            'experi': 1,
            'fast': 1,
            'field': 1,
            'financi': 1,
            'forex': 1,
            'learner': 1,
            'manag': 1,
            'new': 1,
            'open': 1,
            'rewrit': 1,
            'russian': 1,
            'sinc': 1,
            'task': 1,
            'three': 1,
            'topic': 1,
            'translat': 1,
            'write': 1,
            'year': 1}),
  'F'),
 (FreqDist({'also': 1,
            'beij': 1,
            'china': 1,
            'current': 1,
            'degre': 1,
            'econom': 1,
            'engin': 3,
            'hr': 1,
            'master': 2,
            'mba': 1,
            'mechan': 1,
            'pakistan': 1,
            'phd': 1,
            'power': 2,
            'thermal': 2}),
  'M'),
 (FreqDist({"'s": 1,
            'almost': 1,
            'content': 1,
            'current': 1,
            'decad': 1,
            'experi': 1,
            'firm': 1,
            'media': 1,
            'onlin': 1,
            'produc': 1,
            'social': 1,
            'work': 1,
            'worth': 1,
            'write': 1}),
  'M'),
 (FreqDist({'advanc': 1,
            'alway': 1,
            'asian': 1,
            'assur': 1,
            'audio-visu': 1,
            'background': 1,
            'base': 1,
            'control': 1,
            'cover': 1,
            'custom': 1,
            'customiz': 1,
            'deliveri': 1,
            'disciplin': 1,
            'e-learn': 1,
            'effici': 1,
            'essenti': 1,
            'establish': 1,
            'european': 1,
            'experienc': 1,
            'expertis': 2,
            'fit': 1,
            'high': 1,
            'industri': 2,
            'juncoast': 3,
            'knowledg': 1,
            'local': 2,
            'manag': 1,
            'mani': 1,
            'materi': 1,
            'member': 1,
            'one': 1,
            'organ': 1,
            'pool': 1,
            'programm': 1,
            'project': 4,
            'prove': 1,
            'qualiti': 2,
            'select': 1,
            'servic': 1,
            'softwar': 1,
            'special': 2,
            'strict': 1,
            'success': 2,
            'system': 1,
            'talent': 2,
            'team': 2,
            'time': 1,
            'two': 1,
            'websit': 1,
            'work': 1,
            'workflow': 1,
            'year': 1,
            'young': 1}),
  'M'),
 (FreqDist({"'m": 1,
            'assur': 1,
            'challeng': 1,
            'chanc': 1,
            'commit': 1,
            'develop': 1,
            'give': 1,
            'idea': 1,
            'look': 1,
            'love': 1,
            'make': 1,
            'new': 1,
            'passion': 1,
            'real': 1,
            'regret': 1}),
  'M'),
 (FreqDist({'ca': 1,
            'commun': 1,
            'continu': 1,
            'current': 1,
            'degre': 1,
            'educ': 1,
            'inform': 1,
            "n't": 2,
            'need': 1,
            'visual': 1,
            'want': 1,
            'write': 1,
            'writer': 1}),
  'M'),
 (FreqDist({'abil': 1,
            'allow': 1,
            'capabl': 2,
            'eager': 1,
            'educ': 1,
            'envis': 1,
            'expand': 1,
            'experi': 1,
            'fill': 2,
            'forward': 1,
            'interest': 1,
            'jack': 1,
            'learn': 1,
            'look': 1,
            'mani': 2,
            'new': 1,
            'prepar': 1,
            'role': 2,
            'skill': 1,
            'trade': 1,
            'varieti': 1,
            'well': 1}),
  'M'),
 (FreqDist({'also': 1,
            'articl': 1,
            'author': 1,
            'essay': 2,
            'experi': 1,
            'extens': 1,
            'ezin': 1,
            'financ': 1,
            'global': 1,
            'intern': 1,
            'market': 1,
            'master': 1,
            'scienc': 1,
            'work': 1,
            'write': 1,
            'writer': 1}),
  'M'),
 (FreqDist({"''": 1,
            '3d': 2,
            '``': 1,
            'architectur': 1,
            'comput': 1,
            'experi': 1,
            'exterior': 1,
            'graduat': 1,
            'graphic': 1,
            'http': 1,
            'interior': 1,
            'la': 1,
            'love': 1,
            'model': 1,
            'onlin': 1,
            'portfolio': 1,
            'refer': 1,
            'rome': 1,
            'sapienza': 1,
            'univers': 1,
            'us': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 1,
            'appeal': 1,
            'creat': 1,
            'custom': 1,
            'digit': 1,
            'discuss': 1,
            'finish': 1,
            'focus': 1,
            'goal': 1,
            'market': 1,
            'need': 1,
            'print': 1,
            'product': 1,
            'profession': 1,
            'solut': 1,
            'target': 1,
            'work': 1}),
  'M'),
 (FreqDist({'--': 2,
            '6.': 1,
            'account': 1,
            'adept': 1,
            'also': 1,
            'analysi': 2,
            'assist': 1,
            'audit': 2,
            'capabl': 1,
            'client': 2,
            'cloud': 1,
            'commun': 2,
            'concept': 1,
            'content': 1,
            'creativ': 1,
            'data': 1,
            'design': 1,
            'develop': 1,
            'digit': 2,
            'email': 1,
            'experienc': 1,
            'focu': 1,
            'full': 1,
            'host': 1,
            'manag': 3,
            'market': 2,
            'media': 1,
            'pay-per-click': 1,
            'portfolio': 1,
            'profil': 1,
            'properti': 1,
            'research': 1,
            'sale': 1,
            'sem': 1,
            'seo': 1,
            'servic': 1,
            'social': 1,
            'strategi': 1,
            'strong': 1,
            'virtual': 1,
            'web': 1,
            'well-round': 1,
            'wordpress': 1,
            'write': 1}),
  'F'),
 (FreqDist({'...': 1,
            'brighten': 1,
            'earn': 1,
            'futur': 1,
            'money': 1,
            'want': 1,
            'well': 1}),
  'M'),
 (FreqDist({'...': 1,
            '2d': 1,
            '3d': 1,
            'confid': 1,
            'detail': 1,
            'done': 1,
            'edit': 1,
            'get': 1,
            'good': 1,
            'job': 2,
            'level': 1,
            'model': 1,
            "n't": 1,
            'passion': 1,
            'precis': 1,
            'reliabl': 1}),
  'M'),
 (FreqDist({"''": 2,
            "'s": 1,
            '10': 1,
            'abil': 1,
            'ambit': 1,
            'busi': 1,
            'cheer': 1,
            'expand': 1,
            'experi': 1,
            'fool': 1,
            'good': 1,
            'hope': 1,
            'import': 1,
            'mang': 1,
            'mood': 1,
            'motto': 1,
            'normal': 1,
            'ordinari': 1,
            'organ': 1,
            'perfect': 1,
            'person': 2,
            'pursuit': 1,
            'serious': 1,
            'speed': 1,
            'studi': 1,
            'style': 1,
            'success': 1,
            'univers': 1,
            'web': 1,
            'work': 3,
            'year': 1}),
  'M'),
 (FreqDist({'base': 1,
            'believ': 1,
            'busi': 1,
            'ca': 1,
            'commun': 1,
            'complet': 2,
            'constant': 1,
            'design': 1,
            'done': 1,
            'ensur': 1,
            'get': 1,
            'hill': 1,
            'job': 1,
            'logo': 1,
            'open': 1,
            'quickli': 1,
            'rapidli': 1,
            'satisfact': 1,
            'small': 1,
            'special': 1,
            'specif': 1,
            'websit': 1,
            'west': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '4': 1,
            'abl': 2,
            'accord': 1,
            'adjust': 1,
            'administr': 1,
            'also': 1,
            'analyt': 1,
            'bank': 1,
            'capabl': 1,
            'compani': 1,
            'complet': 1,
            'cours': 1,
            'differ': 1,
            'dilig': 1,
            'ecommerc': 1,
            'employe': 1,
            'excel': 1,
            'extrem': 1,
            'financ': 1,
            'gain': 2,
            'graduat': 1,
            'hard': 1,
            'highli': 1,
            'honest': 1,
            'hour': 1,
            'html': 1,
            'huge': 1,
            'interest': 1,
            'javascript': 1,
            'knowledg': 2,
            'lot': 1,
            'magento': 1,
            'mani': 1,
            'motiv': 1,
            'mysql': 1,
            'need': 2,
            'object': 1,
            'opencart': 1,
            'php': 1,
            'plenti': 1,
            'prestashop': 1,
            'profil': 1,
            'program': 1,
            'provid': 1,
            'put': 1,
            'reliabl': 1,
            'respons': 1,
            'section': 2,
            'skill': 1,
            'sometim': 1,
            'spread': 1,
            'support': 1,
            'thank': 1,
            'view': 1,
            'want': 2,
            'web': 1,
            'wordpress': 1,
            'work': 2,
            'world': 1,
            'year': 1,
            'zencart': 1}),
  'F'),
 (FreqDist({'100': 1,
            '300': 1,
            '50': 1,
            'across': 1,
            'also': 3,
            'among': 1,
            'articl': 1,
            'avail': 1,
            'base': 2,
            'career': 1,
            'compani': 1,
            'content': 5,
            'countri': 1,
            'creativ': 1,
            'develop': 5,
            'done': 1,
            'east': 1,
            'educ': 1,
            'experi': 1,
            'freelanc': 1,
            'furnish': 1,
            'gener': 1,
            'head': 1,
            'india': 1,
            'inform': 1,
            'lifestyl': 1,
            'local': 1,
            'ltd': 1,
            'magazin': 2,
            'manpow': 1,
            'miscellan': 1,
            'newspap': 2,
            'north': 1,
            'other': 1,
            'person': 2,
            'poem': 2,
            'portfolio': 1,
            'previou': 2,
            'publish': 1,
            'pvt': 1,
            'refer': 1,
            'regular': 2,
            'request': 1,
            'sampl': 2,
            'serv': 1,
            'short': 1,
            'sikkim': 1,
            'stori': 1,
            'team': 1,
            'total': 1,
            'travel': 1,
            'weblog': 1,
            'websit': 2,
            'work': 2,
            'writer': 2,
            'written': 1}),
  'M'),
 (FreqDist({'5': 1,
            'compani': 1,
            'devic': 1,
            'done': 1,
            'electr': 1,
            'engin': 1,
            'experi': 1,
            'expertis': 1,
            'graduat': 1,
            'institut': 1,
            'jersey': 1,
            'look': 1,
            'new': 1,
            'part': 1,
            'partner': 1,
            'posit': 1,
            'remot': 1,
            'reput': 1,
            'softwar': 1,
            'solid': 1,
            'state': 1,
            'studi': 1,
            'technolog': 1,
            'time': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'5': 1,
            'convers': 1,
            'data': 3,
            'entri': 1,
            'name': 1,
            'process': 1,
            'qualif': 1,
            'ravi': 1,
            'technic': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'ve": 1,
            '20': 1,
            'advertis': 1,
            'companies.i': 1,
            'daniel': 1,
            'done': 1,
            'edit': 1,
            'experi': 2,
            'graphic': 1,
            'highest': 1,
            'job': 1,
            'knowledg': 1,
            'look': 1,
            'lot': 1,
            'major': 1,
            'motion': 1,
            'post': 1,
            'product': 1,
            'production.i': 1,
            'profession': 1,
            'sampl': 1,
            'station': 1,
            'take': 1,
            'thank': 1,
            'tv': 1,
            'video': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '...': 1,
            '20+': 1,
            'applic': 1,
            'buyer': 1,
            'design': 4,
            'design.w': 1,
            'exclus': 1,
            'experi': 1,
            'forth': 1,
            'game': 1,
            'goal': 1,
            'graphic': 1,
            'industri': 1,
            'littl': 1,
            'logo': 1,
            'main': 1,
            'materi': 1,
            'mobil': 1,
            "n't": 1,
            'packag': 1,
            'passion': 1,
            'profession': 1,
            'show': 1,
            'suppli': 1,
            'team': 1,
            'templat': 1,
            'trade': 1,
            'use': 1,
            'web': 1,
            'year': 1}),
  'M'),
 (FreqDist({'3com': 1,
            'activ': 1,
            'administr': 1,
            'base': 1,
            'build': 1,
            'cisco': 1,
            'deploy': 2,
            'design': 2,
            'directori': 1,
            'experi': 1,
            'expertis': 1,
            'hyper-v': 1,
            'implement': 1,
            'infrastructur': 1,
            'knowledg': 1,
            'linux': 1,
            'manag': 1,
            'microsoft': 1,
            'minim': 1,
            'monitor': 1,
            'network': 1,
            'new': 1,
            'open': 1,
            'open-sourc': 1,
            'physic': 1,
            'project': 1,
            'restructur': 1,
            'server': 2,
            'softwar': 1,
            'sourc': 1,
            'special': 1,
            'specialist': 1,
            'strong': 1,
            'system': 1,
            'tco': 1,
            'team': 1,
            'technolog': 2,
            'transform': 1,
            'util': 1,
            'vpn': 1,
            'window': 1}),
  'M'),
 (FreqDist({'advertis': 1,
            'art': 2,
            'artist': 1,
            'campaign': 1,
            'colleg': 1,
            'creat': 1,
            'deep': 1,
            'degre': 1,
            'design': 2,
            'face': 1,
            'financ': 1,
            'fine': 1,
            'four': 1,
            'graduat': 1,
            'graphic': 1,
            'holi': 1,
            'industri': 1,
            'major': 1,
            'makeup': 1,
            'mini': 1,
            'moonlight': 1,
            'neck': 1,
            'onlin': 1,
            'photoshop': 1,
            'skill': 1,
            'spirit': 1,
            'telecommun': 1,
            'thesi': 1,
            'top': 1,
            'two': 1,
            'well': 1,
            'work': 2,
            'year': 2}),
  'F'),
 (FreqDist({'3dsmax': 1,
            'cad': 1,
            'coredraw': 1,
            'design': 3,
            'dreamweav': 1,
            'etc': 1,
            'good': 1,
            'like': 1,
            'logo': 1,
            'mani': 1,
            'max': 1,
            'photo': 1,
            'photoshop': 1,
            'project': 1,
            'websit': 1}),
  'M'),
 (FreqDist({'brief': 1,
            'capabl': 1,
            'execut': 1,
            'freelanc': 1,
            'good': 1,
            'guarante': 1,
            'hi': 1,
            'high': 1,
            'learn': 1,
            'name': 1,
            'new': 1,
            'order': 1,
            'qualiti': 1,
            'quit': 1,
            'space': 1,
            'time': 1,
            'willing': 1}),
  'F'),
 (FreqDist({"'m": 1,
            '...': 2,
            '200': 1,
            'believ': 1,
            'best': 1,
            'cheapest': 1,
            'commun': 1,
            'complet': 1,
            'custom': 1,
            'data': 1,
            'design9': 1,
            'designing3': 1,
            'entri': 1,
            'expert': 1,
            'facebook': 2,
            'fan': 1,
            'follow': 1,
            'good': 1,
            'googl': 1,
            'hello': 1,
            'honesti': 1,
            'internet': 2,
            'joomla': 1,
            'linkedin': 1,
            'logo': 1,
            'make': 1,
            'market': 2,
            'mini': 1,
            'network': 1,
            'new': 1,
            'page': 2,
            'php': 1,
            'plu': 1,
            'press': 1,
            'profit': 1,
            'provid': 1,
            'qualiti': 2,
            'reach': 1,
            'satisfact': 2,
            'servic': 2,
            'shall': 1,
            'social': 1,
            'solut': 1,
            'timelin': 1,
            'twitter': 1,
            'video': 1,
            'way': 1,
            'websit': 3,
            'word': 1,
            'youtub': 1}),
  'F'),
 (FreqDist({'.net': 1, '2010/2013': 1, 'c': 1, 'sharepoint': 1}), 'M'),
 (FreqDist({"'ll": 1, 'catch': 1, 'help': 1, 'success': 1}), 'M'),
 (FreqDist({'american': 1,
            'base': 1,
            'contact': 1,
            'copywrit': 1,
            'discuss': 1,
            'editor': 1,
            'end': 1,
            'fifteen': 1,
            'freelanc': 1,
            'hesit': 1,
            'look': 1,
            'make': 1,
            'pleas': 1,
            'polish': 1,
            'profession': 1,
            'proof': 1,
            'reader': 1,
            'requir': 1,
            'search': 1,
            'shine': 1,
            'uk': 1,
            'work': 1,
            'year': 1}),
  'F'),
 (FreqDist({'2.0': 1,
            '\\xc3\\xa0': 2,
            'afin': 2,
            'analys': 1,
            'au': 1,
            'client': 1,
            'commun': 1,
            'connaiss': 2,
            'critiqu': 1,
            'cs': 1,
            'cs3': 4,
            'dan': 3,
            'de': 13,
            'domain': 1,
            'dreamweav': 1,
            'du': 1,
            'effect': 1,
            'en': 3,
            'et': 5,
            'expertis': 1,
            'flash': 1,
            'fort': 1,
            'html': 1,
            'illustr': 2,
            'imag': 1,
            'indesign': 1,
            'la': 3,
            'le': 6,
            'linux': 1,
            'm\\xc3\\xaam': 1,
            'mac': 1,
            'messag': 1,
            'observ': 1,
            'organis': 1,
            'ou': 1,
            'page': 1,
            'pc': 1,
            'photoshop': 1,
            'php': 1,
            'pro': 1,
            'quark': 1,
            'que': 1,
            'satisfact': 1,
            'se': 1,
            'situat': 1,
            'son': 1,
            'sur': 2,
            'text': 1,
            'travail': 2,
            'un': 2,
            'vo': 1,
            'xml': 1}),
  'M'),
 (FreqDist({'best': 1,
            'client': 1,
            'come': 1,
            'commun': 1,
            'design': 1,
            'good': 1,
            'graphic': 1,
            'identif': 1,
            'need': 1,
            'part-tim': 1,
            'passion': 1,
            'realli': 1,
            'valu': 1,
            'visual': 1,
            'web': 1}),
  'M'),
 (FreqDist({'5': 1,
            '51': 1,
            '9i': 1,
            'addit': 1,
            'alway': 1,
            'appoint': 1,
            'attribut': 1,
            'basic': 1,
            'bd': 1,
            'best': 1,
            'case': 1,
            'certifi': 3,
            'code': 1,
            'confid': 1,
            'content': 1,
            'cours': 1,
            'data': 1,
            'databas': 2,
            'dba': 2,
            'dear': 1,
            'deliveri': 1,
            'design': 3,
            'develop': 2,
            'dhaka': 1,
            'dhanmondi': 1,
            'diploma': 1,
            'durat': 1,
            'effort': 1,
            'end': 1,
            'entri': 1,
            'experi': 1,
            'experienc': 1,
            'extra': 1,
            'field': 1,
            'finish': 2,
            'form': 1,
            'freelanc': 1,
            'fulli': 1,
            'h': 1,
            'hard': 1,
            'honesti': 1,
            'id': 1,
            'job': 1,
            'local': 1,
            'ltd.': 1,
            'main': 1,
            'manag': 1,
            'ms': 1,
            'newcom': 1,
            'oper': 1,
            'oracl': 3,
            'organ': 1,
            'outsourc': 1,
            'patienc': 1,
            'per': 1,
            'pl/sql': 1,
            'play': 1,
            'profession': 3,
            'programm': 1,
            'provid': 2,
            'qualif': 1,
            'qualiti': 1,
            'r': 1,
            'report': 1,
            'requir': 1,
            'satisfi': 1,
            'server': 1,
            'softwar': 1,
            'specif': 1,
            'sql': 3,
            'three': 1,
            'time': 1,
            'urgent': 1,
            'use': 1,
            'web': 1,
            'websit': 1,
            'work': 4,
            'xhtml': 1}),
  'M'),
 (FreqDist({'academ': 1,
            'air': 1,
            'argentina': 1,
            'bueno': 1,
            'creativ': 1,
            'critic': 1,
            'cultur': 1,
            'de': 1,
            'drama': 1,
            'english': 1,
            'film': 1,
            'interest': 1,
            'linguist': 1,
            'literari': 1,
            'literatur': 2,
            'nativ': 1,
            'philosophi': 1,
            'polit': 1,
            'scienc': 1,
            'social': 1,
            'spanish': 2,
            'speaker': 1,
            'special': 1,
            'student': 1,
            'subject': 1,
            'universidad': 1,
            'write': 1}),
  'M'),
 (FreqDist({'--': 8,
            '2000': 1,
            '8i': 1,
            '98': 1,
            'c': 1,
            'c++': 1,
            'css': 1,
            'designing\\t': 1,
            'html': 1,
            'java': 1,
            'joomla': 1,
            'languag': 1,
            'mysql': 1,
            'oracl': 1,
            'php': 2,
            'profici': 1,
            'python': 1,
            'script': 1,
            'softwar': 1,
            'system': 1,
            'window': 1,
            'xml': 1}),
  'M'),
 (FreqDist({'3dsmax': 1,
            '4': 1,
            'anyth': 1,
            'archicad': 1,
            'architectur': 2,
            'complet': 1,
            'distanc': 1,
            'effect': 1,
            'ethic': 1,
            'go': 1,
            'good': 2,
            'happi': 1,
            'im': 1,
            'incept': 1,
            'make': 1,
            'mani': 1,
            'peopl': 1,
            'photoshop': 1,
            'produc': 1,
            'profici': 1,
            'project': 1,
            'qualiti': 1,
            'technologist': 1,
            'version': 1,
            'way': 1,
            'will': 1,
            'work': 3}),
  'M'),
 (FreqDist({'also': 1,
            'blog': 1,
            'blogger': 1,
            'current': 1,
            'freelanc': 2,
            'game': 1,
            'latest': 1,
            'media': 1,
            'nich': 1,
            'offer': 1,
            'review': 1,
            'servic': 1,
            'social': 1,
            'special': 1,
            'tech': 1,
            'technolog': 1,
            'updat': 1,
            'web': 1,
            'write': 1,
            'writer': 1}),
  'F'),
 (FreqDist({'adob': 1,
            'aim': 1,
            'alway': 1,
            'bgh': 1,
            'current': 1,
            'custom': 2,
            'design': 2,
            'experi': 1,
            'expert': 1,
            'field': 1,
            'get': 1,
            'happi': 1,
            'host': 2,
            'keep': 1,
            'kind': 1,
            'like': 1,
            'mainli': 1,
            'servic': 1,
            'softwar': 1,
            'solut': 2,
            'suppli': 1,
            'web': 2,
            'work': 2}),
  'M'),
 (FreqDist({'7': 1,
            'area': 1,
            'dear': 1,
            'design': 2,
            'experi': 1,
            'flyer': 1,
            'follow': 1,
            'forward': 1,
            'interest': 1,
            'look': 1,
            'madam': 1,
            'poster': 1,
            'profession': 1,
            'provid': 1,
            'qualiti': 1,
            'servic': 1,
            'sir': 1,
            'site': 1,
            'video': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 2,
            "'ve": 1,
            '3d': 1,
            'anim': 1,
            'effect': 1,
            'engin': 1,
            'experi': 1,
            'game': 1,
            'like': 1,
            'mani': 1,
            'mari': 1,
            'max': 1,
            'maya': 1,
            'model': 1,
            'motionbuild': 1,
            'mudbox': 1,
            'nuke': 1,
            'other': 1,
            'photoshop': 1,
            'project': 1,
            'rigger': 1,
            'textur': 1,
            'unity3d': 2,
            'unreal': 1,
            'well': 1,
            'work': 1,
            'year': 1,
            'zbrush': 1}),
  'M'),
 (FreqDist({'capabl': 1,
            'deliveri': 1,
            'ensur': 1,
            'environ': 1,
            'fast-pac': 1,
            'independ': 1,
            'specialist': 1,
            'time': 1,
            'work': 3}),
  'F'),
 (FreqDist({'autom': 1,
            'case': 1,
            'creation': 1,
            'current': 1,
            'engin': 1,
            'experi': 1,
            'field': 1,
            'function': 1,
            'long': 1,
            'manag': 1,
            'nine': 1,
            'plan': 1,
            'qa': 1,
            'rich': 1,
            'seek': 1,
            'softwar': 1,
            'term': 1,
            'test': 5,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.net': 1,
            'algorithm': 1,
            'also': 1,
            'asp.net': 1,
            'azur': 1,
            'background': 1,
            'c': 1,
            'contest': 1,
            'data': 1,
            'experi': 1,
            'java': 1,
            'judg': 1,
            'languag': 1,
            'microsoft': 1,
            'mostli': 1,
            'mvc': 1,
            'onlin': 1,
            'particip': 1,
            'past': 1,
            'problem': 1,
            'program': 1,
            'python': 1,
            'relat': 1,
            'solid': 1,
            'solv': 1,
            'sport': 1,
            'structur': 1,
            'technolog': 1,
            'window': 1,
            'work': 1}),
  'M'),
 (FreqDist({'200': 1,
            '50': 1,
            'abl': 1,
            'accordingli': 1,
            'almost': 1,
            'although': 1,
            'anyth': 1,
            'articl': 3,
            'award': 2,
            'base': 1,
            'bid': 2,
            'busi': 1,
            'choic': 1,
            'comment': 1,
            'compet': 1,
            'consid': 1,
            'consider': 1,
            'creativ': 1,
            'data': 1,
            'day': 1,
            'deadlin': 1,
            'deliv': 1,
            'depend': 1,
            'detail': 1,
            'divers': 1,
            'e-book': 1,
            'employ': 1,
            'entri': 1,
            'experi': 1,
            'five': 2,
            'forward': 1,
            'freelanc': 1,
            'guarante': 1,
            'hard': 1,
            'includ': 1,
            'job': 2,
            'job.mi': 1,
            'later': 1,
            'list': 1,
            'look': 1,
            'meet': 1,
            'much': 1,
            'orient': 1,
            'previou': 1,
            'provid': 1,
            'qualiti': 1,
            'readi': 1,
            'regard': 1,
            'requir': 1,
            'servic': 1,
            'similar': 1,
            'special': 1,
            'sure': 1,
            'thank': 1,
            'truli': 1,
            'utmost': 1,
            'varieti': 1,
            'work': 3,
            'worker': 1,
            'write': 1,
            'writer': 1,
            'written': 1,
            'year': 1}),
  'F'),
 (FreqDist({'area': 1,
            'child': 1,
            'dj': 1,
            'drop': 1,
            'etc': 1,
            'femal': 1,
            'look': 1,
            'messag': 1,
            'narrat': 1,
            'philadelphia': 1,
            'profession': 1,
            'prompt': 1,
            'talent': 1,
            'voic': 2}),
  'F'),
 (FreqDist({'100': 1,
            'accuraci': 1,
            'advanc': 1,
            'deliveri': 1,
            'excel': 1,
            'experi': 1,
            'good': 1,
            'project': 1,
            'take': 1,
            'time': 1}),
  'M'),
 (FreqDist({"'m": 3,
            "'ve": 1,
            '8': 1,
            'advic': 1,
            'also': 1,
            'bangladesh.i': 1,
            'beauti': 1,
            'code': 4,
            'cool': 1,
            'creat': 1,
            'cross': 1,
            'cross-brows': 1,
            'css': 1,
            'css3': 1,
            'debug': 1,
            'design': 1,
            'develop': 2,
            'devic': 3,
            'dhaka': 1,
            'dynam': 1,
            'email': 1,
            'end': 1,
            'engag': 1,
            'engin': 1,
            'exist': 1,
            'follow': 1,
            'front': 1,
            'front-end': 2,
            'give': 1,
            'happi': 1,
            'hire': 1,
            'html5': 2,
            'improv': 1,
            'interfac': 1,
            'javascript': 1,
            'large-scal': 1,
            'list': 1,
            'loss': 1,
            'mass': 1,
            'mean': 1,
            'modern': 2,
            'newslett': 1,
            'nice': 1,
            'one': 2,
            'optim': 1,
            'perform': 1,
            'program': 2,
            'project': 2,
            'qualiti': 1,
            'review': 3,
            'search': 1,
            'sinc': 2,
            'small': 1,
            'stack': 1,
            'tag': 1,
            'techniqu': 1,
            'test': 3,
            'use': 1,
            'user': 1,
            'want': 1,
            'web': 2,
            'well': 1,
            'without': 1,
            'workshop': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 2,
            '.net.i': 1,
            'certifi': 1,
            'code': 1,
            'databas': 1,
            'experi': 1,
            'forms.mi': 1,
            'four': 1,
            'fulli': 1,
            'microsoft': 1,
            'newest': 1,
            'oracl': 1,
            'profession': 1,
            'servic': 1,
            'sql': 1,
            'technolog': 1,
            'wcf': 1,
            'web': 1,
            'window': 1,
            'work': 1,
            'wpf': 1,
            'year': 1}),
  'M'),
 (FreqDist({'-year': 2,
            '1.': 1,
            '3': 2,
            '5': 1,
            '6': 1,
            'basic': 3,
            'commun': 1,
            'coordin': 1,
            'develop': 2,
            'english': 1,
            'experi': 4,
            'familiar': 1,
            'html': 1,
            'imag': 1,
            'javascript': 1,
            'joomla': 2,
            'jqueri': 1,
            'know': 1,
            'linux': 1,
            'main': 1,
            'month': 1,
            'mysql': 1,
            'oscommerc': 1,
            'photoshop': 1,
            'php': 1,
            'platform': 1,
            'recent': 1,
            'skill': 2,
            'slice': 1,
            'svn': 1,
            'use': 3,
            'well': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'build': 1,
            'career': 1,
            'job': 1,
            'onlin': 1,
            'respect': 1,
            'want': 1}),
  'M'),
 (FreqDist({'5': 1,
            'data': 2,
            'excel': 1,
            'experi': 1,
            'manipul': 1,
            'project': 1,
            'queri': 1,
            'valid': 1,
            'variou': 2,
            'work': 2,
            'written': 1,
            'year': 1}),
  'F'),
 (FreqDist({'.net': 1,
            'c': 1,
            'custom': 1,
            'enterpris': 1,
            'experienc': 1,
            'inventori': 1,
            'oracl': 1,
            'plan': 1,
            'relat': 1,
            'resourc': 1,
            'sql': 1,
            'vb': 1}),
  'M'),
 (FreqDist({"'m": 2,
            '60': 1,
            'avail': 1,
            'base': 2,
            'becom': 1,
            'coast': 1,
            'design': 1,
            'england': 1,
            'freelanc': 1,
            'howev': 1,
            'kent': 1,
            'london': 1,
            'look': 1,
            'mile': 1,
            'north': 1,
            'place': 1,
            'right': 1,
            'seem': 1,
            'sure': 1,
            'us': 1,
            'work': 3}),
  'M'),
 (FreqDist({'aggress': 1,
            'attitud': 1,
            'believ': 1,
            'complet': 1,
            'consult': 1,
            'effici': 1,
            'field': 1,
            'give': 1,
            'help': 2,
            'impart': 1,
            'knowledg': 1,
            'maximum': 1,
            'other': 2,
            'perfect': 1,
            'period': 1,
            'person': 1,
            'pleasur': 1,
            'product': 1,
            'provid': 1,
            'short': 1,
            'skill': 1,
            'systemat': 1,
            'task': 1,
            'te': 1,
            'time': 1,
            'tri': 1,
            'use': 1,
            'variou': 1,
            'within': 1,
            'work': 3}),
  'F'),
 (FreqDist({"'m": 2,
            "'ve": 2,
            '2007': 1,
            '203': 1,
            '3': 1,
            '9': 1,
            'abil': 1,
            'almost': 1,
            'app': 1,
            'articl': 1,
            'bad': 1,
            'build': 1,
            'busi': 1,
            'campaign': 1,
            'could': 1,
            'current': 1,
            'dabbl': 1,
            'decemb': 1,
            'employ': 1,
            'erp': 1,
            'etc.i': 1,
            'experi': 1,
            'familiar': 1,
            'fan': 1,
            'forward': 1,
            'good': 1,
            'handl': 1,
            'hi': 1,
            'j.': 1,
            'learn': 1,
            'littl': 1,
            'maintain': 1,
            'mani': 1,
            'microsoft': 1,
            'mountain': 1,
            'new': 1,
            'offic': 1,
            'past': 1,
            'pdf': 1,
            'poem': 2,
            'poetri': 1,
            'portfolio': 1,
            'present': 1,
            'prior': 1,
            'product': 1,
            'relationship': 1,
            'reput': 1,
            'servic': 1,
            'sinc': 1,
            'skill': 1,
            'softwar': 1,
            'soon': 1,
            'space': 1,
            'stephen': 1,
            'telemarket': 1,
            'thing': 1,
            'time.i': 1,
            'virtual': 1,
            'well': 1,
            'work': 3,
            'write': 1,
            'writer': 1,
            'written': 1,
            'year': 3,
            'yoga': 1}),
  'M'),
 (FreqDist({'...': 1,
            'convert': 1,
            'design': 1,
            'develop': 2,
            'html/css': 1,
            'plugin': 1,
            'psd': 1,
            'respons': 1,
            'theme': 3,
            'wordpress': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '15.': 1,
            '2': 2,
            'anoth': 1,
            'disast': 1,
            'editor': 1,
            'enjoy': 2,
            'fl': 1,
            'form': 1,
            'increas': 1,
            'knowledg': 1,
            'live': 1,
            'major': 1,
            'need': 1,
            'newspap': 2,
            'one': 1,
            'report': 1,
            'sinc': 1,
            'small': 1,
            'sunni': 1,
            'work': 1,
            'write': 1}),
  'F'),
 (FreqDist({'--': 1,
            '``': 2,
            'account': 1,
            'almost': 1,
            'also': 1,
            'applic': 1,
            'basic': 1,
            'book': 1,
            'cm': 1,
            'compos': 1,
            'comput': 2,
            'computer': 1,
            'coreldraw': 1,
            'creat': 1,
            'custom': 1,
            'data': 2,
            'document': 1,
            'done': 1,
            'drupal': 1,
            'dtp': 2,
            'english': 1,
            'etc': 3,
            'exam': 1,
            'experi': 1,
            'fairli': 1,
            'familiar': 1,
            'filter': 1,
            'format': 2,
            'game': 1,
            'good': 1,
            'googl': 1,
            'great': 1,
            'gujarati': 1,
            'hindi': 1,
            'hundr': 1,
            'includ': 1,
            'internet': 1,
            'joomla': 1,
            'know': 1,
            'languag': 1,
            'made': 1,
            'magic': 1,
            'marathi': 1,
            'master': 1,
            'mess': 1,
            'ms-offic': 2,
            'onlin': 1,
            'paper': 1,
            'photoshop': 1,
            'practic': 1,
            'process': 1,
            'say': 1,
            'search': 1,
            'student': 1,
            'tackl': 1,
            'task': 1,
            'taught': 1,
            'these': 1,
            'thousand': 1,
            'typeset': 1,
            'wordpress': 1,
            'wow': 1}),
  'M'),
 (FreqDist({"'ll": 1,
            '16': 1,
            'assign': 1,
            'assur': 1,
            'back': 1,
            'birth': 1,
            'come': 1,
            'compani': 2,
            'comput': 3,
            'dear': 1,
            'design': 1,
            'experi': 1,
            'fashion': 3,
            'field': 1,
            'financ': 1,
            'free': 1,
            'garment': 1,
            'hardwar': 1,
            'hi': 1,
            'indian': 1,
            'industri': 1,
            'intern': 2,
            'invest': 1,
            'lastli': 1,
            'leadership': 1,
            'manufactur': 1,
            'market': 1,
            'multi': 1,
            'next': 1,
            'profil': 1,
            'program': 1,
            'reader': 1,
            'rest': 1,
            'safe': 1,
            'sale': 1,
            'sam': 1,
            'say': 1,
            'still': 1,
            'sure': 1,
            'time': 1,
            'total': 1,
            'tri': 1,
            'work': 4,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '10': 1,
            '15': 1,
            '2': 1,
            'agenc': 1,
            'air': 1,
            'also': 1,
            'app': 1,
            'argentina': 1,
            'base': 1,
            'brand': 2,
            'bueno': 1,
            'coca-cola': 1,
            'compani': 1,
            'corpor': 1,
            'cours': 1,
            'creativ': 1,
            'custom': 1,
            'dedic': 1,
            'degre': 1,
            'design': 16,
            'digit': 2,
            'ebook': 1,
            'etc': 1,
            'experi': 2,
            'field': 1,
            'focu': 1,
            'freelanc': 2,
            'full-tim': 1,
            'graphic': 2,
            'high': 1,
            'ident': 1,
            'includ': 1,
            'innov': 1,
            'interact': 1,
            'interfac': 1,
            'like': 1,
            'logo': 1,
            'mani': 2,
            'media': 1,
            'mobil': 1,
            'new': 1,
            'notch': 1,
            'number': 1,
            'onlin': 1,
            'portfolio': 1,
            'profession': 1,
            'prototyp': 1,
            'provid': 1,
            'qualiti': 1,
            'relat': 1,
            'reliabl': 1,
            'see': 1,
            'servic': 1,
            'soni': 1,
            'startup': 1,
            'top': 1,
            'ui': 2,
            'user': 2,
            'ux': 2,
            'web': 1,
            'well': 2,
            'wirefram': 1,
            'work': 2,
            'year': 2}),
  'F'),
 (FreqDist({'english': 1,
            'japanes': 1,
            'love': 1,
            'spanish': 1,
            'speak': 1,
            'type': 1,
            'write': 1}),
  'M'),
 (FreqDist({'analog': 1,
            'design': 1,
            'digit': 1,
            'electron': 1,
            'embed': 1,
            'engin': 1,
            'experi': 1,
            'good': 1,
            'set': 1,
            'skill': 1,
            'system': 2}),
  'M'),
 (FreqDist({'app': 1,
            'backend': 1,
            'basic': 1,
            'complex': 1,
            'develop': 1,
            'everyth': 1,
            'frontend': 1,
            'javascript': 1,
            'love': 1,
            'mainli': 1,
            'mysql': 1,
            'php': 1,
            'web': 2,
            'websit': 1,
            'wordpress': 1,
            'work': 1}),
  'M'),
 (FreqDist({'2d': 1,
            'anim': 1,
            'brazil': 1,
            'game': 1,
            'live': 1,
            'name': 1,
            'tradit': 1,
            'web': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'d": 1,
            "'m": 1,
            '4': 1,
            'advanc': 1,
            'alway': 1,
            'camtasia': 1,
            'creat': 2,
            'deadlin': 1,
            'exampl': 1,
            'happi': 1,
            'high': 1,
            'meet': 1,
            'pride': 1,
            'provid': 1,
            'qualiti': 1,
            'request': 1,
            'studio': 1,
            'thank': 1,
            'upon': 1,
            'user': 1,
            'video': 2,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'best': 1,
            'bring': 1,
            'complet': 1,
            'condit': 1,
            'confid': 1,
            'critic': 1,
            'design': 5,
            'enjoy': 1,
            'experi': 1,
            'experienc': 1,
            'frame': 1,
            'good': 1,
            'graphic': 3,
            'hard': 1,
            'hire': 1,
            'mani': 1,
            'output': 1,
            'outsourc': 1,
            'project': 1,
            'promis': 1,
            'respons': 1,
            'stipul': 1,
            'talent': 1,
            'task': 1,
            'time': 1,
            'utmost': 1,
            'within': 1,
            'work': 2,
            'worker': 1,
            'year': 1}),
  'M'),
 (FreqDist({'aliv': 1,
            'api': 1,
            'applic': 2,
            'base': 1,
            'big': 1,
            'bring': 1,
            'cakephp': 1,
            'codeignit': 1,
            'develop': 1,
            'dream': 1,
            'expert': 1,
            'friendli': 1,
            'idea': 1,
            'implement': 1,
            'jqueri': 1,
            'meet': 1,
            'mysql': 1,
            'nepal': 1,
            'see': 1,
            'servic': 1,
            'small': 1,
            'team': 1,
            'tool': 1,
            'us': 1,
            'use': 1,
            'vari': 1,
            'web': 3}),
  'M'),
 (FreqDist({'confid': 1, 'hard': 1, 'worker': 1}), 'M'),
 (FreqDist({'3': 1,
            'also': 1,
            'build': 1,
            'cgi': 1,
            'colleg': 1,
            'css': 1,
            'current': 1,
            'custom': 1,
            'data': 1,
            'design': 1,
            'english': 1,
            'experi': 1,
            'html': 1,
            'industri': 1,
            'java': 1,
            'larg': 1,
            'major': 2,
            'manag': 1,
            'mysql': 1,
            'network': 1,
            'php': 1,
            'scale': 1,
            'servic': 1,
            'technolog': 1,
            'telecom': 1,
            'variou': 1,
            'web': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({"'ve": 1,
            '200': 1,
            '8': 1,
            'develop': 1,
            'includ': 1,
            'intern': 1,
            'jqueri': 1,
            'mysql': 1,
            'past': 1,
            'php': 1,
            'project': 2,
            'web': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'anoth': 1,
            'best': 1,
            'client': 1,
            'compani': 2,
            'dear': 1,
            'deserv': 1,
            'design': 2,
            'freelanc': 1,
            'galleri': 1,
            'inform': 1,
            'make': 1,
            'person': 1,
            'portal': 1,
            'portfolio': 2,
            'profession': 1,
            'remark': 1,
            'see': 1,
            'strive': 1,
            'uniqu': 1,
            'way': 1,
            'work': 1}),
  'F'),
 (FreqDist({'achiev': 1,
            'alway': 1,
            'assur': 1,
            'dedic': 1,
            'given': 1,
            'qualiti': 1,
            'timelin': 1,
            'work': 1}),
  'M'),
 (FreqDist({'extra': 1,
            'find': 1,
            'job': 1,
            'local': 1,
            'money': 1,
            'small': 1,
            'tri': 1,
            'tv': 1,
            'work': 1}),
  'M'),
 (FreqDist({'adob': 1,
            'amount': 1,
            'android': 1,
            'app': 1,
            'balsamiq': 1,
            'brand': 1,
            'build': 1,
            'class': 1,
            'compani': 1,
            'creativ': 1,
            'design': 2,
            'disappoint': 1,
            'dot': 2,
            'experi': 1,
            'expertis': 1,
            'great': 1,
            'hire': 1,
            'icon': 1,
            'illustr': 1,
            'io': 1,
            'keynot': 1,
            'logo': 3,
            'mobil': 2,
            'mock': 1,
            'much': 1,
            'name': 1,
            'photoshop': 1,
            'reach': 1,
            'scratch': 1,
            'sketch': 1,
            'sure': 1,
            'ui': 1,
            'ui/ux': 1,
            'work': 2,
            'world': 1}),
  'M'),
 (FreqDist({'comput': 1,
            'current': 1,
            'develop': 1,
            'especi': 1,
            'experi': 1,
            'frontend': 1,
            'mani': 1,
            'scienc': 1,
            'studi': 1,
            'switzerland': 1,
            'technolog': 1,
            'web': 2,
            'year': 1,
            'young': 1}),
  'M'),
 (FreqDist({'actual': 1,
            'anim': 1,
            'attempt': 1,
            'build': 2,
            'comprehend': 1,
            'connect': 1,
            'daili': 1,
            'design': 4,
            'desktop': 1,
            'develop': 1,
            'digit': 1,
            'experi': 2,
            'film': 1,
            'help': 2,
            'i\\xe2\\u20ac\\u2122m': 1,
            'illustr': 1,
            'individu': 1,
            'interfac': 1,
            'ios/android': 1,
            'know-how': 1,
            'latest': 2,
            'love': 1,
            'make': 1,
            'mind': 1,
            'onlin': 1,
            'other': 1,
            'passion': 1,
            'peopl': 1,
            'pro': 1,
            'ration': 1,
            'real': 1,
            'refus': 1,
            'sens': 1,
            'skill': 1,
            'someth': 1,
            'startup': 1,
            'stun': 1,
            'tool': 1,
            'trend': 1,
            'ui/ux': 1,
            'video': 1,
            'web': 1,
            'websit': 1,
            'wordpress': 2,
            'year': 1}),
  'M'),
 (FreqDist({"''": 1,
            '..': 1,
            '``': 1,
            'add': 1,
            'also': 1,
            'background': 1,
            'banner': 1,
            'base': 1,
            'believ': 1,
            'best': 1,
            'book': 1,
            'club': 1,
            'collect': 1,
            'color': 1,
            'confid': 1,
            'correct': 1,
            'design': 5,
            'edit': 2,
            'etc': 1,
            'experi': 1,
            'expert': 1,
            'fashion': 1,
            'full': 1,
            'garment': 1,
            'graphic': 1,
            'i\\xe2\\u20ac\\u2122m': 1,
            'imag': 1,
            'manipul': 1,
            'much': 1,
            'object': 1,
            'parti': 1,
            'photo': 1,
            'photoshop': 1,
            'poster': 1,
            'profession': 1,
            'remov': 2,
            'respons': 1,
            'retouch': 2,
            't-shirt': 1,
            'theme': 1,
            'type': 1,
            'wear': 2,
            'word': 1,
            'work': 2}),
  'M'),
 (FreqDist({'addit': 1,
            'articl': 1,
            'content': 1,
            'current': 1,
            'edit': 1,
            'english': 1,
            'french': 1,
            'hundr': 1,
            'japanes': 1,
            'music': 1,
            'onlin': 1,
            'proofread': 1,
            'sever': 1,
            'spanish': 1,
            'translat': 1,
            'two': 1,
            'write': 1,
            'writer': 1,
            'written': 1}),
  'M'),
 (FreqDist({'alway': 1,
            'assign': 1,
            'creat': 1,
            'creativ': 1,
            'deliv': 1,
            'ensur': 1,
            'excit': 1,
            'love': 1,
            'new': 1,
            'paper': 1,
            'passion': 1,
            'pleasantli': 1,
            'put': 1,
            'soul': 1,
            'surpris': 1,
            'task': 1,
            'thank': 1,
            'whenev': 1,
            'world': 2,
            'write': 1}),
  'M'),
 (FreqDist({'3': 1,
            '5+': 1,
            'american': 1,
            'applic': 1,
            'best': 2,
            'brand': 2,
            'challeng': 1,
            'classifi': 1,
            'client': 1,
            'compani': 1,
            'competit': 1,
            'content': 1,
            'cover': 2,
            'develop': 2,
            'end': 1,
            'european': 1,
            'execut': 1,
            'experi': 1,
            'experienc': 1,
            'extens': 1,
            'fashion': 1,
            'financ': 1,
            'given': 1,
            'high': 1,
            'includ': 1,
            'increas': 1,
            'industry.i': 1,
            'insight': 1,
            'intern': 1,
            'landscap': 1,
            'love': 1,
            'mani': 1,
            'market': 4,
            'media': 1,
            'mobil': 1,
            'money': 1,
            'mortgag': 1,
            'onlin': 2,
            'optim': 1,
            'pleasur': 1,
            'possibl': 1,
            'presenc': 1,
            'properti': 1,
            'save': 1,
            'search': 1,
            'seo': 1,
            'social': 1,
            'strategi': 1,
            'success': 1,
            'travel': 1,
            'uk': 1,
            'vertic': 1,
            'work': 4,
            'year': 2}),
  'M'),
 (FreqDist({'api': 1,
            'applic': 1,
            'architectur': 1,
            'aw': 1,
            'busi': 1,
            'capac': 2,
            'cdn': 1,
            'cloud': 2,
            'compani': 2,
            'demand': 1,
            'design': 1,
            'develop': 1,
            'either': 1,
            'enterpris': 1,
            'even': 1,
            'experienc': 1,
            'fruit': 1,
            'gateway': 1,
            'googl': 1,
            'guru': 1,
            'individu': 1,
            'invest': 1,
            'kind': 1,
            'larg': 1,
            'level': 1,
            'load': 1,
            'love': 3,
            'mainten': 1,
            'make': 1,
            'manag': 2,
            'mid-level': 1,
            'mongodb': 1,
            'mostli': 1,
            'nodej': 1,
            'php': 1,
            'platform': 3,
            'profession': 1,
            'programm': 1,
            'project': 1,
            'scalabl': 1,
            'scale': 1,
            'secur': 1,
            'small': 1,
            'solut': 1,
            'storag': 1,
            'sustain': 1,
            'web': 1,
            'whole': 1,
            'work': 2,
            'would': 1}),
  'M'),
 (FreqDist({'14': 1,
            '2d': 1,
            '3d': 1,
            'anim': 1,
            'architectur': 1,
            'design': 1,
            'experi': 1,
            'graphic': 1,
            'industri': 1,
            'logo': 1,
            'media': 1,
            'motion': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'15': 5,
            'ago': 5,
            'c++': 5,
            'guy': 5,
            'linux': 1,
            'php': 5,
            'sinc': 5,
            'sql': 1,
            'sqllinux': 4,
            'year': 5}),
  'M'),
 (FreqDist({"'s": 1,
            '.net': 1,
            'asp': 1,
            'asp.net': 1,
            'beyond': 1,
            'c/c': 1,
            'casino': 1,
            'corpor': 1,
            'databas': 1,
            'done': 1,
            'expect': 1,
            'financ': 1,
            'first': 1,
            'get': 1,
            'group': 1,
            'host': 1,
            'joomla': 1,
            'lot': 1,
            'manag': 1,
            'mortgag': 1,
            'mysql': 1,
            'one': 1,
            'oracl': 2,
            'perform': 1,
            'php': 1,
            'profession': 1,
            'roof': 1,
            'script': 1,
            'tech': 1,
            'techi': 1,
            'work': 1,
            'would': 1}),
  'M'),
 (FreqDist({'2007': 1,
            'advertis': 1,
            'also': 2,
            'around': 1,
            'auckland': 1,
            'avail': 1,
            'base': 1,
            'basi': 1,
            'cat': 1,
            'clock': 1,
            'conveni': 1,
            'cover': 1,
            'current': 1,
            'daili': 1,
            'day': 1,
            'design': 1,
            'differ': 1,
            'discuss': 1,
            'document': 1,
            'end': 1,
            'financi': 1,
            'first': 1,
            'free': 1,
            'freelanc': 1,
            'get': 1,
            'happi': 1,
            'hesit': 1,
            'highli': 1,
            'immedi': 1,
            'industri': 1,
            'italian': 2,
            'legal': 2,
            'local': 1,
            'manag': 1,
            'might': 1,
            'nativ': 1,
            'new': 1,
            'perform': 1,
            'pleas': 1,
            'press': 1,
            'profession': 1,
            'project': 3,
            'quit': 1,
            'receiv': 1,
            'releas': 1,
            'reliabl': 1,
            'respons': 1,
            'script': 2,
            'show': 1,
            'sinc': 1,
            'sites.i': 1,
            'specif': 1,
            'technic': 1,
            'test': 1,
            'text': 2,
            'therefor': 1,
            'time': 3,
            'tools.i': 1,
            'touch': 1,
            'trado': 1,
            'translat': 6,
            'trial': 1,
            'urgent': 1,
            'use': 1,
            'varieti': 1,
            'web': 1,
            'work': 3,
            'zealand': 1,
            'zone': 3}),
  'F'),
 (FreqDist({'expos': 1,
            'field': 1,
            'freelanc': 1,
            'give': 1,
            'knowledg': 1,
            'need': 1,
            'new': 1,
            'opportun': 1,
            'pleas': 1,
            'work': 1}),
  'M'),
 (FreqDist({"''": 1,
            '1': 1,
            '1981': 1,
            '19th': 1,
            '32': 1,
            '5.': 1,
            '7.': 1,
            '\\xe2\\u20ac\\u201c': 2,
            'administr': 1,
            'agre': 1,
            'also': 1,
            'among': 1,
            'arabia': 1,
            'arteri': 1,
            'articl': 1,
            'basic': 1,
            'build': 1,
            'busi': 1,
            'cancer': 1,
            'certif': 1,
            'chief': 1,
            'china': 1,
            'comput': 1,
            'continu': 1,
            'control': 1,
            'develop': 1,
            'diagnosi': 1,
            'diploma': 1,
            'diseas': 1,
            'dissert': 1,
            'dutch': 1,
            'dynam': 1,
            'e': 1,
            'engin': 2,
            'english': 1,
            'excel': 1,
            'experi': 1,
            'exploit': 1,
            'form': 1,
            'freelanc': 1,
            'given': 1,
            'globe': 1,
            'health': 4,
            'help': 1,
            'human': 1,
            'introduct': 1,
            'januari': 1,
            'journal': 2,
            'knowledg': 1,
            'learn': 1,
            'manag': 2,
            'medic': 2,
            'method': 1,
            'ministri': 1,
            'motion': 1,
            'new': 1,
            'nois': 1,
            'other': 1,
            'paper': 1,
            'pass': 1,
            'patient': 1,
            'peripher': 1,
            'polici': 1,
            'post-gradu': 1,
            'pp': 1,
            'precis': 1,
            'profession.i': 1,
            'program': 1,
            'publish': 2,
            'rapport': 1,
            'research': 3,
            'retir': 2,
            'review': 1,
            'saudi': 1,
            'scienc': 1,
            'sever': 2,
            'strateg': 1,
            'student': 1,
            'top': 1,
            'topic': 1,
            'uk': 1,
            'us': 1,
            'way': 1,
            'windowsnt': 1,
            'woman': 1,
            'workbook': 2,
            'worker': 1,
            'write': 2,
            'writer': 1,
            'year': 1,
            'zealand': 1}),
  'M'),
 (FreqDist({'4': 1,
            '5': 1,
            'adult': 1,
            'avail': 1,
            'biggest': 1,
            'budapest': 1,
            'children': 1,
            'co.': 1,
            'commun': 1,
            'concept': 1,
            'convey': 1,
            'custom': 1,
            'document': 1,
            'english': 1,
            'esl': 1,
            'experi': 3,
            'foreign': 1,
            'hungari': 1,
            'hungarian': 2,
            'idea': 1,
            'languag': 2,
            'manag': 1,
            'materi': 1,
            'motiv': 1,
            'nativ': 1,
            'necessari': 1,
            'offic': 1,
            'one': 1,
            'sampl': 1,
            'self': 1,
            'servic': 1,
            'skill': 1,
            'teach': 1,
            'trade': 1,
            'translat': 4,
            'work': 1,
            'year': 2}),
  'F'),
 (FreqDist({'5+': 1,
            '\\xe2\\u20ac\\xa2': 2,
            'area': 1,
            'assur': 1,
            'base': 1,
            'compani': 1,
            'content': 1,
            'custom': 2,
            'design': 1,
            'develop': 2,
            'e-commerc': 1,
            'end': 2,
            'enterpris': 2,
            'experi': 1,
            'follow': 1,
            'includ': 1,
            'java\\xe2\\u20ac\\xa2': 1,
            'learn': 1,
            'manag': 1,
            'management\\xe2\\u20ac\\xa2': 2,
            'microsoft': 4,
            'offer': 1,
            'offshor': 1,
            'open': 1,
            'platform': 1,
            'point': 1,
            'project': 1,
            'provid': 1,
            'qa': 1,
            'qualiti': 1,
            'rang': 2,
            'relationship': 1,
            'resourc': 1,
            'share': 1,
            'softwar': 3,
            'solut': 2,
            'solutions\\xe2\\u20ac\\xa2': 2,
            'sourc': 1,
            'system\\xe2\\u20ac\\xa2': 1,
            'technolog': 1,
            'testing\\xe2\\u20ac\\xa2': 1,
            'web': 1,
            'wide': 1,
            'year': 1}),
  'M'),
 (FreqDist({'-1.': 1,
            '40': 1,
            'a.': 1,
            'cost': 1,
            'data': 1,
            'deliv': 1,
            'desktop': 1,
            'energi': 1,
            'engin': 1,
            'engineer2': 1,
            'expertis': 1,
            'hii': 1,
            'industri': 2,
            'manag': 1,
            'market': 1,
            'master': 1,
            'mcp': 1,
            'mechan': 1,
            'person': 1,
            'power': 1,
            'process': 1,
            'qualiti': 1,
            'support': 3,
            'team': 2,
            'time': 1,
            'work': 2}),
  'F'),
 (FreqDist({"'m": 1,
            '...': 1,
            '20': 1,
            'administr': 2,
            'cm': 1,
            'comput': 1,
            'design': 1,
            'internet': 1,
            'joomla': 1,
            'microsoft': 1,
            'name': 1,
            'offic': 1,
            'photographi': 1,
            'research': 1,
            'skill': 1,
            'top': 1,
            'web': 1,
            'wordpress': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '18': 1,
            '8': 1,
            'compact': 1,
            'corpor': 1,
            'design': 5,
            'disc': 1,
            'exper': 1,
            'experi': 2,
            'forward': 1,
            'freelanc': 1,
            'graphic': 1,
            'help': 1,
            'imag': 1,
            'interact': 1,
            'logo': 1,
            'look': 1,
            'mora': 1,
            'need': 1,
            'put': 1,
            'rang': 1,
            'servic': 1,
            'sinc': 1,
            'web': 1,
            'wide': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'d": 1,
            "'ll": 2,
            "'re": 1,
            "'s": 1,
            'adob': 1,
            'autom': 1,
            'back': 1,
            'bring': 1,
            'busi': 4,
            'campaign': 1,
            'creation': 1,
            'css': 1,
            'custom': 1,
            'design-': 1,
            'dive': 1,
            'end': 1,
            'eye': 1,
            'foundat': 1,
            'get': 1,
            'graphic': 1,
            'grow': 1,
            'hand': 1,
            'hear': 1,
            'help': 1,
            'html': 1,
            'illustr': 1,
            'includ': 1,
            'indesign': 1,
            'land': 1,
            'limit': 1,
            'love': 1,
            'manag': 2,
            'market': 1,
            'media': 1,
            'membership': 1,
            'oper': 1,
            'page': 1,
            'photoshop': 1,
            'place': 1,
            'plan': 1,
            'process': 2,
            'product': 1,
            'review': 1,
            'scale': 1,
            'set': 3,
            'setup': 1,
            'site': 1,
            'skill': 1,
            'social': 1,
            'someth': 1,
            'special': 1,
            'standard': 1,
            'system': 1,
            'take': 1,
            'team': 1,
            'time': 1,
            'togeth': 1,
            'webinar': 1,
            'websit': 1,
            'work': 1,
            'world': 1}),
  'F'),
 (FreqDist({'2.0': 1,
            '7': 1,
            'adob': 1,
            'ajax': 1,
            'also': 1,
            'area': 1,
            'build': 1,
            'busi': 1,
            'business.i': 1,
            'compani': 1,
            'compet': 1,
            'complet': 1,
            'core': 1,
            'css3': 1,
            'design': 1,
            'develop': 2,
            'dhtml': 1,
            'dnn': 1,
            'dot': 1,
            'dream': 1,
            'end-end': 1,
            'experi': 1,
            'follow': 1,
            'good': 1,
            'ground': 1,
            'html5': 1,
            'includ': 1,
            'jqueri': 1,
            'last': 1,
            'lie': 1,
            'manag': 1,
            'mysql': 1,
            'net': 1,
            'new': 1,
            'nuke': 1,
            'oop': 1,
            'opportun': 1,
            'photoshop': 1,
            'php': 1,
            'project': 1,
            'rang': 1,
            'seek': 1,
            'site': 1,
            'small': 1,
            'softwar': 1,
            'sql': 1,
            'start': 1,
            'test': 1,
            'use': 1,
            'weaver': 1,
            'web': 1,
            'websit': 2,
            'wide': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'ll": 1,
            "'m": 1,
            "'s": 1,
            '1985.': 1,
            '2009.': 1,
            'absolut': 1,
            'accur': 1,
            'ad': 1,
            'add': 1,
            'aim': 1,
            'alway': 1,
            'articl': 2,
            'aspect': 1,
            'assign': 2,
            'auckland': 1,
            'august': 1,
            'bachelor': 1,
            'blog': 1,
            'born': 1,
            'ca': 1,
            'color': 1,
            'confid': 1,
            'content': 2,
            'copi': 1,
            'copywrit': 1,
            'definit': 1,
            'degre': 1,
            'delight': 1,
            'deliv': 1,
            'ebook': 1,
            'everi': 1,
            'experi': 1,
            'expertli': 1,
            'feel': 1,
            'fiji': 2,
            'freelanc': 1,
            'gener': 1,
            'give': 1,
            'great': 1,
            'hardwork': 1,
            'high': 2,
            'honest': 1,
            'includ': 1,
            'interest': 1,
            'island': 1,
            'life': 1,
            'march': 1,
            'money': 1,
            'motiv': 1,
            "n't": 1,
            'new': 2,
            'newslett': 1,
            'occasion': 1,
            'passion': 1,
            'post': 1,
            'power': 1,
            'pride': 1,
            'produc': 1,
            'project': 1,
            'pursu': 1,
            'qualiti': 1,
            'rather': 1,
            'read': 1,
            'requir': 1,
            'research': 1,
            'self': 1,
            'seo': 1,
            'sinc': 1,
            'someth': 3,
            'specialti': 1,
            'standard': 1,
            'structur': 1,
            'studi': 1,
            'subject': 1,
            'submit': 1,
            'take': 3,
            'technolog': 1,
            'tell': 1,
            'times.i': 1,
            'univers': 1,
            'wast': 1,
            'way': 1,
            'web': 1,
            'well': 1,
            'whatev': 1,
            'work': 3,
            'worth': 1,
            'write': 2,
            'written': 1,
            'zealand': 1}),
  'F'),
 (FreqDist({'12': 1,
            '15': 1,
            'account': 1,
            'comput': 1,
            'cpa': 1,
            'excel': 1,
            'experi': 1,
            'properti': 1,
            'softwar': 1,
            'year': 2}),
  'M'),
 (FreqDist({"'m": 1, 'app': 1, 'develop': 1, 'mobil': 1, 'web': 1}), 'M'),
 (FreqDist({'4': 1,
            'certifi': 1,
            'crm': 2,
            'develop': 2,
            'dynam': 1,
            'experi': 1,
            'ms': 2,
            'yr': 1}),
  'M'),
 (FreqDist({'cm': 1,
            'develop': 1,
            'host': 1,
            'seo': 1,
            'special': 1,
            'virtuemart': 1,
            'websit': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'d": 1,
            "'m": 1,
            '12': 1,
            'abil': 2,
            'abl': 1,
            'accomplish': 2,
            'account': 1,
            'adapt': 1,
            'apt': 1,
            'back': 1,
            'background': 1,
            'best': 2,
            'brochur': 1,
            'budget': 2,
            'busi': 2,
            'class': 1,
            'client': 1,
            'commun': 1,
            'comput': 1,
            'conclus': 1,
            'conscienti': 1,
            'contact': 1,
            'convers': 1,
            'creativ': 1,
            'data': 2,
            'deadlin': 2,
            'design-': 3,
            'detail': 1,
            'directli': 1,
            'document': 1,
            'dreamweaver-': 1,
            'effect': 1,
            'endeavor': 1,
            'enthusiasm': 1,
            'entry-': 1,
            'excel': 1,
            'expertis': 1,
            'extract': 1,
            'fast': 1,
            'feel': 1,
            'field': 1,
            'first': 1,
            'focus': 1,
            'free': 1,
            'freelanc': 1,
            'fuse': 1,
            'get': 1,
            'goal': 2,
            'googl': 1,
            'graphic': 1,
            'highli': 1,
            'hire': 1,
            'hour': 1,
            'html-': 1,
            'humor': 1,
            'includ': 1,
            'internet': 1,
            'known': 1,
            'linkedin-': 1,
            'love': 1,
            'manag': 1,
            'meet': 1,
            'ms': 1,
            'multipl': 1,
            'object': 1,
            'organ': 2,
            'orient': 2,
            'photoshop': 1,
            'pleas': 1,
            'priorit': 1,
            'prioriti': 1,
            'processing-': 1,
            'provid': 2,
            'question': 1,
            'research-': 1,
            'result': 1,
            'satisfact': 1,
            'scienc': 1,
            'search-': 1,
            'self': 1,
            'servic': 1,
            'set': 1,
            'skill': 2,
            'spreadsheet': 1,
            'starter': 1,
            'task': 1,
            'therefor': 1,
            'tight': 1,
            'time': 1,
            'time-': 1,
            'varieti': 1,
            'versatil': 1,
            'websit': 1,
            'websites-': 1,
            'within': 1,
            'work': 1}),
  'M'),
 (FreqDist({'awar': 1,
            'busi': 2,
            'cheap': 1,
            'compani': 1,
            'demand': 1,
            'develop': 1,
            'dynam': 1,
            'effect': 1,
            'effici': 1,
            'engin': 2,
            'give': 1,
            'good': 1,
            'high': 1,
            'look': 1,
            'provid': 1,
            'rank': 1,
            'search': 2,
            'seo': 1,
            'solut': 3,
            'suitabl': 1,
            'therefor': 1,
            'web': 2,
            'well': 1}),
  'M'),
 (FreqDist({'c': 1,
            'develop': 1,
            'experienc': 1,
            'learn': 1,
            'machin': 1,
            'process': 1,
            'python': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '10': 1,
            '110': 1,
            'adword': 1,
            'android': 4,
            'api': 1,
            'app': 4,
            'applic': 4,
            'applications-': 1,
            'backend': 1,
            'best': 1,
            'book': 1,
            'client': 1,
            'complet': 2,
            'content': 1,
            'creation': 1,
            'custom': 1,
            'deliveri': 1,
            'design': 1,
            'develop': 5,
            'development-': 3,
            'email': 1,
            'engin': 1,
            'engine-': 1,
            'extra': 1,
            'feel': 1,
            'free': 1,
            'give': 1,
            'googl': 1,
            'import': 1,
            'infograph': 1,
            'inform': 1,
            'io': 2,
            'manag': 1,
            'marketing-': 3,
            'messag': 1,
            'mobil': 2,
            'optim': 1,
            'passion': 1,
            'port': 2,
            'portal': 1,
            'promotion-': 1,
            'question': 1,
            'satisfact': 1,
            'search': 1,
            'send': 1,
            'seo': 1,
            'servic': 1,
            'share': 1,
            'softwar': 2,
            'solut': 2,
            'solution-': 1,
            'support.-': 1,
            'system-': 1,
            'test': 2,
            'us': 2,
            'web': 3,
            'work': 1}),
  'M'),
 (FreqDist({"'m": 1,
            "'ve": 1,
            '30': 1,
            '\\\\': 1,
            'awesom': 1,
            'cairo': 1,
            'career': 1,
            'craft': 1,
            'current': 1,
            'egypt': 1,
            'enthusiast': 1,
            'hi': 1,
            'home': 1,
            'influenc': 1,
            'live': 1,
            'mani': 1,
            'name': 1,
            'old': 1,
            'profession': 1,
            'project': 1,
            'spend': 1,
            'technolog': 1,
            'thing': 1,
            'time': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'also': 1,
            'asp.net': 1,
            'c': 1,
            'done': 1,
            'like': 1,
            'microsoft': 1,
            'ms': 1,
            'offic': 1,
            'php': 1,
            'project': 1,
            'server': 1,
            'skill': 1,
            'sql': 1,
            'ssi': 1,
            'ssr': 1,
            'technolog': 1}),
  'M'),
 (FreqDist({"'m": 4,
            '1983': 1,
            '3': 1,
            'account': 1,
            'algol': 1,
            'almost': 1,
            'applic': 2,
            'associ': 1,
            'better': 1,
            'c': 1,
            'citizen': 1,
            'class': 1,
            'client': 1,
            'commun': 1,
            'compani': 1,
            'convers': 1,
            'danish': 1,
            'delphi': 1,
            'done': 1,
            'dotnetnuk': 1,
            'drupal': 1,
            'els': 1,
            'embed': 1,
            'everybodi': 1,
            'follow': 1,
            'forth': 1,
            'fortran': 1,
            'found': 1,
            'get': 2,
            'happi': 1,
            'hat': 1,
            'host': 2,
            'hous': 1,
            'joomla': 1,
            'keep': 1,
            'kind': 2,
            'known': 1,
            'languag': 1,
            'like': 3,
            'live': 1,
            'magento': 1,
            'mani': 3,
            'method': 2,
            'microprocessor': 1,
            'more.i': 1,
            'much': 1,
            'network': 1,
            'ocommerc': 1,
            'one': 1,
            'pascal': 1,
            'profession': 1,
            'program': 3,
            'programm': 1,
            'protocol': 1,
            'result': 2,
            'seo': 2,
            'setup': 1,
            'sinc': 1,
            'softwar': 2,
            'special': 1,
            'std': 1,
            'structur': 1,
            'surveil': 1,
            'tag': 1,
            'techniqu': 1,
            'text': 1,
            'thing': 1,
            'thorough': 1,
            'titl': 1,
            'top': 1,
            'use': 1,
            'way': 1,
            'white': 1,
            'wordpress': 1,
            'work': 6,
            'world': 1,
            'year': 1,
            'years.i': 1}),
  'M'),
 (FreqDist({'2001': 1,
            '2005': 4,
            '2006': 2,
            '2008': 5,
            '2009': 2,
            '2010': 2,
            '65': 1,
            '\\t': 13,
            '\\xe2\\u20ac\\u201c': 7,
            '\\xe2\\u20ac\\xa2\\tparticip': 1,
            '\\xe2\\u20ac\\xa2\\tprofici': 1,
            'activ': 1,
            'administr': 1,
            'advanc': 1,
            'also': 1,
            'appoint': 2,
            'appropri': 1,
            'approxim': 1,
            'arriv': 1,
            'assist': 1,
            'attend': 1,
            'attent': 1,
            'avail': 1,
            'barron': 2,
            'basi': 1,
            'busi': 2,
            'check': 1,
            'choir': 2,
            'class': 1,
            'client': 2,
            'club': 1,
            'code': 1,
            'colleg': 1,
            'collier': 2,
            'complet': 1,
            'comput': 1,
            'correct': 1,
            'cours': 1,
            'custom': 1,
            'customers\\xe2\\u20ac\\u2122': 1,
            'deadlin': 1,
            'degre': 1,
            'deliv': 2,
            'depart': 1,
            'design': 1,
            'diploma': 1,
            'director': 1,
            'dish': 1,
            'drama': 1,
            'effici': 1,
            'ensur': 2,
            'equal': 1,
            'everi': 1,
            'excel': 2,
            'experi': 1,
            'file': 1,
            'find': 1,
            'first': 1,
            'fl': 3,
            'fraud': 1,
            'french': 1,
            'fresh': 1,
            'friendli': 1,
            'furnish': 1,
            'get': 1,
            'govern': 1,
            'gpa': 1,
            'graphic': 1,
            'guest': 2,
            'head': 1,
            'hewitt': 1,
            'high': 3,
            'highest': 1,
            'hollywood': 1,
            'honor': 2,
            'hotlin': 1,
            'hour': 1,
            'html': 1,
            'human': 1,
            'i.e': 1,
            'inform': 3,
            'innov': 1,
            'input': 1,
            'inspect': 1,
            'involv': 1,
            'italian': 1,
            'jan.': 4,
            'job': 1,
            'jrotc': 2,
            'juli': 1,
            'leader': 3,
            'leadership': 1,
            'letter': 1,
            'list': 2,
            'long': 2,
            'maintain': 1,
            'manag': 1,
            'march': 1,
            'may': 1,
            'member': 1,
            'met': 2,
            'miami': 2,
            'microsoft': 1,
            'multi-task': 1,
            'napl': 2,
            'new': 2,
            'nile': 1,
            'nov.': 4,
            'ny': 1,
            'oh': 5,
            'oper': 1,
            'order': 2,
            'page': 1,
            'payrol': 1,
            'perform': 1,
            'person': 1,
            'phone': 1,
            'pleas': 1,
            'posit': 1,
            'powerpoint': 1,
            'prepar': 1,
            'present': 1,
            'pressur': 1,
            'product': 1,
            'program': 1,
            'provid': 1,
            'rank': 1,
            'receiv': 4,
            'refer': 1,
            'reform': 1,
            'refund': 1,
            'regular': 1,
            'report': 1,
            'request': 1,
            'requir': 1,
            'resourc': 1,
            'restaur': 1,
            'return': 2,
            'rigid': 1,
            'sale': 1,
            'satisfact': 1,
            'satisfi': 1,
            'schedul': 1,
            'school': 2,
            'second': 1,
            'section': 2,
            'sept.': 1,
            'set': 1,
            'shift': 1,
            'skill': 2,
            'spanish': 1,
            'special': 1,
            'succeed': 1,
            'tabl': 2,
            'take': 1,
            'task': 1,
            'tax': 3,
            'theater': 1,
            'time': 1,
            'toward': 1,
            'union': 1,
            'updat': 1,
            'upon': 1,
            'use': 2,
            'variou': 3,
            'varsiti': 2,
            'web': 1,
            'weekli': 1,
            'west': 1,
            'without': 1,
            'word': 1,
            'work': 3,
            'would': 1,
            'wpm': 1,
            'year': 2,
            'york': 1}),
  'M'),
 (FreqDist({"'s": 1,
            'also': 1,
            'alway': 1,
            'applic': 1,
            'belgrad': 1,
            'believ': 1,
            'compani': 1,
            'consid': 1,
            'couchdb': 1,
            'data': 1,
            'develop': 1,
            'distribut': 1,
            'emerg': 1,
            'especi': 1,
            'javascript': 1,
            'librari': 1,
            'like': 1,
            'locat': 1,
            'mani': 1,
            'model': 1,
            'nosql': 1,
            'one': 1,
            'page': 1,
            'prove': 1,
            'recommend': 2,
            'relat': 1,
            'reliabl': 1,
            'run': 1,
            'sens': 1,
            'serbia': 1,
            'site': 1,
            'softwar': 1,
            'solut': 2,
            'special': 1,
            'store': 1,
            'system': 1,
            'technolog': 1,
            'today': 1,
            'tradit': 1,
            'valu': 1,
            'web': 1,
            'world': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '2009': 1,
            'also': 1,
            'android': 1,
            'app': 1,
            'english': 1,
            'experienc': 1,
            'freelanc': 1,
            'game': 1,
            'german': 1,
            'good': 1,
            'html': 1,
            'inform': 1,
            'io': 1,
            'knowledg': 1,
            'languag': 1,
            'local': 1,
            'mobil': 1,
            'nativ': 1,
            'perform': 1,
            'phone': 1,
            'php': 1,
            'plain': 1,
            'platforms.i': 1,
            'portugues': 2,
            'relat': 1,
            'sinc': 1,
            'special': 1,
            'support': 1,
            'text': 1,
            'translat': 3,
            'visit': 1,
            'websit': 1,
            'window': 1}),
  'M'),
 (FreqDist({"''": 1,
            '12': 1,
            '8': 1,
            '800': 1,
            '``': 1,
            'across': 1,
            'adult': 1,
            'alway': 2,
            'articles-': 1,
            'audienc': 1,
            'blog': 1,
            'break': 1,
            'busi': 2,
            'captiv': 1,
            'compat': 1,
            'content': 3,
            'content-': 4,
            'deliv': 3,
            'descriptions-': 1,
            'develop': 1,
            'easi': 1,
            'effort': 1,
            'freelanc': 1,
            'good': 1,
            'great': 1,
            'internet': 1,
            'keyword': 2,
            'make': 1,
            'market': 2,
            'media': 1,
            "n't": 1,
            'need': 1,
            'nich': 1,
            'offer': 1,
            'onlin': 2,
            'posts-': 2,
            'press': 1,
            'product': 1,
            'project': 1,
            'punctual': 1,
            'read': 1,
            'releas': 1,
            'requir': 1,
            'research': 1,
            'sale': 2,
            'seo': 1,
            'services-': 1,
            'social': 1,
            'success': 1,
            'uniqu': 1,
            'web': 1,
            'write': 1,
            'year': 2}),
  'M'),
 (FreqDist({"'ll": 1,
            "'s": 1,
            '3d': 2,
            '8': 1,
            'achiev': 1,
            'architectur': 1,
            'bottom': 1,
            'brand': 2,
            'bring': 1,
            'budgetari': 1,
            'build': 1,
            'case': 1,
            'client': 1,
            'compani': 1,
            'concept': 1,
            'constraint': 1,
            'continu': 1,
            'creativ': 1,
            'design': 4,
            'develop': 1,
            'display': 1,
            'dynam': 1,
            'enjoy': 1,
            'event': 2,
            'exhibit': 1,
            'experi': 1,
            'explain': 1,
            'exterior': 1,
            'give': 1,
            'graphic': 1,
            'guidelin': 1,
            'hello': 1,
            'hope': 2,
            'idea': 1,
            'includ': 1,
            'india': 1,
            'interior': 1,
            'intern': 1,
            'jargon': 1,
            'job': 1,
            'kiosk': 1,
            'let': 1,
            'limit': 1,
            'line': 1,
            'offer': 1,
            'order': 1,
            'posit': 1,
            'regard': 1,
            'respons': 1,
            'retail': 1,
            'seeker': 1,
            'servic': 1,
            'space': 2,
            'stage': 1,
            'stall': 1,
            'success': 1,
            'talk': 1,
            'trust': 1,
            'venu': 2,
            'vimal': 1,
            'visual': 2,
            'warm': 1,
            'work': 3,
            'year': 1}),
  'M'),
 (FreqDist({'done': 1,
            'extra': 1,
            'get': 1,
            'go': 1,
            'hardwork': 1,
            'job': 1,
            'mile': 1,
            'profession': 1,
            'will': 1}),
  'F'),
 (FreqDist({'05': 1,
            'content': 1,
            'electr': 1,
            'engin': 1,
            'experi': 1,
            'good': 1,
            'ms': 1,
            'offic': 1,
            'profession': 1,
            'skill': 1,
            'telecommun': 1,
            'year': 1}),
  'M'),
 (FreqDist({'--': 3,
            '.net': 2,
            '/sql': 3,
            '100': 1,
            '10th': 1,
            '11': 1,
            '12th': 2,
            '13': 1,
            '14': 1,
            '15th': 1,
            '18th': 1,
            '1995': 1,
            '1997': 1,
            '1998': 3,
            '1st': 2,
            '2000': 2,
            '2001': 2,
            '2002': 2,
            '2003': 2,
            '2004': 4,
            '2005': 3,
            '2005.': 1,
            '2006': 4,
            '2007': 3,
            '2008': 3,
            '20th': 3,
            '21': 1,
            '21st': 1,
            '24th': 2,
            '25th': 1,
            '27': 1,
            '27th': 1,
            '2nd': 1,
            '3': 2,
            '30th': 5,
            '31st': 4,
            '3rd': 2,
            '5': 3,
            '50': 1,
            '5th': 1,
            '6': 4,
            '6th': 1,
            '7': 2,
            '7th': 1,
            '9': 3,
            '9001:2000': 4,
            'abil': 1,
            'achiev': 1,
            'acquaint': 1,
            'activ': 2,
            'analysi': 3,
            'applic': 2,
            'apr': 2,
            'april': 2,
            'asp': 1,
            'asp.net': 1,
            'assur': 1,
            'australia': 1,
            'australian': 2,
            'backup': 1,
            'base': 1,
            'basic': 1,
            'big': 1,
            'british': 2,
            'busi': 2,
            'c': 2,
            'career': 2,
            'certif': 1,
            'client': 5,
            'client-serv': 2,
            'code': 1,
            'compani': 6,
            'complet': 2,
            'configur': 1,
            'consult': 4,
            'coordin': 1,
            'craft': 1,
            'cross-funct': 1,
            'cyber': 1,
            'cycl': 2,
            'czech': 2,
            'data': 1,
            'dec': 2,
            'decemb': 1,
            'decent': 1,
            'dedic': 1,
            'demonstr': 1,
            'design': 5,
            'develop': 7,
            'differ': 1,
            'divers': 2,
            'dutch': 1,
            'energet': 1,
            'entir': 1,
            'etc': 2,
            'except': 1,
            'experi': 5,
            'experienc': 1,
            'export': 1,
            'exposur': 3,
            'fairli': 1,
            'fast': 1,
            'februari': 1,
            'focu': 1,
            'follow-through': 1,
            'formerli': 2,
            'franc': 1,
            'full': 1,
            'gamma': 1,
            'gener': 1,
            'germani': 1,
            'global': 1,
            'group': 1,
            'grow': 2,
            'handl': 1,
            'hardcor': 1,
            'hardwar': 1,
            'highli': 1,
            'hospit': 1,
            'hous': 3,
            'implement': 2,
            'includ': 1,
            'india': 4,
            'inform': 1,
            'infosystem': 1,
            'intrasoft': 1,
            'involv': 2,
            'iso': 4,
            'jan': 2,
            'januari': 1,
            'javascript': 1,
            'jul': 1,
            'jun': 1,
            'june': 1,
            'kanika': 2,
            'knowledg': 2,
            'known': 1,
            'languag': 1,
            'larg': 1,
            'lead': 2,
            'leader': 2,
            'leader/manag': 3,
            'level': 2,
            'life': 1,
            'limit': 10,
            'logic': 1,
            'ltd.': 9,
            'major': 1,
            'manag': 21,
            'mar': 1,
            'march': 2,
            'matrix': 1,
            'may': 4,
            'meet': 1,
            'model': 1,
            'month': 10,
            'motiv': 1,
            'multin': 1,
            'multipl': 3,
            'n': 1,
            'need': 1,
            'netherland': 1,
            'next': 1,
            'nov': 2,
            'oct': 2,
            'octob': 2,
            'organ': 2,
            'oversea': 1,
            'p': 1,
            'physic': 1,
            'platform': 1,
            'possess': 1,
            'privat': 4,
            'process': 1,
            'profession': 2,
            'program': 1,
            'programm': 3,
            'project': 24,
            'proven': 1,
            'pti': 2,
            'pvt': 7,
            'qualiti': 1,
            'rdbm': 1,
            'record': 1,
            'relat': 1,
            'republ': 1,
            'schedul': 1,
            'sei': 1,
            'senior': 3,
            'sep': 1,
            'sept': 2,
            'server': 5,
            'servic': 1,
            'sever': 1,
            'size': 1,
            'skill': 1,
            'small': 1,
            'softwar': 11,
            'solut': 5,
            'spider': 1,
            'sql': 2,
            'success': 1,
            'summari': 1,
            'support': 1,
            'system': 7,
            'team': 2,
            'technic': 1,
            'techniqu': 1,
            'technolog': 2,
            'throughout': 1,
            'time': 1,
            'tool': 2,
            'track': 1,
            'uk': 2,
            'understand': 1,
            'us': 1,
            'usa': 1,
            'use': 1,
            'variou': 2,
            'vb.net': 1,
            'vision': 1,
            'visual': 1,
            'web': 2,
            'well': 2,
            'work': 18,
            'year': 7}),
  'M'),
 (FreqDist({'look': 1, 'pleas': 1, 'visit': 1, 'websit': 1, 'work': 1}), 'F'),
 (FreqDist({'1-year': 2,
            '2': 1,
            'administr': 1,
            'algebra': 1,
            'bachelor': 1,
            'busi': 2,
            'compani': 1,
            'corel': 1,
            'econom': 1,
            'english': 2,
            'entrepreneurship': 1,
            'experi': 1,
            'experinc': 4,
            'field': 1,
            'flash': 1,
            'geometri': 1,
            'gmat': 2,
            'gre': 1,
            'home': 1,
            'hr': 1,
            'html': 1,
            'kip': 1,
            'lahor': 2,
            'level': 1,
            'manag': 2,
            'market': 2,
            'math': 1,
            'mathemat': 1,
            'mx': 1,
            'part': 2,
            'photoshop': 1,
            'privat': 1,
            'process': 1,
            'qualif': 1,
            'relat': 1,
            'sat': 1,
            'scienc': 1,
            'strategi': 1,
            'teach': 2,
            'time': 2,
            'tutor': 1,
            'word': 1,
            'year': 1}),
  'M'),
 (FreqDist({'afford': 1,
            'bid': 1,
            'ca': 1,
            'care': 1,
            'develop': 1,
            'everi': 1,
            'feel': 1,
            'free': 1,
            'high': 1,
            'individu': 1,
            'invit': 1,
            'load': 1,
            'mean': 1,
            "n't": 1,
            'person': 1,
            'place': 1,
            'precis': 1,
            'project': 2}),
  'M'),
 (FreqDist({'art': 1,
            'assist': 1,
            'complet': 1,
            'consider': 1,
            'contact': 1,
            'crimin': 1,
            'current': 1,
            'degre': 1,
            'divers': 1,
            'editori': 1,
            'eleg': 1,
            'excel': 1,
            'experi': 1,
            'flexibl': 1,
            'freelanc': 2,
            'happi': 1,
            'hope': 1,
            'human': 1,
            'incom': 1,
            'journalist': 1,
            'law': 2,
            'lot': 1,
            'media': 1,
            'phd': 1,
            'project': 1,
            'qualifi': 1,
            'rang': 1,
            'reliabl': 1,
            'research': 1,
            'right': 1,
            'skill': 1,
            'spare': 1,
            'style': 1,
            'suit': 1,
            'supplement': 1,
            'tailor': 1,
            'time': 1,
            'undergradu': 1,
            'undertak': 1,
            'uniqu': 1,
            'work': 1,
            'write': 3}),
  'F'),
 (FreqDist({"'s": 1,
            '8': 1,
            'accept': 1,
            'cart': 1,
            'checkout': 1,
            'cm': 1,
            'commun': 1,
            'connect': 1,
            'content': 1,
            'convert': 1,
            'databas': 2,
            'deploy': 1,
            'develop': 3,
            'developmenti': 2,
            'etc': 1,
            'experi': 3,
            'experienc': 1,
            'field': 1,
            'function': 1,
            'hand-on': 1,
            'html': 1,
            'includ': 2,
            'inventori': 1,
            'kind': 1,
            'manag': 4,
            'mani': 1,
            'modul': 1,
            'oop': 1,
            'paypal': 1,
            'php': 4,
            'plugin': 2,
            'prefer': 1,
            'request': 1,
            'server': 1,
            'shop': 1,
            'soap': 1,
            'system': 4,
            'theme': 2,
            'user': 1,
            'vast': 1,
            'web': 1,
            'wide': 1,
            'wordpress': 3,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'applic': 1,
            'creat': 1,
            'dynam': 1,
            'multimedia': 1,
            'present': 1,
            'web': 1,
            'websit': 1}),
  'M'),
 (FreqDist({'18': 1,
            '2': 1,
            '3d': 1,
            'better': 1,
            'blender': 1,
            'degre': 1,
            'english': 1,
            'etc': 1,
            'excel': 1,
            'experi': 1,
            'faster': 1,
            'game': 1,
            'improv': 1,
            'leisur': 1,
            'less': 1,
            'life': 1,
            'like': 1,
            'make': 2,
            'master': 1,
            'minimum': 1,
            'program': 1,
            'programmer/analyst': 1,
            'russian.i': 1,
            'scienc': 1,
            'second': 1,
            'simpl': 1,
            'softwar': 1,
            'task': 1,
            'uniti': 1,
            'vision': 1,
            'year': 1}),
  'M'),
 (FreqDist({'articl': 1,
            'creativ': 1,
            'data': 1,
            'definit': 1,
            'dilig': 1,
            'effici': 1,
            'english': 1,
            'entri': 1,
            'excel': 1,
            'excel.i': 1,
            'fast': 1,
            'includ': 1,
            'person': 2,
            'project': 1,
            'proofread': 1,
            'read': 1,
            'short': 1,
            'skill': 1,
            'type': 1,
            'work': 1,
            'write': 2}),
  'F'),
 (FreqDist({'7+': 1,
            'app': 1,
            'assur': 1,
            'complet': 1,
            'design': 3,
            'develop': 3,
            'dhtml': 1,
            'experi': 1,
            'forward': 1,
            'html': 1,
            'html5': 1,
            'includ': 1,
            'interest': 1,
            'look': 1,
            'mobil': 1,
            'mysql': 1,
            'php': 1,
            'project': 2,
            'rang': 1,
            'site': 1,
            'togeth': 1,
            'use': 1,
            'web': 1,
            'websit': 1,
            'wide': 1,
            'work': 1,
            'xhtml': 1,
            'xml': 1}),
  'M'),
 (FreqDist({'31': 1,
            'abdul': 1,
            'achiev': 1,
            'attitud': 1,
            'big': 1,
            'boy': 1,
            'career': 1,
            'competit': 1,
            'cut': 1,
            'day': 1,
            'depart': 1,
            'develop': 1,
            'dynam': 1,
            'energet': 1,
            'excel': 2,
            'except': 1,
            'experi': 1,
            'forward': 1,
            'go': 1,
            'habit': 1,
            'inc.': 1,
            'industri': 1,
            'keen': 1,
            'limit': 1,
            'littl': 1,
            'look': 1,
            'matter': 1,
            'offic': 1,
            'pakistan': 1,
            'safeti': 1,
            'thing': 1,
            'wast': 1,
            'work': 3,
            'year': 1,
            'young': 1,
            'zohaib': 1}),
  'M'),
 (FreqDist({'accentur': 2,
            'accord': 1,
            'also': 1,
            'analyst': 2,
            'anticip': 1,
            'appli': 1,
            'assess': 1,
            'assist': 1,
            'background': 1,
            'best': 1,
            'busi': 1,
            'capabl': 1,
            'career': 1,
            'client': 2,
            'coach': 1,
            'committe': 1,
            'consist': 1,
            'current': 1,
            'cycl': 1,
            'daili': 1,
            'deliv': 1,
            'develop': 1,
            'duti': 1,
            'empow': 1,
            'engin': 1,
            'enrol': 1,
            'ensur': 1,
            'follow': 1,
            'function': 1,
            'go': 1,
            'goal': 1,
            'highli': 1,
            'individu': 1,
            'lead': 2,
            'life': 1,
            'ltd.': 1,
            'mainli': 1,
            'manger': 1,
            'mauritiu': 1,
            'measur': 1,
            'member': 1,
            'monitor': 1,
            'moreov': 1,
            'motiv': 1,
            'mysql': 1,
            'offshor': 2,
            'oper': 3,
            'oracl': 1,
            'peopl': 1,
            'peoplesoft': 1,
            'perform': 1,
            'php': 1,
            'pl/sql': 1,
            'plan': 2,
            'prioriti': 1,
            'program': 1,
            'progress': 1,
            'recognis': 1,
            'regular': 1,
            'report': 1,
            'respons': 1,
            'risk': 1,
            'send': 1,
            'senior': 1,
            'servic': 1,
            'smoothli': 1,
            'softwar': 1,
            'solut': 1,
            'system': 1,
            'task': 1,
            'team': 3,
            'team\\xe2\\u20ac\\u2122': 1,
            'weekli': 1,
            'work': 1,
            'yearli': 1}),
  'M'),
 (FreqDist({'20': 1,
            'assist': 1,
            'b.a': 1,
            'chair': 1,
            'countless': 1,
            'depart': 1,
            'educ': 2,
            'english': 1,
            'experi': 1,
            'm.a': 1,
            'princip': 1,
            'report': 1,
            'school': 1,
            'secondari': 2,
            'teacher': 1,
            'written': 1,
            'year': 1}),
  'F'),
 (FreqDist({'--': 4,
            '6': 1,
            'applic': 1,
            'avail': 1,
            'award': 1,
            'awesom': 1,
            'cakephp': 1,
            'codeignit': 1,
            'comput': 1,
            'css': 1,
            'custom': 1,
            'development.w': 1,
            'drupal': 1,
            'email': 1,
            'engin': 1,
            'etc': 1,
            'experi': 1,
            'experience.i': 1,
            'expert': 1,
            'framework': 1,
            'freelanc': 1,
            'goal': 1,
            'gtalk': 1,
            'html': 1,
            'javascript': 1,
            'joomla': 1,
            'jqueri': 1,
            'know': 1,
            'magento': 1,
            'main': 1,
            'pleas': 1,
            'profil': 1,
            'project': 1,
            'provid': 1,
            'qualiti': 1,
            'read': 1,
            'scienc': 1,
            'servic': 1,
            'skype': 1,
            'via': 1,
            'visit': 1,
            'web': 1,
            'wordpress': 1,
            'yahoo': 1,
            'year': 1,
            'zend': 1}),
  'M'),
 (FreqDist({'.net': 1,
            '5': 1,
            'applic': 1,
            'bug': 1,
            'case': 1,
            'develop': 1,
            'director': 1,
            'experi': 1,
            'kind': 1,
            'manag': 1,
            'manti': 1,
            'php': 1,
            'plan': 1,
            'redmin': 1,
            'report': 1,
            'softwar': 1,
            'test': 4,
            'tool': 2,
            'web': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '10': 1,
            '3d': 2,
            'architectur': 1,
            'competit': 1,
            'cost': 1,
            'design': 2,
            'easi': 1,
            'effect': 1,
            'experi': 1,
            'exterior': 1,
            'fast': 1,
            'field': 1,
            'industri': 1,
            'interior': 1,
            'project': 1,
            'provid': 1,
            'quick': 1,
            'render': 1,
            'respons': 1,
            'sever': 1,
            'turnaround': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'although': 1,
            'art': 1,
            'ba': 1,
            'bfa': 1,
            'busi': 1,
            'colleg': 1,
            'creat': 1,
            'design': 3,
            'develop': 1,
            'diego': 1,
            'draw': 1,
            'either': 1,
            'fashion': 2,
            'favorit': 1,
            'fiction': 1,
            'human': 1,
            'logo': 1,
            'love': 1,
            'opinion': 1,
            'other': 1,
            'review': 1,
            'san': 1,
            'sketch': 1,
            'thing': 1,
            'uc': 1,
            'write': 1}),
  'F'),
 (FreqDist({"'m": 1,
            'audio': 1,
            'come': 1,
            'cost-effect': 1,
            'detail': 1,
            'ear': 1,
            'edit': 1,
            'email': 1,
            'file': 1,
            'first': 1,
            'hand': 1,
            'handl': 1,
            'hour': 1,
            'mind': 1,
            'offer': 1,
            'project': 1,
            'qualiti': 2,
            'sacrif': 1,
            'thing': 1,
            'time': 1,
            'transcrib': 1,
            'transcript': 1,
            'two': 1,
            'valu': 1,
            'whenev': 1,
            'without': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'d": 1,
            "'re": 3,
            "'ve": 3,
            'access': 1,
            'allow': 1,
            'also': 2,
            'assist': 1,
            'best': 1,
            'blog': 1,
            'bunch': 1,
            'class': 1,
            'client': 1,
            'clients.w': 1,
            'come': 1,
            'compon': 1,
            'content': 3,
            'creat': 1,
            'custom': 1,
            'day': 2,
            'deploy': 1,
            'design': 2,
            'develop': 1,
            'drupal': 1,
            'dynam': 1,
            'e-commerc': 3,
            'edit': 1,
            'expert': 2,
            'extend': 1,
            'flexibl': 2,
            'fort': 1,
            'glad': 1,
            'good': 1,
            'got': 1,
            'joomla': 2,
            'like': 1,
            'list': 1,
            'lm': 1,
            'magento': 1,
            'manag': 2,
            'need': 2,
            'ocommerc': 1,
            'open': 1,
            'opensourc': 1,
            'part': 1,
            'platform': 2,
            'power': 1,
            'program': 1,
            'scalabl': 1,
            'servic': 1,
            'shini': 1,
            'skin': 1,
            'sourc': 1,
            'style': 1,
            'system': 1,
            'theme': 1,
            'umbraco': 1,
            'web': 2,
            'websit': 3,
            'without': 1,
            'wordpress': 2,
            'work': 1,
            'world': 1}),
  'F'),
 (FreqDist({"'ve": 1,
            '8': 1,
            'add': 1,
            'agenc': 1,
            'alway': 1,
            'background': 1,
            'best': 1,
            'build': 1,
            'care': 1,
            'client': 2,
            'close': 1,
            'complex': 1,
            'deadlin': 1,
            'develop': 5,
            'digit': 1,
            'enabl': 1,
            'enhanc': 1,
            'everi': 2,
            'experi': 1,
            'expertis': 1,
            'extern': 1,
            'focu': 1,
            'front-end': 1,
            'ground': 1,
            'guarante': 1,
            'handl': 1,
            'keep': 1,
            'knowledg': 1,
            'mainli': 1,
            'mani': 1,
            'meet': 1,
            'passion': 1,
            'past': 1,
            'presenc': 1,
            'project': 2,
            'qualiti': 1,
            'relationship': 1,
            'sever': 1,
            'site': 1,
            'strong': 1,
            'supplier': 1,
            'take': 1,
            'tight': 1,
            'time': 1,
            'understand': 1,
            'valu': 1,
            'websit': 4,
            'work': 4,
            'year': 1}),
  'M'),
 (FreqDist({'6': 1,
            'abl': 1,
            'analysi': 1,
            'cycl': 1,
            'databas': 1,
            'design': 1,
            'develop': 5,
            'enjoy': 1,
            'experi': 1,
            'familiar': 1,
            'full': 1,
            'implement': 1,
            'integr': 1,
            'learn': 1,
            'new': 1,
            'product': 1,
            'singl': 1,
            'softwar': 2,
            'system': 1,
            'team': 1,
            'thing': 1,
            'tri': 1,
            'web': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'develop': 1,
            'drupal': 1,
            'experi': 1,
            'framework': 1,
            'great': 1,
            'joomla': 1,
            'like': 1,
            'mysql': 1,
            'numer': 1,
            'opencart': 1,
            'opensourc': 1,
            'php': 1,
            'popular': 1,
            'use': 1,
            'websit': 1,
            'wordpress': 2,
            'work': 1}),
  'M'),
 (FreqDist({'abl': 1,
            'advantag': 1,
            'asid': 1,
            'busi': 1,
            'chines': 1,
            'compani': 1,
            'current': 1,
            'definit': 1,
            'english': 2,
            'ethic': 1,
            'good': 1,
            'hard': 1,
            'hope': 1,
            'japanes': 1,
            'kill': 1,
            'know': 1,
            'korean': 1,
            'languag': 3,
            'like': 1,
            'long': 1,
            'minim': 1,
            'nation': 1,
            'onlin': 1,
            'profici': 1,
            'relationship': 1,
            'supervis': 1,
            'take': 1,
            'term': 1,
            'train': 1,
            'trainer': 1,
            'trust': 1,
            'valu': 1,
            'without': 1,
            'work': 4,
            'would': 1}),
  'F'),
 (FreqDist({'2d': 1,
            '3': 1,
            '5': 1,
            'analysi': 1,
            'android': 1,
            'appli': 1,
            'applic': 1,
            'auto': 3,
            'base': 1,
            'build': 1,
            'captcha': 1,
            'client': 2,
            'command': 2,
            'core': 2,
            'crawl': 1,
            'data': 2,
            'design': 1,
            'desktop': 1,
            'eclips': 1,
            'engin': 1,
            'experi': 1,
            'fake': 1,
            'game': 3,
            'hibern': 1,
            'http': 1,
            'io': 1,
            'ip': 1,
            'java': 5,
            'languag': 3,
            'libgdx': 1,
            'logic': 1,
            'member': 2,
            'mssql': 1,
            'multi': 2,
            'multithread': 1,
            'mysql': 2,
            'platform': 1,
            'poker': 1,
            'posit': 2,
            'process': 1,
            'project': 6,
            'proxi': 1,
            'receiv': 1,
            'run': 1,
            'send': 1,
            'server': 3,
            'smartfox': 1,
            'strut': 1,
            'tcp': 1,
            'udp': 1,
            'ui': 1,
            'use': 1,
            'user': 1,
            'web': 1,
            'websit': 1,
            'written': 1}),
  'M'),
 (FreqDist({'design': 1, 'hp': 1, 'selenium': 1, 'test': 1, 'web': 1}), 'M'),
 (FreqDist({'blog': 1, 'check': 1, 'person': 1}), 'M'),
 (FreqDist({'8': 1,
            'analys': 1,
            'autocad': 1,
            'corpor': 1,
            'data': 1,
            'demand': 1,
            'design-': 1,
            'excel': 1,
            'experi': 1,
            'expertise-': 1,
            'follow': 1,
            'formula': 1,
            'layout': 1,
            'plan': 1,
            'sourc': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'ve": 1,
            'administration-': 1,
            'analysi': 1,
            'automation-': 1,
            'busi': 2,
            'chang': 1,
            'client': 1,
            'compani': 1,
            'corner': 1,
            'corpor': 1,
            'creat': 1,
            'crm': 1,
            'current': 1,
            'databas': 1,
            'decad': 1,
            'design': 4,
            'develop': 3,
            'development-': 1,
            'ecommerc': 1,
            'educ': 1,
            'engin': 1,
            'focus': 1,
            'global': 1,
            'goal': 1,
            'help': 1,
            'home': 1,
            'ident': 1,
            'industri': 2,
            'institut': 1,
            'interfac': 1,
            'intern': 1,
            'internet': 1,
            'last': 1,
            'linux': 1,
            'management-': 1,
            'matter': 1,
            'memor': 1,
            'network': 1,
            'onlin': 1,
            'optim': 2,
            'optimization-': 1,
            'organ': 1,
            'past': 1,
            'portfolio': 1,
            'post': 1,
            'pre': 1,
            'presenc': 1,
            'process': 1,
            'project': 3,
            'renown': 1,
            'scope': 1,
            'search': 1,
            'serv': 1,
            'server': 1,
            'shop': 1,
            'site': 1,
            'size': 1,
            'social': 1,
            'success': 1,
            'team': 1,
            'technic': 1,
            'user': 1,
            'web': 3,
            'well': 2,
            'within': 1,
            'work': 3}),
  'M'),
 (FreqDist({'3': 1,
            '4': 1,
            'ajax': 1,
            'current': 2,
            'design': 1,
            'develop': 1,
            'done': 1,
            'experi': 1,
            'expertis': 1,
            'field': 2,
            'freelanc': 2,
            'html': 2,
            'javascript': 1,
            'joomla': 1,
            'kerala': 1,
            'locat': 1,
            'member': 1,
            'mysql': 1,
            'name': 1,
            'past': 1,
            'php': 1,
            'program': 1,
            'project': 2,
            'softwar': 1,
            'success': 1,
            'team': 1,
            'web': 2,
            'wordpress': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'2000.': 1,
            '9': 1,
            'advertis': 2,
            'compani': 1,
            'cours': 1,
            'design': 2,
            'experi': 1,
            'finish': 1,
            'graduat': 1,
            'graphic': 1,
            'hello': 1,
            'hope': 1,
            'li': 1,
            'logo': 1,
            'major': 1,
            'organ': 1,
            'perfectli': 1,
            'project': 1,
            'univers': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'100': 1,
            '9': 1,
            'afford': 1,
            'alreadi': 1,
            'also': 1,
            'background': 1,
            'chat': 1,
            'commun': 1,
            'custom': 1,
            'design': 2,
            'directli': 1,
            'electron': 1,
            'freelanc': 1,
            'give': 1,
            'graphic': 2,
            'inbox': 1,
            'india': 1,
            'intern': 1,
            'internet': 1,
            'item': 1,
            'jingl': 1,
            'kind': 1,
            'lot': 1,
            'market': 1,
            'music': 1,
            'one': 1,
            'one-on-on': 1,
            'outsourc': 1,
            'past': 1,
            'pay': 1,
            'per': 1,
            'print': 1,
            'produc': 1,
            'provid': 2,
            'right': 1,
            'satisfact': 1,
            'satisfi': 1,
            'score': 1,
            'see': 1,
            'servic': 2,
            'sinc': 1,
            'solut': 1,
            'song': 1,
            'time': 2,
            'updat': 1,
            'variou': 1,
            'web': 2,
            'well': 1,
            'work': 1,
            'years.i': 1}),
  'M'),
 (FreqDist({'10': 1,
            '2': 1,
            '\\t\\t': 2,
            '\\xe2\\u20ac\\xa2\\tgraph': 1,
            '\\xe2\\u20ac\\xa2\\tmicrosoft': 1,
            'apart': 1,
            'appli': 1,
            'bachelor': 1,
            'birth': 2,
            'career': 1,
            'cebu': 2,
            'central': 1,
            'citi': 1,
            'citymobil': 1,
            'comput': 3,
            'cours': 1,
            'decemb': 1,
            'design': 2,
            'e.': 1,
            'erni': 2,
            'experi': 1,
            'f.': 1,
            'graphic': 1,
            'inform': 2,
            'institut': 3,
            'internet': 1,
            'israel': 1,
            'ken': 1,
            'knowledg': 1,
            'l.': 1,
            'laboratori': 1,
            'mae': 1,
            'major': 1,
            'mother\\xe2\\u20ac\\u2122': 1,
            'multimedia': 2,
            'name': 2,
            'objectiveto': 1,
            'occup': 1,
            'page': 1,
            'portfolio': 1,
            'profici': 1,
            'sm': 1,
            'staff': 1,
            'street': 1,
            'technolog': 1,
            'v.': 1}),
  'M'),
 (FreqDist({'custom': 1,
            'import': 1,
            'project': 1,
            'satisfact': 1,
            'success': 1}),
  'M'),
 (FreqDist({"'re": 1,
            '.net': 2,
            '3d': 1,
            'ajax': 1,
            'brochur': 1,
            'c': 1,
            'css': 1,
            'event': 1,
            'flash': 1,
            'flex': 1,
            'html': 1,
            'illustr': 1,
            'javascript': 1,
            'jqueri': 1,
            'logo': 1,
            'mail': 1,
            'make': 1,
            'manag': 1,
            'nhibern': 1,
            'nuke': 1,
            'photoshop': 1,
            'project': 1,
            'readi': 1,
            'servic': 1,
            'tran': 1,
            'xml': 1}),
  'M'),
 (FreqDist({"'m": 3,
            "'s": 2,
            'bonu': 1,
            'cash': 1,
            'employ': 1,
            'first': 1,
            'fun': 1,
            'gain': 1,
            'help': 1,
            'hobbi': 1,
            'littl': 1,
            'mark': 1,
            'next': 1,
            'nice': 1,
            'other': 1,
            'pocket': 1,
            'prioriti': 1,
            'put': 1,
            'singl': 1,
            'tri': 1,
            'websit': 1,
            'well': 1}),
  'M'),
 (FreqDist({'assert': 1,
            'believ': 1,
            'commun': 1,
            'creativ': 1,
            'driven': 1,
            'keep': 1,
            'led': 1,
            'profess': 1,
            'simpl': 1,
            'techniqu': 1,
            'thing': 2,
            'write': 1}),
  'M'),
 (FreqDist({'.net': 3,
            '2.0,3.5,4.0': 1,
            '2000': 1,
            '2003': 2,
            '2005': 1,
            '\\t': 1,
            '\\tasp.net': 1,
            '\\thtml': 1,
            '\\tsql': 1,
            '\\tvisual': 1,
            'abil': 1,
            'action': 1,
            'adob': 2,
            'analysi': 1,
            'analyt': 1,
            'attitud': 1,
            'c': 1,
            'cm': 1,
            'code': 1,
            'commun': 1,
            'comput': 1,
            'control': 1,
            'cs3': 2,
            'databas': 1,
            'debug': 1,
            'degre': 1,
            'develop': 1,
            'excel': 1,
            'framework': 1,
            'googl': 1,
            'host': 1,
            'html5': 1,
            'implement': 1,
            'includ': 2,
            'independ': 1,
            'integr': 1,
            'interfac': 1,
            'item': 1,
            'javascript': 3,
            'jqueri': 1,
            'languages\\t': 3,
            'map': 2,
            'markup': 1,
            'master': 1,
            'net': 1,
            'obfusc': 2,
            'oral': 1,
            'photoshop': 1,
            'posit': 1,
            'problem': 2,
            'reactor': 2,
            'requir': 1,
            'results-ori': 1,
            'script': 1,
            'server': 1,
            'skill': 1,
            'softwar': 1,
            'solv': 2,
            'sql': 1,
            'store': 1,
            'strong': 1,
            'studio': 2,
            't-sql': 1,
            'team': 1,
            'technic': 1,
            'telerik': 1,
            'univers': 1,
            'use': 1,
            'user': 1,
            'v2': 1,
            'v3': 1,
            'vb.net': 1,
            'version': 1,
            'visual': 1,
            'web': 2,
            'websit': 1,
            'work': 2,
            'written': 1,
            'xml': 1,
            'xpath': 1,
            'xslt': 1}),
  'M'),
 (FreqDist({'build': 1,
            'daili': 1,
            'develop': 1,
            'everyday': 1,
            'keep': 1,
            'learn': 1,
            'like': 1,
            'motto': 1,
            'new': 2,
            'renew': 1,
            'softwar': 1,
            'thing': 2,
            'want': 1}),
  'M'),
 (FreqDist({'.net': 2,
            '2.0': 1,
            'abl': 1,
            'ajax': 1,
            'ambit': 1,
            'applic': 1,
            'argentina': 1,
            'asp.net': 1,
            'autom': 1,
            'back': 1,
            'best': 1,
            'c': 1,
            'challeng': 1,
            'client': 1,
            'com': 1,
            'come': 1,
            'commit': 1,
            'commun': 1,
            'compani': 1,
            'cope': 1,
            'css': 1,
            'data': 1,
            'db': 2,
            'definit': 1,
            'deliv': 1,
            'deliveri': 1,
            'design': 1,
            'develop': 2,
            'end': 1,
            'engin': 1,
            'environ': 1,
            'ethic': 1,
            'excel': 1,
            'experi': 1,
            'expertis': 2,
            'five': 1,
            'form': 1,
            'foundat': 1,
            'foundation-': 1,
            'framework': 2,
            'graduat': 1,
            'honest': 1,
            'html': 1,
            'ii': 1,
            'inform': 1,
            'innumer': 1,
            'interop': 1,
            'invok': 1,
            'languag': 1,
            'linkedin': 1,
            'look': 1,
            'make': 1,
            'manner': 1,
            'microsoft': 2,
            'ms': 1,
            'multi-thread': 1,
            'offic': 1,
            'oportun': 1,
            'perform': 1,
            'platform': 1,
            'possibl': 1,
            'product': 1,
            'profession': 2,
            'profil': 1,
            'qualiti': 2,
            'rang': 1,
            'renown': 1,
            'satisfact': 1,
            'server': 2,
            'servic': 3,
            'skill': 1,
            'softwar': 1,
            'sql': 1,
            'synchron': 1,
            'system': 1,
            't-sql': 1,
            'team': 1,
            'time': 1,
            'trigger': 1,
            'troubleshoot': 1,
            'tuning-': 1,
            'univers': 1,
            'virtual': 1,
            'web': 2,
            'wide': 1,
            'win32': 1,
            'window': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'7': 1,
            'brick': 1,
            'build': 1,
            'busi': 1,
            'call': 1,
            'center': 1,
            'commerci': 1,
            'experi': 1,
            'expertis': 2,
            'first': 1,
            'major': 1,
            'need': 1,
            'open': 1,
            'product': 1,
            'solut': 2,
            'sourc': 1,
            'suggest': 1,
            'voip': 2,
            'year': 1}),
  'M'),
 (FreqDist({"'ve": 2,
            '15': 1,
            'adapt': 1,
            'allow': 1,
            'also': 1,
            'anyth': 1,
            'area': 1,
            'articl': 1,
            'busi': 1,
            'command': 1,
            'concern': 1,
            'content': 1,
            'creation': 1,
            'creativ': 1,
            'current': 1,
            'deliveri': 1,
            'educ': 1,
            'english': 1,
            'experi': 2,
            'expertis': 1,
            'far': 1,
            'firm': 1,
            'flexibl': 1,
            'forward': 1,
            'full': 1,
            'gener': 1,
            'hard-work': 1,
            'internet': 1,
            'kind': 2,
            'knowledg': 1,
            'languag': 1,
            'look': 1,
            'mainli': 1,
            'manag': 1,
            'market': 1,
            'materi': 1,
            'newspap': 1,
            'onlin': 1,
            'possess': 1,
            'press': 1,
            'project': 1,
            'projects.i': 1,
            'psycholog': 1,
            'rate': 1,
            'releas': 1,
            'reliabl': 1,
            'requir': 1,
            'schedul': 1,
            'scienc': 1,
            'social': 1,
            'spanish': 1,
            'tackl': 1,
            'time': 1,
            'translat': 4,
            'type': 2,
            'variou': 1,
            'websit': 1,
            'work': 2,
            'write': 1,
            'written': 1,
            'year': 1}),
  'F'),
 (FreqDist({'develop': 1, 'idea': 1, 'knowledg': 1}), 'M'),
 (FreqDist({"'m": 1,
            "'s": 1,
            'aim': 1,
            'alreadi': 1,
            'anoth': 1,
            'anyth': 1,
            'articl': 2,
            'avoid': 2,
            'base': 2,
            'caus': 1,
            'check': 1,
            'client': 3,
            'commun': 1,
            'consider': 1,
            'constantli': 1,
            'crazi': 1,
            'creat': 1,
            'creativ': 2,
            'critic': 1,
            'deriv': 1,
            'determin': 1,
            'differ': 1,
            'domain': 1,
            'everi': 2,
            'exist': 1,
            'fail': 1,
            'freelanc': 1,
            'health': 1,
            'honesti': 1,
            'honestli': 1,
            'hospit': 1,
            'idea': 1,
            'integr': 2,
            'keep': 1,
            'lag': 1,
            'life': 2,
            'make': 2,
            'mental': 1,
            'much': 1,
            'new': 2,
            'past': 1,
            'perhap': 1,
            'person': 2,
            'piec': 2,
            'pleasur': 1,
            'produc': 2,
            'product': 3,
            'regret': 2,
            'regularli': 1,
            'requir': 2,
            'respect': 1,
            'satisfact': 1,
            'somewher': 1,
            'still': 1,
            'sure': 1,
            'thing': 1,
            'three': 1,
            'time': 1,
            'tire': 1,
            'tri': 1,
            'troubl': 1,
            'two': 1,
            'unnecessari': 1,
            'util': 1,
            'valu': 1,
            'virtu': 1,
            'word': 2,
            'work': 3,
            'world': 1,
            'would': 1,
            'write': 6,
            'zeal': 1}),
  'F'),
 (FreqDist({'...': 1,
            'alway': 1,
            'beauti': 1,
            'build': 1,
            'client': 1,
            'creat': 1,
            'design': 4,
            'develop': 1,
            'experi': 1,
            'field': 1,
            'graphic': 2,
            'indonesia': 1,
            'logo': 1,
            'long': 1,
            'look': 1,
            'love': 1,
            'mani': 1,
            'market': 1,
            'outsourc': 1,
            'project': 1,
            'rang': 1,
            'relationship': 1,
            'solut': 1,
            'term': 1,
            'time': 1,
            'uniqu': 1,
            'web': 2,
            'web-servic': 1,
            'wide': 1,
            'work': 3}),
  'M'),
 (FreqDist({'4': 1,
            'experi': 1,
            'mysql': 1,
            'php': 1,
            'servic': 1,
            'web': 1,
            'work': 1,
            'year': 1,
            'zend': 1}),
  'M'),
 (FreqDist({'creativ': 1, 'design': 1, 'hardwork': 1, 'talent': 1}), 'M'),
 (FreqDist({'aim': 1,
            'android': 1,
            'asp.net': 1,
            'css': 1,
            'develop': 1,
            'etc': 1,
            'html': 1,
            'linq': 1,
            'mobil': 1,
            'mysql': 1,
            'new': 1,
            'php': 1,
            'provid': 1,
            'readi': 1,
            'solut': 1,
            'sql': 1,
            'technolog': 3,
            'use': 2,
            'web': 1,
            'work': 1,
            'xhtml': 1}),
  'M'),
 (FreqDist({'.o': 1,
            'admin': 2,
            'also': 1,
            'applic': 1,
            'author': 1,
            'bengal': 1,
            'binari': 1,
            'code': 1,
            'colleg': 1,
            'compani': 1,
            'creat': 1,
            'design': 1,
            'develop': 5,
            'display': 2,
            'doc': 1,
            'downlin': 2,
            'event': 1,
            'format': 1,
            'forum': 1,
            'get': 1,
            'give': 1,
            'graphic': 2,
            'hard': 1,
            'import': 2,
            'level': 1,
            'look': 1,
            'matter': 1,
            'mlm': 1,
            'nation': 1,
            'new': 1,
            'panel': 2,
            'parti': 2,
            'perfectli': 1,
            'person': 1,
            'php': 1,
            'regist': 1,
            'see': 1,
            'share': 1,
            'tree': 1,
            'updat': 1,
            'use': 1,
            'user': 1,
            'way': 1,
            'websit': 3,
            'west': 1,
            'without': 1,
            'work': 1}),
  'M'),
 (FreqDist({'accordingli': 1,
            'agil': 1,
            'along': 1,
            'also': 1,
            'approach': 2,
            'ask': 1,
            'blocker': 1,
            'certain': 1,
            'client': 1,
            'coordin': 1,
            'deadlin': 1,
            'design': 1,
            'directli': 1,
            'document': 2,
            'done': 1,
            'engin': 2,
            'execut': 2,
            'experi': 1,
            'expertis': 1,
            'extens': 1,
            'gather': 1,
            'get': 1,
            'happen': 2,
            'help': 1,
            'job': 1,
            'lead': 2,
            'make': 1,
            'manag': 1,
            'master': 1,
            'meet': 1,
            'mitig': 1,
            "n't": 1,
            'organ': 1,
            'plan': 1,
            'possibl': 1,
            'prepar': 1,
            'project': 6,
            'put': 1,
            'remov': 1,
            'requir': 2,
            'resourc': 2,
            'risk': 1,
            'scenario': 1,
            'schedul': 1,
            'scrum': 1,
            'situat': 1,
            'softwar': 6,
            'success': 2,
            'team': 1,
            'technic': 1,
            'test': 2,
            'testing.i': 1,
            'tri': 3,
            'us': 1,
            'use': 1,
            'variou': 2,
            'well': 1,
            'work': 3}),
  'M'),
 (FreqDist({'6': 1,
            'accur': 1,
            'comput': 1,
            'contact': 1,
            'depend': 1,
            'dual': 1,
            'fast': 1,
            'first': 1,
            'futur': 1,
            'high': 1,
            'home': 1,
            'honest': 1,
            'job': 1,
            'monitor': 1,
            'offic': 1,
            'right': 1,
            'speed': 1,
            'time': 1,
            'work': 2,
            'year': 1}),
  'F'),
 (FreqDist({"'ll": 1,
            "'m": 1,
            '100': 3,
            '2008': 1,
            '2009': 1,
            '2011': 1,
            '5': 1,
            'actual': 1,
            'advis': 1,
            'anyth': 1,
            'around': 1,
            'becam': 1,
            'broaden': 1,
            'cake': 1,
            'career': 1,
            'cash': 1,
            'commun': 1,
            'core': 1,
            'current': 1,
            'decid': 1,
            'deliv': 1,
            'direct': 2,
            'engin': 1,
            'excel': 1,
            'flow': 1,
            'focu': 1,
            'free': 1,
            'freelanc': 2,
            'happi': 1,
            'heavi': 1,
            'improv': 1,
            'includ': 1,
            'innov': 1,
            'interperson': 1,
            'invest': 1,
            'later': 1,
            'learn': 1,
            'limit': 1,
            'main': 2,
            "n't": 1,
            'piec': 1,
            'potenti': 1,
            'project': 4,
            'punctual': 1,
            'quality-': 1,
            'record': 1,
            'recruit': 1,
            'review': 1,
            'sale': 2,
            'see': 1,
            'sever': 1,
            'skill': 1,
            'small': 2,
            'softwar': 2,
            'spanish': 1,
            'standard': 1,
            'star': 1,
            'start': 1,
            'start-up': 1,
            'take': 1,
            'time': 2,
            'trainer': 1,
            'translat': 1,
            'travel': 2,
            'undertak': 1,
            'want': 1,
            'work': 1,
            'world': 1,
            'write': 1}),
  'M'),
 (FreqDist({'level': 1,
            'offer': 1,
            'oppurtun': 1,
            'optimum': 1,
            'perform': 1,
            'seek': 1}),
  'M'),
 (FreqDist({'c': 1,
            'data': 1,
            'experi': 1,
            'good': 1,
            'mine': 1,
            'php': 1,
            'project': 1}),
  'M'),
 (FreqDist({'develop': 2, 'end': 1, 'front': 1, 'php': 1, 'web': 1}), 'M'),
 (FreqDist({'10': 1,
            '3': 1,
            'advertis': 1,
            'concept': 2,
            'concern': 1,
            'creat': 1,
            'design': 4,
            'experi': 2,
            'explor': 1,
            'graphic': 1,
            'idea': 1,
            'like': 1,
            'logo': 2,
            'power': 1,
            'simpl': 1,
            'specialist': 1,
            'strong': 1,
            'work': 1,
            'year': 2}),
  'M'),
 (FreqDist({'9': 1,
            'advertis': 1,
            'approv': 1,
            'area': 1,
            'arrang': 1,
            'assembl': 1,
            'associ': 1,
            'avail': 1,
            'background': 1,
            'cad/cam': 1,
            'call': 1,
            'chang': 2,
            'check': 1,
            'compani': 1,
            'conceptu': 1,
            'consider': 1,
            'conveni': 1,
            'custom': 1,
            'cut': 1,
            'dear': 1,
            'depart': 2,
            'design': 5,
            'detail': 1,
            'develop': 1,
            'discuss': 1,
            'draw': 4,
            'educ': 1,
            'enclos': 1,
            'engin': 3,
            'enquiri': 1,
            'entail': 1,
            'entir': 1,
            'equip': 2,
            'exist': 2,
            'experi': 3,
            'extract': 1,
            'final': 3,
            'first': 1,
            'follow': 1,
            'identifi': 1,
            'improv': 2,
            'industri': 1,
            'interview': 2,
            'mainten': 1,
            'manag': 2,
            'mass': 1,
            'meet': 1,
            'model': 4,
            'mutual': 1,
            'new': 1,
            'oper': 1,
            'organ': 1,
            'part': 1,
            'pertain': 1,
            'plan': 1,
            'problem': 1,
            'procedur': 1,
            'product': 6,
            'project': 1,
            'qualif': 1,
            'qualiti': 2,
            'quotat': 1,
            'relat': 1,
            'releas': 1,
            'requir': 2,
            'resolv': 1,
            'respond': 1,
            'resum': 1,
            'sampl': 1,
            'schedul': 1,
            'select': 1,
            'show': 1,
            'sincer': 1,
            'sir': 1,
            'solid': 1,
            'solut': 1,
            'specif': 2,
            'staff': 1,
            'studi': 2,
            'task': 1,
            'team': 1,
            'test': 1,
            'thank': 1,
            'time': 2,
            'tool': 1,
            'total': 1,
            'translat': 1,
            'use': 1,
            'variou': 2,
            'vendor': 1,
            'year': 1}),
  'M'),
 (FreqDist({'aspect': 3,
            'call': 1,
            'center': 1,
            'comput': 1,
            'conflict': 1,
            'corpor': 1,
            'custom': 2,
            'data': 2,
            'edit': 2,
            'entri': 2,
            'experienc': 4,
            'includ': 1,
            'legal': 1,
            'main': 1,
            'medic': 1,
            'ms': 1,
            'offic': 1,
            'oper': 1,
            'order': 1,
            'person': 1,
            'product': 1,
            'program': 1,
            'proofread': 1,
            'resolut': 1,
            'servic': 2,
            'strength': 1,
            'support': 2,
            'system': 1,
            'tech': 1,
            'telephon': 1,
            'transcript': 1,
            'variou': 1,
            'verif': 1,
            'window': 2,
            'write': 1}),
  'M'),
 (FreqDist({'5': 1,
            'applic': 4,
            'base': 1,
            'call': 1,
            'cm': 1,
            'compani': 2,
            'comput': 1,
            'confidenti': 2,
            'control': 1,
            'creat': 1,
            'current': 1,
            'develop': 3,
            'embed': 1,
            'engin': 1,
            'extens': 1,
            'framework': 1,
            'graduat': 1,
            'help': 1,
            'improv': 1,
            'interest': 1,
            'iphon': 1,
            'job': 1,
            'joomla': 1,
            'let': 1,
            'licens': 1,
            'mechan': 1,
            'methodolog': 1,
            'mobil': 1,
            'mostli': 1,
            'mvc': 1,
            'oop': 1,
            'open': 2,
            'softwar': 1,
            'someth': 1,
            'sourc': 2,
            'special': 1,
            'technolog': 1,
            'uniqu': 1,
            'use': 2,
            'version': 1,
            'web': 2,
            'work': 5,
            'wrote': 1,
            'xcode': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '8': 1,
            'address': 2,
            'aforesaid': 1,
            'applic': 1,
            'back': 1,
            'backpag': 1,
            'capabl': 1,
            'catalog': 1,
            'classifi': 1,
            'client': 2,
            'clients.5': 1,
            'come': 1,
            'compani': 2,
            'contact': 1,
            'content': 1,
            'continu': 1,
            'convert': 1,
            'copi': 3,
            'cost.mi': 1,
            'data': 2,
            'edit': 1,
            'effici': 1,
            'email': 1,
            'emails.6': 1,
            'enter': 1,
            'especi': 1,
            'excel': 1,
            'exchang': 1,
            'expert': 1,
            'feel': 1,
            'find': 1,
            'forward': 1,
            'fraction': 1,
            'free': 1,
            'high': 1,
            'internet': 2,
            'like': 1,
            'link': 1,
            'list': 1,
            'mail': 1,
            'may': 2,
            'ms': 1,
            'name': 1,
            'necessari': 1,
            'new': 1,
            'number': 1,
            'offic': 1,
            'olx': 1,
            'onlin': 1,
            'past': 2,
            'possibl': 1,
            'post': 1,
            'product': 1,
            'project': 1,
            'provid': 3,
            'qualiti': 1,
            'research': 2,
            'satisfi': 1,
            'search': 2,
            'seo': 1,
            'servic': 3,
            'session': 1,
            'sharpen': 1,
            'shop': 1,
            'singer': 1,
            'skill': 1,
            'specialist': 2,
            'termin': 1,
            'time': 1,
            'train': 2,
            'url': 1,
            'websit': 2,
            'websites3': 1,
            'work': 6,
            'would': 2}),
  'M'),
 (FreqDist({"'m": 2,
            "'ve": 1,
            '.net': 2,
            '7+': 1,
            'angularj': 1,
            'api': 2,
            'applic': 3,
            'asp.net': 1,
            'c': 1,
            'complet': 1,
            'desktop': 1,
            'develop': 3,
            'experi': 1,
            'experienc': 1,
            'integr': 2,
            'interest': 1,
            'linq': 1,
            'mani': 1,
            'mvc': 1,
            'page': 1,
            'project': 3,
            'servic': 1,
            'signalr': 1,
            'singl': 1,
            'softwar': 1,
            'success': 1,
            'technolog': 2,
            'use': 1,
            'web': 2,
            'websit': 1,
            'window': 1,
            'years\\xe2\\u20ac\\u2122': 1}),
  'F'),
 (FreqDist({'know': 1, 'need': 1}), 'M'),
 (FreqDist({'artist': 1,
            'board': 1,
            'complet': 1,
            'effici': 1,
            'enabl': 1,
            'entertain': 1,
            'environ': 1,
            'fashion': 1,
            'game': 1,
            'high': 1,
            'industry.i': 1,
            'profession': 1,
            'qualiti': 1,
            'set': 1,
            'sever': 1,
            'ship': 1,
            'skill': 1,
            'task': 1,
            'time': 1,
            'titl': 1,
            'work': 1}),
  'M'),
 (FreqDist({'1983.': 1,
            '2005': 1,
            '2007': 1,
            '2011': 2,
            '3d': 1,
            '6': 1,
            'accent': 1,
            'art': 1,
            'award': 2,
            'born': 1,
            'citi': 1,
            'competit': 1,
            'design': 5,
            'educ': 1,
            'exhibit': 1,
            'fan': 1,
            'graduat': 1,
            'graphic': 1,
            'home': 1,
            'industri': 2,
            'interior': 1,
            'intern': 1,
            'moscow': 1,
            'mount': 1,
            'nation': 1,
            'one': 1,
            'page': 1,
            'pari': 1,
            'particip': 1,
            'prize': 1,
            'receiv': 2,
            'studio': 1,
            'ukrain': 1,
            'visual': 1,
            'wall': 1,
            'work': 1}),
  'M'),
 (FreqDist({'.net': 1,
            '7+': 1,
            'also': 1,
            'android': 2,
            'applic': 4,
            'autom': 2,
            'base': 2,
            'browser': 1,
            'case': 2,
            'center': 1,
            'certifi': 1,
            'client': 1,
            'compat': 1,
            'contact': 1,
            'cross': 1,
            'cycl': 1,
            'databas': 1,
            'deliv': 1,
            'design': 1,
            'develop': 1,
            'domain': 1,
            'dynam': 1,
            'ecommerc': 1,
            'educ': 1,
            'effici': 1,
            'elearn': 1,
            'erp': 1,
            'execut': 1,
            'experi': 3,
            'experienc': 1,
            'expert': 1,
            'expertis': 1,
            'financ': 1,
            'function': 1,
            'healthcar': 1,
            'high': 1,
            'highli': 1,
            'hp': 1,
            'io': 1,
            'ipad': 1,
            'iphon': 1,
            'istqb': 1,
            'java': 1,
            'jira': 1,
            'jmeter': 1,
            'life': 1,
            'like': 1,
            'look': 1,
            'manag': 2,
            'manti': 1,
            'me.i': 1,
            'mobil': 2,
            'mssql': 1,
            'mysql': 1,
            'network': 1,
            'oracl': 1,
            'perform': 1,
            'php': 1,
            'plan': 1,
            'platform.i': 1,
            'pleas': 1,
            'profici': 1,
            'project': 1,
            'proven': 1,
            'qa': 1,
            'qualiti': 3,
            'quickli': 1,
            'rang': 1,
            'scenario': 1,
            'selenium': 1,
            'servic': 1,
            'skill': 1,
            'soapui': 1,
            'social': 1,
            'softwar': 1,
            'standard': 1,
            'stlc': 1,
            'technolog': 1,
            'test': 12,
            'tester': 1,
            'tool': 1,
            'usabl': 1,
            'use': 4,
            'variou': 1,
            'web': 3,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'7': 1,
            'area': 1,
            'asp.net': 1,
            'corpor': 1,
            'develop': 1,
            'experience.mi': 1,
            'profici': 1,
            'softwar': 1,
            'year': 1}),
  'M'),
 (FreqDist({'corpor': 1,
            'dedic': 1,
            'engin': 1,
            'experienc': 1,
            'freelanc': 1,
            'recent': 1,
            'softwar': 1,
            'special': 1,
            'spoken': 1,
            'switch': 1,
            'technolog': 1,
            'web': 1,
            'well': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.net': 1,
            '1': 1,
            '1978': 1,
            '1983': 2,
            '1983.': 1,
            '1985': 1,
            '1985.': 1,
            '1988': 1,
            '1989': 1,
            '1989.': 1,
            '1990': 2,
            '1991': 2,
            '1991.': 2,
            '1992': 1,
            '1993.': 1,
            '1994': 1,
            '1994.': 1,
            '1996': 1,
            '1996.': 1,
            '1997': 1,
            '1999': 1,
            '1999.': 1,
            '2': 2,
            '2000': 1,
            '2001': 1,
            '2002': 1,
            '2002.': 1,
            '2003': 4,
            '2004': 3,
            '2005': 3,
            '2005.': 1,
            '2006': 1,
            '2006.': 1,
            '2007': 3,
            '2007.': 1,
            '2011': 1,
            '3': 1,
            '3.1': 1,
            '3.2': 1,
            '4': 1,
            '400': 1,
            '48': 2,
            '5': 2,
            '5.1': 2,
            '\\xe2\\u20ac\\u0153inform': 2,
            '\\xe2\\u20ac\\u201c': 1,
            '\\xe2\\u20ac\\x9d': 1,
            'access': 2,
            'accessori': 1,
            'achiev': 1,
            'acm': 1,
            'acrobat': 1,
            'administr': 7,
            'adob': 1,
            'advanc': 4,
            'age\\xe2\\u20ac\\x9d': 2,
            'align': 1,
            'allow': 1,
            'along': 1,
            'american': 1,
            'antholog': 2,
            'aol': 1,
            'appli': 3,
            'applic': 1,
            'april': 2,
            'archiv': 1,
            'area': 2,
            'asp.net': 1,
            'assign': 1,
            'assist': 4,
            'associ': 3,
            'audio': 1,
            'audit': 1,
            'august': 9,
            'award': 1,
            'bachelor': 3,
            'backup': 1,
            'bank': 1,
            'basic': 2,
            'begin': 2,
            'bill': 1,
            'black': 1,
            'bring': 1,
            'busi': 3,
            'call': 1,
            'capella': 3,
            'carolina': 1,
            'cascad': 1,
            'cashier': 3,
            'catalog': 1,
            'cell': 1,
            'cellular': 1,
            'certif': 2,
            'cgi': 1,
            'chang': 1,
            'channel': 1,
            'charlott': 1,
            'check': 1,
            'children': 1,
            'choic': 1,
            'church': 1,
            'cisco': 6,
            'classroom': 3,
            'clean': 1,
            'clerk': 2,
            'club': 1,
            'collect': 2,
            'colleg': 2,
            'commerci': 1,
            'compani': 3,
            'complet': 2,
            'comput': 5,
            'concern': 1,
            'conduct': 1,
            'configur': 1,
            'connect': 2,
            'consist': 2,
            'consum': 1,
            'contest': 1,
            'contractor': 1,
            'control': 1,
            'corpor': 2,
            'creat': 1,
            'creation': 1,
            'creativ': 1,
            'credit': 1,
            'cricket': 1,
            'critiqu': 1,
            'cum': 1,
            'custom': 10,
            'daili': 1,
            'dakota': 9,
            'danc': 1,
            'data': 2,
            'databas': 2,
            'deadlin': 3,
            'decemb': 5,
            'degre': 1,
            'delta': 1,
            'depart': 2,
            'design': 2,
            'develop': 2,
            'devil': 7,
            'dhtml': 1,
            'distribut': 1,
            'document': 7,
            'dolphin': 1,
            'dreamweav': 1,
            'dvd': 1,
            'e-busi': 1,
            'editor\\xe2\\u20ac\\u2122': 1,
            'educ': 1,
            'electr': 1,
            'electron': 2,
            'elementari': 1,
            'engin': 5,
            'entri': 2,
            'environ': 1,
            'equip': 2,
            'establish': 1,
            'estat': 7,
            'ethic': 1,
            'evalu': 2,
            'even': 1,
            'examin': 2,
            'exceed': 2,
            'excel': 1,
            'execut': 4,
            'expect': 3,
            'experi': 1,
            'fall': 1,
            'famili': 1,
            'famou': 2,
            'fargo': 1,
            'farm': 1,
            'field': 1,
            'final': 1,
            'firework': 1,
            'firm': 2,
            'fish': 1,
            'flash': 1,
            'format': 2,
            'freelanc': 1,
            'fuel': 2,
            'fundament': 1,
            'ga': 1,
            'gener': 2,
            'gpa': 3,
            'grand': 1,
            'graphic': 2,
            'group': 2,
            'hardwar': 2,
            'high': 3,
            'holiday': 1,
            'honeywel': 1,
            'hr': 4,
            'html': 1,
            'http': 1,
            'hug': 1,
            'human': 1,
            'hunt': 1,
            'ibm': 1,
            'ieee': 2,
            'illustr': 1,
            'imagereadi': 1,
            'inbound': 1,
            'independ': 1,
            'individu': 1,
            'inform': 7,
            'instal': 2,
            'institut': 1,
            'instruct': 2,
            'instructor': 1,
            'insur': 1,
            'intellig': 1,
            'interact': 1,
            'intern': 4,
            'internet': 1,
            'interview': 1,
            'inventori': 2,
            'invest': 2,
            'invisalign': 1,
            'ivn': 2,
            'januari': 1,
            'javascript': 2,
            'jewel': 1,
            'june': 6,
            'lake': 9,
            'lan': 1,
            'larg': 2,
            'laud': 1,
            'law': 4,
            'leas': 2,
            'legal': 4,
            'leonard': 1,
            'level': 1,
            'librari': 1,
            'licens': 2,
            'life': 2,
            'linux': 1,
            'loan': 1,
            'locat': 3,
            'logo': 1,
            'machineri': 1,
            'macromedia': 1,
            'magazin': 1,
            'main': 1,
            'maintain': 2,
            'manag': 5,
            'mani': 1,
            'master': 2,
            'materi': 1,
            'may': 2,
            'medic': 1,
            'medium': 1,
            'meet': 5,
            'member': 4,
            'membership': 2,
            'merchandis': 1,
            'met': 1,
            'methodolog': 1,
            'microcomput': 1,
            'microsoft': 7,
            'middl': 1,
            'minneapoli': 9,
            'minnesota': 15,
            'month': 1,
            'monthli': 1,
            'mortgag': 1,
            'multimedia': 2,
            'mx': 1,
            'mysql': 1,
            'netwar': 2,
            'network': 6,
            'new': 1,
            'nomin': 1,
            'north': 10,
            'northern': 2,
            'novel': 2,
            'novemb': 5,
            'octob': 2,
            'offer': 2,
            'offic': 9,
            'one': 1,
            'oper': 2,
            'optim': 1,
            'order': 4,
            'organ': 1,
            'os': 1,
            'packag': 1,
            'part': 2,
            'part-tim': 5,
            'partial': 1,
            'pass': 1,
            'paul': 2,
            'payment': 1,
            'pca': 1,
            'peopl': 1,
            'perl': 1,
            'perman': 1,
            'person': 1,
            'personnel': 4,
            'phone': 2,
            'photo': 2,
            'photograph': 5,
            'photographi': 3,
            'photoshop': 1,
            'php': 1,
            'plan': 1,
            'poem': 3,
            'poet': 2,
            'poetri': 1,
            'portrait': 5,
            'posit': 1,
            'powerpoint': 1,
            'pre-school': 1,
            'present': 2,
            'president\\xe2\\u20ac\\u2122': 1,
            'process': 8,
            'processor': 1,
            'produc': 1,
            'product': 4,
            'profession': 5,
            'program': 4,
            'project': 5,
            'promot': 1,
            'properti': 3,
            'provid': 2,
            'prudenti': 2,
            'publish': 4,
            'qtr': 4,
            'qualiti': 2,
            'qvc': 1,
            'radio': 1,
            'real': 7,
            'receiv': 1,
            'recognit': 1,
            'record': 3,
            'refresh': 1,
            'region': 2,
            'releas': 1,
            'repres': 4,
            'requir': 1,
            'research': 1,
            'respons': 1,
            'restaur': 1,
            'retail': 3,
            'review': 2,
            'rout': 1,
            'router': 2,
            'sale': 6,
            'satisfact': 1,
            'scan': 1,
            'school': 4,
            'scienc': 3,
            'search': 1,
            'season': 2,
            'secretari': 7,
            'secur': 1,
            'separ': 1,
            'septemb': 1,
            'server': 5,
            'servic': 10,
            'shack': 1,
            'sheet': 1,
            'shop': 1,
            'side': 1,
            'signal': 1,
            'skill': 1,
            'slide': 1,
            'social': 1,
            'societi': 2,
            'softwar': 1,
            'solari': 1,
            'sold': 2,
            'south': 1,
            'special': 2,
            'specialist': 3,
            'spring': 1,
            'sql': 2,
            'st.': 1,
            'state': 2,
            'state-of-the-art': 1,
            'station': 2,
            'stock': 2,
            'store': 4,
            'street': 1,
            'student': 3,
            'studi': 1,
            'studio': 6,
            'style': 1,
            'suit': 1,
            'summer': 1,
            'super': 1,
            'supervis': 2,
            'switch': 3,
            'system': 2,
            'tank': 1,
            'tax': 1,
            'technic': 1,
            'technician': 1,
            'technolog': 8,
            'teeth': 1,
            'telemarket': 2,
            'televis': 1,
            'temporari': 2,
            'throughout': 1,
            'ticket': 1,
            'today\\xe2\\u20ac\\u2122': 2,
            'tool': 1,
            'topolog': 1,
            'train': 1,
            'transact': 1,
            'travel': 3,
            'troubleshoot': 2,
            'two': 1,
            'uml': 1,
            'univers': 4,
            'unix': 2,
            'use': 4,
            'valu': 1,
            'verizon': 1,
            'video': 2,
            'visio': 1,
            'visual': 3,
            'walmart': 1,
            'wang': 1,
            'web': 2,
            'white': 1,
            'window': 1,
            'wing': 1,
            'winner': 1,
            'wireless': 1,
            'word': 6,
            'wordperfect': 2,
            'work': 5,
            'write': 2,
            'xhtml': 1,
            'xml': 2,
            'xp': 2,
            'year': 1,
            'york': 1}),
  'F'),
 (FreqDist({'--': 3,
            '2': 1,
            '25': 1,
            'adept': 1,
            'advanc': 1,
            'android': 2,
            'app': 1,
            'c': 1,
            'cakephp': 1,
            'case': 1,
            'client': 1,
            'codeignit': 1,
            'collabor': 1,
            'cost': 1,
            'detect': 1,
            'develop': 7,
            'devic': 1,
            'driver': 2,
            'face': 2,
            'factori': 1,
            'fix': 1,
            'follow': 1,
            'hand': 1,
            'held': 1,
            'hourli': 1,
            'imag': 1,
            'includ': 1,
            'job': 1,
            'laravel': 1,
            'linux': 1,
            'long': 1,
            'magento': 1,
            'maintain': 1,
            'mobil': 1,
            'morph': 1,
            'mvvm': 1,
            'os': 1,
            'pattern': 1,
            'php/mysql': 1,
            'prefer': 1,
            'provid': 1,
            'recognit': 2,
            'relationship': 1,
            'repositori': 1,
            'scraper': 1,
            'scrapi': 1,
            'selenium': 1,
            'server': 1,
            'servic': 1,
            'smile': 1,
            'solut': 1,
            'speech': 1,
            'sql': 1,
            'strive': 1,
            'studio': 1,
            'task': 1,
            'term': 2,
            'us': 1,
            'use': 2,
            'ver': 1,
            'web': 1,
            'webapi': 1,
            'window': 1,
            'wordpress/woocommerc': 1}),
  'M'),
 (FreqDist({'--': 40,
            'cart': 1,
            'css': 1,
            'experi': 1,
            'follow': 1,
            'html': 1,
            'industri': 1,
            'onlin': 1,
            'php': 2,
            'respons': 1,
            'shop': 1,
            'special': 1,
            'websit': 1,
            'work': 1}),
  'M'),
 (FreqDist({'abl': 1,
            'assign': 1,
            'bilingu': 1,
            'complet': 1,
            'comput': 1,
            'data': 2,
            'dedic': 1,
            'develop': 1,
            'effici': 1,
            'entri': 2,
            'environ': 1,
            'fast-pac': 1,
            'goal-ori': 1,
            'hard': 1,
            'last': 1,
            'meticul': 1,
            'multitask': 1,
            'organ': 1,
            'pressur': 1,
            'problem': 1,
            'profici': 1,
            'self-motiv': 1,
            'skill': 4,
            'solv': 1,
            'special': 1,
            'strong': 2,
            'superior': 1,
            'task': 3,
            'technic': 1,
            'time': 1,
            'variou': 2,
            'web': 1,
            'well': 1,
            'work': 4,
            'year': 1}),
  'M'),
 (FreqDist({'300+': 1,
            'also': 3,
            'articl': 3,
            'automobil': 1,
            'build': 1,
            'carri': 1,
            'client': 1,
            'cruis': 1,
            'done': 2,
            'etc': 1,
            'except': 1,
            'far': 1,
            'french': 1,
            'gaf': 3,
            'medicin': 1,
            'monument': 1,
            'one': 1,
            'page': 1,
            'part': 1,
            'profil': 1,
            'project': 2,
            'quit': 1,
            'research': 1,
            'review': 1,
            'rewrit': 1,
            'secur': 1,
            'seen': 3,
            'spanish': 1,
            'subject': 1,
            'system': 1,
            't-shirt': 1,
            'url': 1,
            'varieti': 1,
            'whose': 1,
            'write': 1,
            'written': 2}),
  'M'),
 (FreqDist({'5': 1,
            'alway': 1,
            'app': 1,
            'client': 1,
            'develop': 3,
            'everi': 1,
            'everyth': 1,
            'freelanc': 1,
            'goal': 1,
            'hi': 1,
            'independ': 1,
            'keep': 1,
            'orient': 1,
            'person': 1,
            'requir': 1,
            'sake': 1,
            'self': 1,
            'technolog': 1,
            'updat': 1,
            'web': 1,
            'will': 1,
            'years.i': 1}),
  'M'),
 (FreqDist({'adept': 1,
            'illustr': 1,
            'portfolio': 1,
            'recent': 1,
            'recreat': 1,
            'vector': 1,
            'work': 1}),
  'M'),
 (FreqDist({'commun': 1,
            'excel': 1,
            'expert': 1,
            'great': 1,
            'greet': 1,
            'happi': 1,
            'immediately.ch': 1,
            'intermediari': 1,
            'look': 1,
            'part': 1,
            'php': 1,
            'programm': 1,
            'project': 1,
            'role': 1,
            'sever': 1,
            'similar': 1,
            'skill': 1,
            'stan': 1,
            'start': 1,
            'time': 1,
            'work': 2,
            'would': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.net': 1,
            '2.0,3.5,4.0': 1,
            '8.5': 1,
            'bengal': 1,
            'colleg': 1,
            'comput': 1,
            'engin': 1,
            'exp': 1,
            'framework': 1,
            'includ': 1,
            'microsoft': 1,
            'pass': 1,
            'scienc': 1,
            'ssi': 1,
            'ssr': 1,
            'technolog': 1,
            'univers': 1,
            'wcf': 1,
            'wpf': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.-': 2,
            '10': 1,
            '15+': 1,
            '20+': 1,
            'android': 2,
            'develop': 2,
            'etc': 1,
            'experi': 2,
            'expert': 1,
            'googl': 1,
            'includ': 1,
            'integr': 1,
            'locat': 1,
            'maintenance.-': 1,
            'map': 1,
            'messag': 1,
            'mobil': 1,
            'profici': 1,
            'sdk': 1,
            'servic': 1,
            'softwar': 1,
            'year': 3}),
  'M'),
 (FreqDist({'portfolio': 1}), 'M'),
 (FreqDist({'5': 1,
            'book': 1,
            'c': 1,
            'command': 1,
            'experi': 1,
            'good': 1,
            'java': 1,
            'program': 2,
            'publish': 1,
            'silverlight': 1,
            'thank': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.net': 2,
            '2.0': 1,
            '2008': 2,
            '3': 2,
            'adob': 1,
            'associ': 1,
            'base': 1,
            'basi': 1,
            'best': 1,
            'c': 1,
            'compani': 1,
            'consist': 1,
            'cs4': 1,
            'css': 1,
            'custom': 1,
            'develop': 3,
            'dhtml': 1,
            'enterpris': 1,
            'etc': 1,
            'expand': 1,
            'experi': 1,
            'flash': 1,
            'follow': 1,
            'global': 1,
            'great': 1,
            'html': 1,
            'india': 11,
            'industri': 1,
            'innov': 1,
            'jsp': 1,
            'kingdom': 1,
            'last': 1,
            'long': 1,
            'look': 1,
            'ltd': 1,
            'ms': 1,
            'nation': 1,
            'overal': 1,
            'packag': 1,
            'partner': 1,
            'photoshop': 1,
            'provid': 2,
            'pvt': 1,
            'qualiti': 1,
            'relat': 1,
            'servic': 3,
            'sinc': 1,
            'softwar': 1,
            'sql': 1,
            'support': 1,
            'technolog': 1,
            'term': 1,
            'trivedi': 1,
            'uk': 4,
            'unit': 2,
            'us': 1,
            'vb.net': 1,
            'web': 1,
            'websit': 2,
            'xml': 1,
            'year': 1,
            'yr': 1}),
  'M'),
 (FreqDist({'*web': 1,
            '2.0': 1,
            'activ': 1,
            'avail': 1,
            'best': 1,
            'big': 1,
            'bookmark': 1,
            'build': 1,
            'compani': 2,
            'comput': 1,
            'develop': 1,
            'differ': 2,
            'directori': 2,
            'effort': 1,
            'engin': 1,
            'entri': 1,
            'etc': 1,
            'exert': 1,
            'experi': 1,
            'experienc': 1,
            'expos': 1,
            'fast': 1,
            'follow': 1,
            'good': 1,
            'guarante': 1,
            'hire': 1,
            'involv': 1,
            'job': 2,
            'link': 2,
            'list': 1,
            'local': 2,
            'lot': 1,
            'opportun': 1,
            'optim': 2,
            'orient': 1,
            'page': 2,
            'particularli': 1,
            'post': 1,
            'provid': 1,
            'qualiti': 1,
            'relat': 1,
            'render': 1,
            'satisfi': 1,
            'search': 1,
            'seek': 1,
            'self': 1,
            'skill': 1,
            'small': 1,
            'smm': 1,
            'someon': 1,
            'specif': 1,
            'submiss': 1,
            'thing': 1,
            'time': 1,
            'use': 1,
            'well': 1,
            'will': 1,
            'work': 2}),
  'F'),
 (FreqDist({'12+': 1,
            '2': 1,
            'colleagu': 1,
            'dotnet': 1,
            'experi': 1,
            'project': 1,
            'technolog': 1,
            'year': 1}),
  'M'),
 (FreqDist({'15': 1,
            '25': 1,
            'adob': 1,
            'advertis': 1,
            'alway': 1,
            'art': 2,
            'artist': 2,
            'audio': 1,
            'band': 1,
            'beauti': 1,
            'behind': 1,
            'busi': 1,
            'captiv': 1,
            'card': 1,
            'contempl': 1,
            'convey': 1,
            'creat': 1,
            'creativ': 1,
            'current': 1,
            'daili': 1,
            'design': 1,
            'desir': 1,
            'embrac': 1,
            'empir': 1,
            'experi': 1,
            'explos': 1,
            'femal': 1,
            'import': 1,
            'intrus': 1,
            'leav': 1,
            'lyricist': 1,
            'magazin': 1,
            'main': 1,
            'make': 1,
            'mean': 1,
            'music': 2,
            "n't": 1,
            'needless': 1,
            'nois': 1,
            'observ': 1,
            'primarili': 1,
            'profession': 1,
            'project': 2,
            'purpos': 1,
            'qualiti': 1,
            'rang': 1,
            'record': 2,
            'road': 1,
            'see': 1,
            'shot': 1,
            'signag': 1,
            'sorri': 1,
            'southern': 1,
            'stage': 1,
            'suit': 1,
            'viabl': 1,
            'visual': 2,
            'vocalist': 2,
            'voic': 1,
            'want': 1,
            'within': 1,
            'wo': 1,
            'work': 2,
            'year': 2}),
  'F'),
 (FreqDist({'5+': 1,
            'autom': 1,
            'bot': 1,
            'creat': 1,
            'current': 1,
            'develop': 2,
            'engin': 1,
            'experi': 1,
            'main': 1,
            'php': 1,
            'platform': 1,
            'plugin': 1,
            'softwar': 2,
            'web': 1,
            'wordpress': 1,
            'year': 1}),
  'M'),
 (FreqDist({'client': 1,
            'custom': 1,
            'design': 1,
            'experienc': 1,
            'extrem': 1,
            'lot': 1,
            'offlin': 1,
            'satisfact': 1,
            'score': 1,
            'sound': 1,
            'well': 1,
            'work': 1}),
  'M'),
 (FreqDist({'10': 2,
            '2.': 1,
            '3.': 1,
            '7.': 1,
            'android': 1,
            'angular': 1,
            'area': 1,
            'backbon': 1,
            'browser': 1,
            'compani': 1,
            'develop': 1,
            'expertis': 1,
            'express': 1,
            'framework': 1,
            'includ': 1,
            'io': 1,
            'iphon': 1,
            'javascript': 1,
            'jqueri': 2,
            'js': 2,
            'last': 1,
            'less': 1,
            'medium': 1,
            'mobil': 1,
            'node': 1,
            'oscommerce6': 1,
            'phantom': 1,
            'phonegap': 1,
            'php': 1,
            'rang': 1,
            'react': 1,
            'ror': 1,
            'site': 1,
            'small': 1,
            'start-up': 1,
            'use': 1,
            'version': 1,
            'websit': 1,
            'wide': 1,
            'year': 1,
            'zend': 1}),
  'M'),
 (FreqDist({'hello': 1}), 'M'),
 (FreqDist({'anim': 1,
            'articl': 1,
            'blog': 1,
            'blue': 1,
            'busi': 1,
            'client': 2,
            'custom': 2,
            'data': 1,
            'deliv': 1,
            'design': 2,
            'develop': 1,
            'entri': 1,
            'establish': 1,
            'expertis': 1,
            'field': 1,
            'focu': 1,
            'freelanc': 1,
            'full': 1,
            'give': 1,
            'graphic': 1,
            'group': 1,
            'help': 1,
            'long': 1,
            'manner': 1,
            'object': 2,
            'philippin': 1,
            'primari': 2,
            'profession': 1,
            'program': 1,
            'project': 1,
            'provid': 1,
            'rang': 1,
            'relationship': 1,
            'requir': 1,
            'satisfact': 2,
            'second': 1,
            'servic': 3,
            'strive': 1,
            'term': 1,
            'time': 1,
            'top-notch': 1,
            'understand': 1,
            'us': 1,
            'web': 1,
            'wordpress': 1,
            'write': 1}),
  'F'),
 (FreqDist({"'m": 1,
            '2004': 1,
            '2005': 1,
            '2006': 1,
            '3d': 1,
            '4d': 1,
            '7': 1,
            'abob': 1,
            'accept': 1,
            'access': 2,
            'adob': 1,
            'aftereffect': 1,
            'applic': 2,
            'area': 1,
            'ask': 1,
            'asp': 1,
            'asp.net': 1,
            'automat': 1,
            'avail': 1,
            'believ': 1,
            'best': 1,
            'build': 1,
            'c': 2,
            'c++': 1,
            'c/c++': 1,
            'career': 1,
            'cascad': 1,
            'cinema': 1,
            'circuit': 1,
            'client': 1,
            'compani': 1,
            'compat': 1,
            'comput': 2,
            'css': 1,
            'custom': 1,
            'databas': 1,
            'decid': 1,
            'deliv': 1,
            'design': 1,
            'develop': 4,
            'drive': 1,
            'ecdl': 1,
            'effort': 1,
            'even': 1,
            'excel': 1,
            'experi': 1,
            'experience.in': 1,
            'expertis': 1,
            'faculti': 1,
            'forward': 1,
            'freelanc': 1,
            'ga': 1,
            'guaranti': 1,
            'help': 1,
            'impress': 2,
            'inform': 2,
            'integr': 2,
            'java': 1,
            'javascript': 2,
            'jsp': 1,
            'knowledg': 1,
            'languag': 2,
            'larg': 1,
            'licens': 1,
            'linux': 1,
            'local': 1,
            'look': 1,
            'lua': 2,
            'make': 2,
            'manag': 1,
            'matlab': 1,
            'max': 1,
            'microcomput': 1,
            'microsoft': 3,
            'mod': 1,
            'mt': 1,
            'mysql': 1,
            'object-ori': 1,
            'offic': 1,
            'part': 1,
            'pascal': 1,
            'pawn': 2,
            'peopl': 1,
            'perfectionist': 1,
            'petroleum': 1,
            'photoshop': 1,
            'php': 2,
            'plc': 1,
            'powerpoint': 1,
            'pro': 1,
            'program': 2,
            'project': 4,
            'put': 1,
            'python': 1,
            'relat': 1,
            'resum': 1,
            'sa': 2,
            'seek': 1,
            'server': 2,
            'sever': 1,
            'sharepoint': 1,
            'sheet': 1,
            'show': 1,
            'softwar': 1,
            'solid': 1,
            'soni': 1,
            'sql': 1,
            'start': 1,
            'studio': 1,
            'style': 1,
            'success': 1,
            'support': 1,
            'system': 1,
            'team': 1,
            'tri': 1,
            'ubuntu': 1,
            'univers': 1,
            'upcom': 1,
            'use': 4,
            'variou': 1,
            'vega': 1,
            'visual': 2,
            'websit': 1,
            'word': 1,
            'work': 3,
            'xml': 1,
            'year': 1}),
  'M'),
 (FreqDist({'detail': 1, 'master': 1}), 'M'),
 (FreqDist({'articles-': 1,
            'blog': 1,
            'client': 3,
            'content': 2,
            'content-': 1,
            'everi': 1,
            'gener': 1,
            'guarante': 1,
            'happier': 1,
            'meet': 1,
            'onlin': 1,
            'posts-': 1,
            'prolif': 1,
            'provid': 1,
            'reports-': 1,
            'seo': 1,
            'servic': 1,
            'specif': 1,
            'transact': 1,
            'usual': 1,
            'websit': 1}),
  'M'),
 (FreqDist({"'s": 1,
            'confidenti': 1,
            'copywrit': 1,
            'cost-effect': 1,
            'degre': 1,
            'english-russian': 1,
            'forward': 1,
            'high': 1,
            'im': 1,
            'linguist': 1,
            'look': 1,
            'master': 1,
            'nativ': 1,
            'proofreading/edit': 1,
            'provid': 2,
            'qualiti': 1,
            'quick': 1,
            'russian': 1,
            'servic': 1,
            'speaker': 1,
            'transcript': 1,
            'translat': 1,
            'turnaround': 1,
            'type': 1,
            'ukrainian': 4,
            'work': 1}),
  'F'),
 (FreqDist({"''": 1,
            '2007': 1,
            '``': 1,
            'act': 2,
            'actor': 1,
            'also': 1,
            'anim': 1,
            'assist': 1,
            'brazilian': 1,
            'cartoon': 1,
            'cast': 1,
            'charact': 1,
            'creation': 1,
            'direct': 1,
            'director': 1,
            'dub': 2,
            'durat': 1,
            'e': 1,
            'english': 1,
            'help': 1,
            'main': 1,
            'mmorpg': 1,
            'movi': 1,
            'one': 2,
            'portugues': 1,
            'produc': 1,
            'relev': 1,
            'seri': 1,
            'start': 1,
            'team': 1,
            'translat': 1,
            'tv': 1,
            'voic': 2,
            'war': 1,
            'wizard': 1,
            'work': 2}),
  'M'),
 (FreqDist({'develop': 1,
            'experi': 1,
            'freelanc': 1,
            'full': 1,
            'php/mysql': 1,
            'time': 1,
            'wordpress': 1}),
  'M'),
 (FreqDist({'articl': 1,
            'assist': 1,
            'avail': 1,
            'blog': 1,
            'condit': 1,
            'contract': 1,
            'draft': 1,
            'editor': 1,
            'etc': 1,
            'experienc': 1,
            'polici': 1,
            'post': 1,
            'privaci': 1,
            'research': 1,
            'review': 1,
            'term': 1,
            'websit': 1,
            'writer': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '--': 3,
            'applic': 1,
            'develop': 1,
            'etc': 1,
            'flash': 2,
            'game': 1,
            'part': 1,
            'portfolio': 1,
            'see': 1}),
  'M'),
 (FreqDist({'2.0': 1,
            '2000': 1,
            '2003': 1,
            '2007': 1,
            '2010': 1,
            '3.0': 1,
            '3.5': 1,
            'access': 1,
            'applic': 3,
            'base': 1,
            'basic': 1,
            'bill': 1,
            'c': 1,
            'co.': 1,
            'control': 2,
            'current': 1,
            'databas': 1,
            'desktop': 1,
            'develop': 4,
            'excel': 2,
            'experi': 2,
            'expertis': 2,
            'framework': 1,
            'i.e': 2,
            'includ': 2,
            'infragist': 2,
            'instant': 1,
            'intens': 1,
            'interest': 1,
            'interop': 1,
            'librari': 1,
            'lie': 3,
            'ms': 2,
            'mysql': 1,
            'offic': 3,
            'outlook': 1,
            'parti': 1,
            'profici': 1,
            'provid': 1,
            'server': 1,
            'solut': 2,
            'special': 2,
            'sql': 1,
            'telecom': 1,
            'telerik': 1,
            'third': 1,
            'tool': 1,
            'use': 1,
            'vba': 2,
            'version': 1,
            'visual': 1,
            'wpf': 1,
            'xp': 1,
            'year': 1}),
  'M'),
 (FreqDist({'2014.': 1,
            '5+': 1,
            'acquir': 1,
            'attend': 1,
            'august': 1,
            'bachelor': 1,
            'design': 2,
            'ecommerc': 1,
            'firm': 1,
            'freelanc': 1,
            'interact': 1,
            'media': 2,
            'project': 1,
            'rang': 1,
            'school': 1,
            'web': 2,
            'websit': 1,
            'work': 2,
            'year': 1}),
  'F'),
 (FreqDist(), 'M'),
 (FreqDist({'3': 1,
            '3d': 1,
            'artist': 1,
            'best': 1,
            'employ': 1,
            'experi': 1,
            'freelanc': 1,
            'give': 1,
            'home': 1,
            'layout': 1,
            'max': 1,
            'maya': 1,
            'model': 1,
            'mudbox': 1,
            'overal': 1,
            'photoshop': 1,
            'special': 1,
            'start': 1,
            'textur': 1,
            'util': 1,
            'work': 1,
            'year': 1,
            'zbrush': 1}),
  'M'),
 (FreqDist({'2009': 1,
            'applic': 1,
            'asp.net': 1,
            'basi': 1,
            'busi': 1,
            'c': 1,
            'like': 1,
            'long': 1,
            'mainli': 1,
            'new': 1,
            'open': 1,
            'program': 1,
            'regular': 1,
            'relat': 1,
            'sinc': 1,
            'softwar': 1,
            'technolog': 1,
            'term': 1,
            'vb.net': 1,
            'web': 1,
            'window': 1,
            'work': 3,
            'would': 1}),
  'M'),
 (FreqDist({'100': 1,
            'better': 1,
            'cent': 1,
            'design': 1,
            'edit': 1,
            'guarante': 1,
            'highest': 1,
            'lay': 1,
            'look': 1,
            'love': 1,
            'make': 1,
            'per': 1,
            'proofread': 1,
            'read': 1,
            'satisfact': 1,
            'standard': 1,
            'strive': 1,
            'thing': 1,
            'work': 1,
            'write': 1}),
  'F'),
 (FreqDist({'book': 1,
            'gener': 1,
            'love': 2,
            'proofread': 1,
            'sinc': 1,
            'text': 1,
            'translat': 1,
            'word': 1,
            'work': 2,
            'young': 1}),
  'F'),
 (FreqDist({'...': 5,
            '20': 1,
            '35': 1,
            '42': 1,
            'alway': 1,
            'artist': 1,
            'blog': 1,
            'born': 1,
            'brazil': 1,
            'brazilian': 1,
            'cartoon': 1,
            'cartoonist': 1,
            'come': 1,
            'comic': 1,
            'could': 1,
            'current': 1,
            'de': 1,
            'dia': 2,
            'draw': 3,
            'enjoy': 1,
            'even': 1,
            'guto': 2,
            'hi': 1,
            'hope': 2,
            'illustr': 1,
            'invit': 1,
            'janeiro': 1,
            'keep': 1,
            'like': 1,
            'live': 2,
            'name': 1,
            'old': 1,
            'perhap': 1,
            'profession': 1,
            'publish': 1,
            'realli': 1,
            'rio': 1,
            'southern': 1,
            'talk': 1,
            'togeth': 1,
            'visit': 1,
            'work': 4,
            'write': 1,
            'year': 4}),
  'M'),
 (FreqDist({'among': 1,
            'challeng': 1,
            'competit': 1,
            'develop': 1,
            'especi': 1,
            'fast': 1,
            'field': 1,
            'go': 1,
            'good': 1,
            'great': 1,
            'import': 1,
            'know': 1,
            'look': 1,
            'member': 1,
            'new': 1,
            'object': 1,
            'play': 1,
            'project': 2,
            'role': 1,
            'search': 1,
            'skill': 1,
            'societi': 1,
            'util': 1,
            'whole': 1,
            'world': 2}),
  'M'),
 (FreqDist({'account': 2,
            'approach': 1,
            'area': 1,
            'background': 1,
            'busi': 1,
            'certif': 1,
            'develop': 1,
            'distribut': 1,
            'enabl': 1,
            'experi': 2,
            'financ': 1,
            'guid': 1,
            'long-term': 1,
            'market': 1,
            'profession': 1,
            'provid': 1,
            'provis': 1,
            'servic': 2,
            'softwar': 1,
            'technic': 1,
            'translat': 1,
            'travel': 1,
            'well': 1}),
  'F'),
 (FreqDist({'brand': 1,
            'peopl': 1,
            'product': 1,
            'servic': 1,
            'stori': 1,
            'tell': 1}),
  'M'),
 (FreqDist({'2009': 1,
            'addit': 1,
            'also': 1,
            'articl': 1,
            'blogger': 1,
            'client': 1,
            'enhanc': 1,
            'enthusiast': 1,
            'gimp': 1,
            'photo': 1,
            'photographi': 1,
            'satisfi': 1,
            'sinc': 1,
            'use': 1,
            'work': 2,
            'writer': 2}),
  'M'),
 (FreqDist({'databas': 1,
            'definit': 1,
            'design': 1,
            'languag': 1,
            'motiv': 1,
            'program': 1,
            'requir': 1,
            'self': 1,
            'sever': 1,
            'skill': 1}),
  'M'),
 (FreqDist({'applic': 1,
            'articl': 1,
            'audio': 1,
            'comput': 1,
            'experi': 1,
            'file': 1,
            'inspir': 1,
            'knowledg': 1,
            'ms': 1,
            'offic': 1,
            'profici': 1,
            'transcrib': 1,
            'troubleshoot': 1,
            'variou': 1,
            'video': 1,
            'write': 1}),
  'M'),
 (FreqDist({'2d': 2,
            '3d': 2,
            '7': 2,
            'anim': 2,
            'architectur': 2,
            'busi': 4,
            'channel': 1,
            'commerci': 1,
            'compani': 2,
            'complet': 1,
            'creat': 1,
            'develop': 1,
            'e': 1,
            'excel': 1,
            'experi': 1,
            'explan': 2,
            'freelanc': 2,
            'ground': 1,
            'hello': 1,
            'imag': 2,
            'industri': 1,
            'last': 1,
            'learn': 1,
            'market': 1,
            'opportun': 1,
            'pleas': 1,
            'product': 1,
            'project': 1,
            'rang': 1,
            'seek': 1,
            'self': 1,
            'small': 1,
            'special': 1,
            'start': 1,
            'video': 5,
            'vishal': 1,
            'visit': 1,
            'walk': 2,
            'watch': 1,
            'web': 2,
            'wide': 1,
            'work': 2,
            'year': 2,
            'youtub': 1}),
  'M'),
 (FreqDist({'.net': 1,
            '5': 1,
            'access': 1,
            'actionscript': 1,
            'adob': 2,
            'ajax': 1,
            'area': 1,
            'around': 1,
            'asp': 1,
            'best': 1,
            'c': 1,
            'contact': 1,
            'corel': 1,
            'corpor': 1,
            'css': 1,
            'custom': 1,
            'design': 5,
            'detail': 1,
            'develop': 2,
            'dhtml': 1,
            'discuss': 1,
            'draw': 1,
            'expertis': 1,
            'field': 1,
            'flash': 1,
            'hesit': 1,
            'illustr': 1,
            'java': 1,
            'javascript': 1,
            'last': 1,
            'macromedia': 2,
            'mani': 1,
            'ms-sql': 1,
            'mysql': 1,
            'photoshop': 1,
            'php': 1,
            'profession': 1,
            'program': 2,
            'project': 1,
            'provid': 1,
            'quark': 1,
            'solut': 1,
            'thank': 1,
            'us': 1,
            'web': 4,
            'work': 1,
            'world.w': 1,
            'xml': 1,
            'xpress': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            "'s": 1,
            'degre': 1,
            'help': 1,
            'hope': 1,
            'job': 1,
            'love': 1,
            'master': 1,
            'profession': 1,
            'realli': 1,
            'translat': 1}),
  'F'),
 (FreqDist({'.net': 1,
            '5': 1,
            'analysi': 1,
            'applic': 2,
            'architect': 1,
            'background': 1,
            'bring': 1,
            'complet': 1,
            'design': 1,
            'develop': 4,
            'engin': 1,
            'enterpris': 1,
            'ethic': 1,
            'excel': 1,
            'experi': 2,
            'innov': 1,
            'interest': 1,
            'j2ee': 3,
            'lifecycl': 1,
            'linux': 1,
            'motiv': 1,
            'multi-ti': 1,
            'object-ori': 1,
            'open': 1,
            'problem': 1,
            'provid': 1,
            'senior': 1,
            'servic': 1,
            'softwar': 1,
            'solid': 1,
            'solut': 1,
            'sourc': 1,
            'special': 1,
            'technolog': 1,
            'togeth': 1,
            'unix': 1,
            'use': 1,
            'util': 1,
            'web': 2,
            'work': 1,
            'workplac': 1,
            'xml/xslt': 1,
            'year': 1}),
  'M'),
 (FreqDist({'experi': 1,
            'freelance.com': 1,
            'hire': 1,
            'like': 1,
            'market.i': 1,
            'project': 1,
            'sector': 1,
            'share': 1,
            'well': 1,
            'work': 1,
            'would': 1}),
  'M'),
 (FreqDist({'2nd': 1,
            '4': 2,
            'b.a': 1,
            'cgpa': 2,
            'chittagong': 1,
            'current': 1,
            'honor': 1,
            'philosophi': 1,
            'scale': 2,
            'semest': 1,
            'studi': 1,
            'trust': 1,
            'univers': 1,
            'universityresult': 2}),
  'M'),
 (FreqDist({'--': 56,
            '-book': 1,
            '3rd': 1,
            '9': 1,
            'advisori': 1,
            'android': 1,
            'app': 1,
            'applic': 3,
            'c': 1,
            'cake': 1,
            'calendar': 1,
            'class': 1,
            'cm': 1,
            'content': 1,
            'design': 4,
            'develop': 2,
            'domain': 1,
            'ecommerc': 1,
            'educ': 1,
            'erp': 1,
            'exam': 1,
            'experi': 1,
            'expert': 1,
            'extens': 1,
            'financi': 1,
            'follow': 1,
            'form': 1,
            'html5': 1,
            'human': 1,
            'insur': 1,
            'inventori': 1,
            'io': 1,
            'joomla': 1,
            'logo': 1,
            'manag': 7,
            'microsoft': 1,
            'mobil': 1,
            'modul': 1,
            'ms': 1,
            'mvc': 1,
            'parti': 1,
            'patient': 1,
            'php': 2,
            'properti': 1,
            'psd': 1,
            'rental': 1,
            'resourc': 1,
            'schedul': 1,
            'school': 1,
            'server': 1,
            'site': 3,
            'sourc': 1,
            'sql': 1,
            'system': 4,
            'telerik': 1,
            'templat': 1,
            'tool': 1,
            'wcf': 1,
            'web': 3,
            'window': 1,
            'wordpress': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"''": 9,
            "'s": 1,
            '15': 1,
            '16': 1,
            '2': 5,
            '3': 1,
            '4': 1,
            '``': 9,
            'anim': 3,
            'annedroid': 2,
            'battl': 1,
            'cat': 1,
            'channel': 1,
            'current': 1,
            'dan': 3,
            'dino': 3,
            'dog': 1,
            'effect': 1,
            'episod': 2,
            'featur': 1,
            'feet': 1,
            'film': 1,
            'follow': 1,
            'histori': 1,
            'lead': 1,
            'linkedin': 1,
            'maya': 1,
            'odd': 1,
            'photoshop': 1,
            'project': 1,
            'season': 8,
            'seri': 7,
            'show': 1,
            'special': 1,
            'tank': 1,
            'tv': 7,
            'vimeo': 1,
            'visual': 1,
            'work': 2}),
  'F'),
 (FreqDist({'--': 68,
            '-\\xe2\\u20ac\\xa2': 1,
            '.\\xe2\\u20ac\\xa2': 1,
            '1.': 1,
            '2': 1,
            '2.': 1,
            '3.': 1,
            '4': 1,
            '4.': 1,
            '5.': 1,
            '6.': 1,
            '7.': 1,
            '\\xe2\\u20ac\\xa2': 7,
            'agil': 1,
            'ajax': 1,
            'android': 1,
            'api': 1,
            'applic': 5,
            'area': 1,
            'attent': 1,
            'backbon': 1,
            'base': 2,
            'bootstrap': 2,
            'capabl': 1,
            'cm': 1,
            'code': 1,
            'codeignit': 4,
            'contact': 1,
            'cpanel': 1,
            'css': 1,
            'databas': 1,
            'design': 4,
            'develop': 10,
            'development.\\xe2\\u20ac\\xa2': 2,
            'development\\xe2\\u20ac\\xa2': 2,
            'dn': 3,
            'domain': 1,
            'e-commerc': 2,
            'e-shop': 1,
            'ecommerc': 1,
            'experi': 7,
            'experienc': 1,
            'facebook': 1,
            'framework': 4,
            'git': 1,
            'hospit': 1,
            'hrm': 1,
            'indian': 1,
            'joomla': 2,
            'jqueri': 2,
            'list': 1,
            'magento': 1,
            'manag': 10,
            'methodolog': 1,
            'mobil': 1,
            'modul': 3,
            'multi': 1,
            'mysql': 2,
            'peopl': 1,
            'php': 4,
            'platform': 1,
            'point': 1,
            'project': 3,
            'psd': 1,
            'raw': 2,
            'registrar': 1,
            'research': 1,
            'respons': 2,
            'sale': 1,
            'school': 1,
            'sdlc': 1,
            'sinc': 1,
            'site': 1,
            'sourc': 1,
            'strong': 1,
            'subvers': 1,
            'system': 4,
            'task': 1,
            'theme': 1,
            'ui': 1,
            'use': 2,
            'valid': 1,
            'w3c': 1,
            'web': 4,
            'websit': 3,
            'whmc': 1,
            'wordpress': 2,
            'work': 2,
            'wp': 1,
            'write': 1,
            'year': 2,
            'yii': 2,
            'zend': 2,
            'zendframework': 1}),
  'M'),
 (FreqDist({'applic': 1,
            'custom': 1,
            'data': 2,
            'design': 1,
            'experi': 1,
            'larg': 1,
            'mani': 1,
            'process': 1,
            'softwar': 1,
            'web': 1,
            'work': 1}),
  'M'),
 (FreqDist({'account': 1,
            'ago': 1,
            'anyth': 1,
            'job': 1,
            'long': 1,
            'lot': 1,
            "n't": 1,
            'start': 1,
            'time': 1}),
  'M'),
 (FreqDist({'7+': 1, 'experi': 1, 'industri': 1, 'profession': 1, 'year': 1}),
  'M'),
 (FreqDist({'christian': 1,
            'ezin': 1,
            'googl': 1,
            'incred': 1,
            'plain': 1,
            'platinum': 1,
            'tri': 1,
            'writer': 1}),
  'M'),
 (FreqDist({'...': 2,
            'album': 1,
            'base': 1,
            'best': 1,
            'brand': 1,
            'busi': 1,
            'card': 1,
            'cover': 1,
            'design': 3,
            'experienc': 1,
            'fastest': 1,
            'graphic': 1,
            'great': 1,
            'ident': 1,
            'layout': 1,
            'letterhead': 1,
            'logo': 1,
            'nc': 1,
            'price': 1,
            'turnaround': 1,
            'web': 1,
            'work': 1}),
  'F'),
 (FreqDist({'1967': 1,
            'articl': 1,
            'birth': 1,
            'copi': 1,
            'direct': 1,
            'job': 1,
            'maker': 1,
            'marri': 1,
            'write': 1}),
  'M'),
 (FreqDist({'abil': 1,
            'account': 1,
            'advertis': 1,
            'applic': 1,
            'articl': 1,
            'aspect': 1,
            'best': 3,
            'best.i': 1,
            'command': 1,
            'comput': 1,
            'confid': 1,
            'consid': 1,
            'copy-writ': 1,
            'coral': 1,
            'craigslist': 1,
            'custom': 1,
            'declar': 1,
            'design': 5,
            'draw': 1,
            'edit': 1,
            'experi': 1,
            'expert': 1,
            'expertis': 1,
            'field': 1,
            'flash': 1,
            'free': 1,
            'furnish': 1,
            'get': 1,
            'good': 2,
            'graphic': 2,
            'grate': 1,
            'grip': 1,
            'hand': 1,
            'herebi': 1,
            'highli': 2,
            'highly-organ': 1,
            'illustr': 1,
            'independ': 1,
            'inform': 1,
            'knowledg': 2,
            'logo': 2,
            'market': 1,
            'meet': 1,
            'member.': 1,
            'ms': 1,
            'mx': 1,
            'name': 1,
            'needs.abl': 1,
            'network': 1,
            'offic': 1,
            'ofth': 1,
            'organ': 1,
            'photoshop': 2,
            'posting.': 1,
            'pressure.depend': 1,
            'profession': 1,
            'project.i': 1,
            'provid': 2,
            'quality.\\xc2\\xbb': 1,
            'responsible.\\xc2\\xbb': 1,
            'review': 1,
            'scienc': 1,
            'self-motiv': 1,
            'serv': 1,
            'servic': 1,
            'skill': 1,
            'strong': 1,
            'team': 3,
            'true': 1,
            'us.\\xc2\\xbb': 1,
            'use': 1,
            'web': 1,
            'web-design': 1,
            'well': 2,
            'work': 5,
            'would': 1,
            'write': 2}),
  'M'),
 (FreqDist({'actor': 1,
            'afford': 1,
            'anyth': 1,
            'certainli': 1,
            'charact': 2,
            'commerci': 1,
            'contact': 1,
            'custom': 1,
            'demo': 2,
            'documentari': 1,
            'door': 1,
            'dramat': 1,
            'erni': 2,
            'fast': 1,
            'found': 1,
            'free': 1,
            'friendli': 2,
            'guy': 1,
            'like': 1,
            'look': 1,
            'messag': 1,
            'moment': 1,
            'movi': 1,
            'narrat': 1,
            'need': 1,
            'next': 1,
            'phone': 1,
            'pleas': 1,
            'profession': 3,
            'sampl': 1,
            'sincer': 1,
            'site': 1,
            'sound': 1,
            'studio': 1,
            'take': 1,
            'trailer': 2,
            'voic': 5,
            'web': 1,
            'whether': 1,
            'you\\xe2\\u20ac\\u2122r': 1,
            'you\\xe2\\u20ac\\u2122v': 1}),
  'M'),
 (FreqDist({'10': 1,
            'bangladesh': 1,
            'check': 1,
            'dhaka': 1,
            'experi': 1,
            'give': 1,
            'good': 1,
            'h': 1,
            'hi': 1,
            'onlin': 2,
            'opportun': 1,
            'pleas': 1,
            'r': 1,
            'u': 1,
            'want': 1,
            'work': 2,
            'year': 1}),
  'F'),
 (FreqDist({'10': 1,
            '300': 1,
            'abil': 1,
            'ambiti': 1,
            'assist': 1,
            'author': 2,
            'bookkeep': 1,
            'bulk': 1,
            'busi': 1,
            'collect': 1,
            'commun': 1,
            'compani': 2,
            'creat': 1,
            'creativ': 1,
            'design': 1,
            'differ': 1,
            'distribut': 1,
            'divers': 3,
            'eager': 1,
            'employ': 1,
            'employe': 1,
            'endeavor': 1,
            'enterpris': 1,
            'entrepreneuri': 1,
            'estat': 1,
            'excel': 1,
            'excess': 1,
            'experi': 4,
            'forc': 1,
            'found': 1,
            'freelanc': 1,
            'goal': 1,
            'grown': 1,
            'includ': 1,
            'labor': 1,
            'last': 1,
            'mail': 1,
            'manag': 2,
            'market': 1,
            'numer': 1,
            'organ': 1,
            'parad': 1,
            'process': 1,
            'project': 1,
            'properti': 1,
            'publish': 1,
            'real': 1,
            'retail': 1,
            'sale': 1,
            'self-motiv': 1,
            'shop': 1,
            'site': 1,
            'skill': 1,
            'sold': 1,
            'strong': 2,
            'success': 1,
            'supervis': 1,
            'web': 1,
            'wholesal': 1,
            'writer': 1,
            'year': 1}),
  'M'),
 (FreqDist({'portfolio': 1}), 'M'),
 (FreqDist({'also': 1,
            'document': 1,
            'edit': 1,
            'english': 1,
            'experi': 1,
            'french': 1,
            'german': 1,
            'good': 1,
            'non-techn': 1,
            'portugues': 1,
            'proofread': 1,
            'spanish': 1,
            'technic': 1,
            'translat': 1,
            'understand': 1}),
  'M'),
 (FreqDist({'administr': 1,
            'assist': 1,
            'data': 1,
            'email': 1,
            'entri': 1,
            'gener': 1,
            'lead': 1,
            'market': 1,
            'research': 1,
            'seo': 1,
            'support': 1,
            'virtual': 1,
            'web': 1}),
  'M'),
 (FreqDist({"'m": 4,
            "'s": 1,
            'alreadi': 1,
            'bit': 1,
            'busi': 1,
            'cash': 1,
            'constantli': 1,
            'cours': 1,
            'drop': 1,
            'expertis': 1,
            'extra': 1,
            'find': 1,
            'fit': 1,
            'footbal': 2,
            'gener': 1,
            'graduat': 1,
            'hello': 1,
            'hobbi': 1,
            'interest': 1,
            'job': 1,
            'journal': 1,
            'leagu': 1,
            'led': 1,
            'let': 1,
            'messag': 1,
            'nation': 1,
            'new': 1,
            'paper': 1,
            'premier': 1,
            'profess': 1,
            'project': 1,
            'publish': 1,
            'see': 1,
            'take': 1,
            'togeth': 1,
            'univers': 1,
            'well': 1,
            'world': 1,
            'write': 3}),
  'M'),
 (FreqDist({'also': 1,
            'appli': 1,
            'engin': 1,
            'medic': 1,
            'program': 1,
            'scienc': 1,
            'softwar': 1,
            'studi': 1,
            'talent': 1}),
  'M'),
 (FreqDist({'commerc': 1, 'current': 1, 'sterl': 1, 'work': 1}), 'M'),
 (FreqDist({'...': 1,
            '10': 1,
            'ajax': 1,
            'develop': 1,
            'experi': 1,
            'like': 1,
            'mysql': 1,
            'php': 1,
            'server': 1,
            'sql': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"''": 1,
            "'m": 1,
            '8': 1,
            '9': 1,
            'accent': 3,
            'also': 1,
            'american': 3,
            'born': 1,
            'corpor': 1,
            'demo': 1,
            'experi': 1,
            'fluent': 1,
            'go': 1,
            'includ': 1,
            'latest': 1,
            'middl': 1,
            'necessari': 1,
            'one': 1,
            'perfect': 1,
            'project': 2,
            'rais': 1,
            'regular': 1,
            'see': 1,
            'southern': 1,
            'speak': 1,
            'texa': 1,
            'train': 1,
            'tv': 1,
            'video': 2,
            'web': 1,
            'woman': 1,
            'year': 1}),
  'F'),
 (FreqDist({'6': 1,
            'alway': 2,
            'deliv': 1,
            'design': 1,
            'designer.i': 1,
            'disappoint': 1,
            'extraordinari': 1,
            'freelanc': 1,
            'full-tim': 1,
            'graphic': 2,
            'hello': 1,
            'never': 1,
            'passion': 1,
            'qualiti': 1,
            'someth': 1,
            'strong': 1,
            'tri': 2,
            'visitor': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'10': 1,
            'experi': 1,
            'field': 1,
            'follow': 1,
            'progress': 1,
            'year': 1}),
  'F'),
 (FreqDist({'administr': 2,
            'assist': 1,
            'busi': 1,
            'custom': 1,
            'dedic': 1,
            'develop': 1,
            'experi': 1,
            'manag': 1,
            'offic': 1,
            'profession': 1,
            'retail': 1,
            'servic': 1,
            'skill': 2,
            'supervisor': 1,
            'support': 1,
            'technic': 1,
            'versatil': 1}),
  'F'),
 (FreqDist({'comfort': 1,
            'current': 1,
            'earn': 2,
            'enough': 1,
            'experi': 1,
            'extra': 1,
            'gain': 1,
            'good': 1,
            'graduat': 1,
            'job': 1,
            'life': 1,
            'money': 1,
            'privat': 1,
            'school': 1,
            'spend': 1,
            'teach': 2,
            'want': 1,
            'well': 1}),
  'M'),
 (FreqDist({'6': 1,
            'address': 1,
            'along': 1,
            'client\\xe2\\u20ac\\u2122': 1,
            'continu': 1,
            'creat': 1,
            'custom': 1,
            'done': 1,
            'effect': 1,
            'everi': 1,
            'exampl': 1,
            'experi': 1,
            'feel': 1,
            'free': 1,
            'goal': 1,
            'hello': 1,
            'high-qual': 1,
            'includ': 1,
            'larg': 1,
            'name': 1,
            'need': 1,
            'number': 1,
            'pleas': 1,
            'profil': 1,
            'project': 1,
            'return': 1,
            'seo': 2,
            'specialist': 1,
            'specif': 1,
            'techniqu': 1,
            'use': 1,
            'veriti': 1,
            'view': 1,
            'way': 1,
            'websit': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'also': 1,
            'build': 1,
            'busi': 2,
            'colleg': 1,
            'degre': 1,
            'experi': 1,
            'insid': 1,
            'manag': 1,
            'note': 1,
            'outsid': 1,
            'point': 1,
            'product': 1,
            'run': 1,
            'sell': 2,
            'sever': 1,
            'small': 1,
            'stand': 1,
            'technolog': 1,
            'worth': 1,
            'year': 1}),
  'M'),
 (FreqDist({'effect': 1,
            'effici': 1,
            'manner': 1,
            'mba': 1,
            'muhammad': 1,
            'name': 1,
            'work': 1}),
  'M'),
 (FreqDist({'alway': 1,
            'analyt': 1,
            'commun': 1,
            'databas': 1,
            'deal': 1,
            'excel': 1,
            'massiv': 1,
            'masteri': 1,
            'processingdata': 1,
            'provid': 1,
            'respons': 1,
            'skill': 1,
            'stick': 1,
            'strength': 1,
            'time-limit': 1,
            'verbal': 1,
            'written': 1}),
  'F'),
 (FreqDist({'creativ': 1,
            'effect': 1,
            'field': 1,
            'freelanc': 1,
            'interest': 1,
            'keen': 1,
            'look': 1,
            'skill': 1,
            'use': 1,
            'work': 1}),
  'M'),
 (FreqDist({'also': 1,
            'compani': 1,
            'convert': 1,
            'custom': 1,
            'help': 1,
            'html': 1,
            'meet': 1,
            'need': 2,
            'php': 1,
            'programm': 1,
            'psd': 2,
            'servic': 1,
            'sometim': 1,
            'theme': 1,
            'wordpress': 1}),
  'M'),
 (FreqDist({'15': 1,
            'base': 1,
            'clear': 1,
            'cut': 1,
            'design': 2,
            'especi': 1,
            'experi': 1,
            'graphic': 1,
            'great': 1,
            'knowledg': 1,
            'logo': 1,
            'new': 1,
            'photoshop': 1,
            'rang': 1,
            'signag': 1,
            'work': 1,
            'year': 1,
            'zealand': 1}),
  'M'),
 (FreqDist({"'s": 1,
            'abil': 2,
            'accomplish': 1,
            'accuraci': 2,
            'adword': 1,
            'ajax': 1,
            'also': 1,
            'anim': 1,
            'anyth': 1,
            'apart': 1,
            'api': 1,
            'applic': 1,
            'blog': 1,
            'bring': 1,
            'busi': 4,
            'cart': 1,
            'clear': 1,
            'client': 1,
            'combin': 1,
            'commun': 1,
            'conceptu': 1,
            'css2': 1,
            'css3': 1,
            'deadlines.i': 1,
            'design': 3,
            'develop': 1,
            'doctrin': 1,
            'domain': 1,
            'done': 1,
            'drupal': 1,
            'e-commerc': 1,
            'english': 1,
            'etc..': 1,
            'excel': 1,
            'experienc': 1,
            'facilit': 1,
            'flash': 1,
            'forum': 1,
            'framework': 1,
            'function': 2,
            'global': 1,
            'googl': 2,
            'hello': 1,
            'highest': 1,
            'highli': 2,
            'html/xhtml': 1,
            'integr': 1,
            'javascript': 1,
            'jira': 1,
            'joomla': 1,
            'jqueri': 1,
            'keep': 1,
            'magento': 1,
            'manag': 1,
            'map': 1,
            'method': 1,
            'model': 1,
            'monitor': 1,
            'mysql': 1,
            'name': 1,
            'need': 1,
            'object': 1,
            'open': 1,
            'oracl': 1,
            'orm': 1,
            'out-of-the-box': 1,
            'paypal': 2,
            'peopl': 1,
            'person': 1,
            'phone': 1,
            'photoshop': 1,
            'phpbb': 1,
            'possibl': 1,
            'pride': 2,
            'profession': 2,
            'project': 1,
            'psd': 1,
            'punctual': 1,
            'registr': 1,
            'relat': 1,
            'satisfact': 1,
            'scalabl': 1,
            'seo': 1,
            'server': 1,
            'set': 1,
            'sever': 1,
            'shop': 1,
            'solut': 2,
            'speak': 1,
            'specialti': 1,
            'strategi': 2,
            'technolog': 1,
            'templat': 1,
            'traffic': 1,
            'transfer': 1,
            'us': 1,
            'usabl': 1,
            'util': 1,
            'utmost': 1,
            'voic': 1,
            'web': 4,
            'websit': 1,
            'wordpress': 1,
            'would': 1,
            'you.i': 1,
            'zend': 1}),
  'M'),
 (FreqDist({'2': 1,
            '4': 1,
            'b.': 1,
            'compani': 1,
            'comput': 1,
            'develop': 1,
            'engin': 1,
            'experi': 1,
            'experienc': 1,
            'intern': 1,
            'istanbul': 1,
            'jsp': 1,
            'php': 1,
            'project': 1,
            'sql': 1,
            'univers': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'21': 1,
            'abil': 1,
            'achiev': 1,
            'adher': 1,
            'allow': 1,
            'applic': 2,
            'assist': 2,
            'busi': 3,
            'challeng': 1,
            'client': 1,
            'commun': 1,
            'complianc': 1,
            'confid': 1,
            'core': 1,
            'corpor': 2,
            'develop': 1,
            'directli': 1,
            'director': 1,
            'done': 1,
            'email': 1,
            'establish': 1,
            'execut': 1,
            'experi': 2,
            'follow': 1,
            'get': 1,
            'goal': 2,
            'handl': 1,
            'help': 1,
            'import': 1,
            'knowledg': 1,
            'larg': 1,
            'leav': 1,
            'main': 1,
            'manag': 4,
            'multipl': 1,
            'non-cor': 2,
            'object': 1,
            'offic': 3,
            'oper': 3,
            'organiz': 1,
            'overal': 1,
            'overse': 1,
            'partner': 1,
            'plan': 1,
            'polici': 1,
            'presid': 2,
            'priorit': 1,
            'problem': 1,
            'procedur': 1,
            'product': 1,
            'profession': 1,
            'project': 1,
            'provid': 1,
            'regul': 1,
            'report': 1,
            'resolv': 1,
            'result': 1,
            'simultan': 1,
            'skill': 2,
            'solv': 1,
            'streamlin': 1,
            'system': 1,
            'task': 4,
            'time': 1,
            'transfer': 1,
            'understand': 1,
            'variou': 1,
            'vice': 1,
            'virtual': 1,
            'web-bas': 1,
            'work': 1,
            'year': 1}),
  'F'),
 (FreqDist({'adword': 1, 'googl': 1, 'specialist': 1}), 'M'),
 (FreqDist({"'m": 1,
            '10': 1,
            'along': 1,
            'backbonej': 1,
            'backend': 1,
            'css': 1,
            'develop': 1,
            'emberj': 1,
            'experi': 3,
            'freelanc': 1,
            'good': 1,
            'html': 1,
            'javascript': 2,
            'jqueri': 1,
            'knowledg': 1,
            'librari': 1,
            'look': 1,
            'multipl': 1,
            'nodej': 1,
            'opportun': 1,
            'profession': 1,
            'program': 1,
            'python': 1,
            'use': 1,
            'web': 1,
            'year': 1}),
  'F'),
 (FreqDist({'consider': 1,
            'cover': 1,
            'creat': 1,
            'design': 1,
            'gain': 1,
            'independ': 1,
            'letter': 1,
            'ms': 2,
            'program': 1,
            'resum': 1,
            'skill': 1,
            'templat': 1,
            'word': 2}),
  'F'),
 (FreqDist({"'s": 1,
            '10': 1,
            'avoid': 1,
            'check': 1,
            'come': 1,
            'complet': 1,
            'deal': 1,
            'direct': 1,
            'find': 1,
            'forward': 1,
            'fraud': 1,
            'frustrat': 1,
            'graphic': 3,
            'hard': 1,
            'hear': 1,
            'hope': 1,
            'internet': 1,
            'know': 2,
            'listen': 1,
            'look': 1,
            'minut': 1,
            'much': 1,
            "n't": 1,
            'need': 1,
            'passion': 1,
            'point': 1,
            'portfolio': 1,
            'previous': 1,
            'price': 1,
            'process': 1,
            'provid': 1,
            'qualiti': 1,
            'real': 1,
            'reason': 1,
            'reliabl': 1,
            'result': 2,
            'right': 1,
            'say': 1,
            'servic': 2,
            'someon': 1,
            'soon': 1,
            'speak': 1,
            'stuff': 1,
            'sure': 1,
            'talk': 1,
            'thought': 1,
            'time': 1,
            'time-wast': 1,
            'top': 1,
            'tri': 1,
            'use': 1,
            'walk': 1,
            'want': 1,
            'within': 1,
            'would': 1,
            'years.i': 1}),
  'M'),
 (FreqDist({'5800': 1,
            '7': 1,
            '800': 1,
            'client': 1,
            'compani': 1,
            'consum': 1,
            'design': 1,
            'dolev': 2,
            'environ': 1,
            'etc': 1,
            'event': 1,
            'freelanc': 1,
            'graphic': 1,
            'last': 1,
            'mac': 1,
            'manag': 1,
            'market': 1,
            'pc': 1,
            'pharmaceut': 1,
            'prepress': 1,
            'relat': 1,
            'right': 1,
            'sinc': 1,
            'unit': 1,
            'work': 3}),
  'M'),
 (FreqDist({'15': 1,
            '5': 1,
            '9+': 1,
            'app': 2,
            'applic': 1,
            'cross': 1,
            'develop': 2,
            'exp': 1,
            'io': 1,
            'mobil': 1,
            'platform': 1,
            'year': 1}),
  'M'),
 (FreqDist({'enjoy': 1,
            'like': 2,
            'littl': 1,
            'respect': 1,
            'respons': 1,
            'sens': 1,
            'thing': 1,
            'treat': 1,
            'urgent': 1}),
  'M'),
 (FreqDist({'3+': 1,
            'also': 1,
            'applic': 1,
            'base': 1,
            'best': 1,
            'busi': 1,
            'businesses.mi': 1,
            'code': 1,
            'compani': 1,
            'compet': 1,
            'complet': 1,
            'core': 1,
            'css': 1,
            'deliv': 1,
            'design': 2,
            'develop': 3,
            'dhtml': 1,
            'eclips': 1,
            'ee': 1,
            'end-end': 1,
            'enterpris': 1,
            'experi': 2,
            'hibern': 1,
            'hmtl': 1,
            'includ': 1,
            'java': 2,
            'jpa': 1,
            'jsf': 1,
            'knowledg': 1,
            'leverag': 1,
            'lie': 1,
            'look': 1,
            'manag': 1,
            'mysql': 1,
            'netbean': 1,
            'new': 1,
            'opportun': 1,
            'php': 1,
            'project': 1,
            'qualiti': 1,
            'rang': 1,
            'site': 1,
            'small': 1,
            'softwar': 1,
            'spring': 1,
            'sql': 1,
            'startup': 1,
            'term': 1,
            'usabl': 1,
            'use': 2,
            'web': 1,
            'websit': 2,
            'wide': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            "'ve": 1,
            '7+': 1,
            'adob': 1,
            'musician': 1,
            'painter': 1,
            'photo': 1,
            'photograph': 1,
            'photoshop.i': 1,
            'use': 1,
            'well': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '6-7': 1,
            'assembl': 1,
            'c': 2,
            'c++': 1,
            'copenhagen': 1,
            'current': 1,
            'develop': 1,
            'field': 1,
            'languag': 2,
            'past': 1,
            'program': 1,
            'softwar': 1,
            'strong': 1,
            'student': 1,
            'talent': 1,
            'univers': 1,
            'use': 1,
            'work': 1,
            'x86': 1,
            'year': 1}),
  'M'),
 (FreqDist({'19': 2,
            'architect': 2,
            'architectur': 1,
            'builder': 1,
            'consult': 2,
            'degre': 1,
            'design': 5,
            'detail': 1,
            'draw': 1,
            'estim': 1,
            'experi': 1,
            'four': 1,
            'includ': 1,
            'interior': 2,
            'lanscap': 2,
            'meubel': 2,
            'model': 1,
            'motiv': 1,
            'pleasant': 1,
            'present': 1,
            'primari': 1,
            'receiv': 1,
            'render': 1,
            'secondari': 1,
            'servic': 1,
            'talent': 1,
            'work': 1,
            'year': 3}),
  'M'),
 (FreqDist({'.net': 2,
            'abil': 1,
            'administr': 2,
            'along': 1,
            'arab': 1,
            'benefit': 1,
            'collegi': 1,
            'consid': 1,
            'databas': 1,
            'date': 1,
            'develop': 1,
            'english': 1,
            'experi': 1,
            'forward': 1,
            'freelanc': 1,
            'handl': 1,
            'hire': 1,
            'independ': 1,
            'interpret': 1,
            'look': 1,
            'owe': 1,
            'pleas': 1,
            'portfolio': 1,
            'project': 3,
            'requir': 1,
            'skill': 1,
            'sound': 1,
            'team': 1,
            'tenur': 1,
            'till': 1,
            'type': 1,
            'uk': 1,
            'work': 2}),
  'M'),
 (FreqDist({'1': 1,
            '2': 1,
            '3': 1,
            '4': 1,
            '7': 1,
            'achiev': 1,
            'activ': 3,
            'adapt': 1,
            'agent': 5,
            'ajax': 1,
            'algorithm': 1,
            'also': 4,
            'analysi': 1,
            'appli': 3,
            'applianc': 6,
            'applic': 2,
            'approach': 4,
            'assembl': 1,
            'asset': 1,
            'avail': 1,
            'b': 1,
            'base': 5,
            'basic': 1,
            'benefit': 1,
            'bundl': 3,
            'busi': 1,
            'c': 1,
            'captur': 1,
            'challeng': 1,
            'chang': 2,
            'check': 1,
            'cloud': 3,
            'code': 2,
            'collabor': 2,
            'compet': 1,
            'complianc': 1,
            'composit': 1,
            'comput': 1,
            'concept': 1,
            'configur': 4,
            'consist': 1,
            'consumpt': 2,
            'contain': 1,
            'contributor': 2,
            'control': 1,
            'creat': 1,
            'current': 1,
            'custom': 1,
            'cycl': 2,
            'dashboard': 1,
            'db2': 1,
            'deep': 1,
            'defin': 1,
            'depend': 2,
            'deploy': 2,
            'design': 4,
            'design3': 1,
            'determin': 1,
            'develop': 2,
            'display': 1,
            'durat': 1,
            'dynam': 1,
            'e': 1,
            'easili': 1,
            'enabl': 1,
            'engin': 1,
            'environ': 1,
            'etc': 3,
            'execut': 1,
            'experienc': 1,
            'expert': 1,
            'explor': 2,
            'extens': 2,
            'familiar': 5,
            'fashion': 1,
            'final': 1,
            'follow': 2,
            'framework': 10,
            'function': 2,
            'futur': 1,
            'global': 1,
            'good': 1,
            'googl': 1,
            'group\\xe2\\u20ac\\u2122': 1,
            'growth': 1,
            'guarante': 1,
            'ibm': 2,
            'idea': 1,
            'implement': 2,
            'individu': 1,
            'initi': 1,
            'innov': 1,
            'insid': 3,
            'interfac': 1,
            'involv': 2,
            'j2ee': 2,
            'java': 1,
            'jdbc': 1,
            'jndi': 1,
            'jsp': 1,
            'key': 2,
            'lab': 1,
            'lead': 2,
            'learn': 1,
            'less': 1,
            'lifecycl': 4,
            'like': 1,
            'live': 1,
            'local': 1,
            'machin': 1,
            'made': 1,
            'major': 1,
            'manag': 15,
            'mani': 1,
            'messag': 1,
            'migrat': 3,
            'model': 5,
            'monitor': 4,
            'multipl': 1,
            'name': 3,
            'new': 1,
            'obtain': 1,
            'offer': 1,
            'old': 1,
            'oo': 1,
            'oper': 1,
            'optim': 3,
            'osgi': 3,
            'paa': 6,
            'packag': 2,
            'pattern': 2,
            'perform': 5,
            'phase': 2,
            'plan': 1,
            'platform': 1,
            'point': 1,
            'polici': 1,
            'poor': 1,
            'popular': 1,
            'principl': 1,
            'process': 5,
            'product': 14,
            'program': 5,
            'project': 7,
            'python': 1,
            'real': 1,
            'real-tim': 1,
            'recogn': 1,
            'reduc': 1,
            'research': 3,
            'resourc': 2,
            'respons': 2,
            'rest': 1,
            'result': 1,
            'role': 2,
            'run': 2,
            'scalabl': 1,
            'scale': 1,
            'seri': 1,
            'servic': 3,
            'set': 1,
            'ship': 1,
            'shorten': 1,
            'simplifi': 2,
            'skill': 2,
            'softwar': 5,
            'solid': 2,
            'solut': 15,
            'specif': 1,
            'stack': 1,
            'state': 2,
            'statu': 1,
            'storag': 1,
            'strong': 1,
            'success': 1,
            'swg': 2,
            'system': 5,
            'take': 1,
            'task': 1,
            'tco': 1,
            'team': 7,
            'technic': 4,
            'technolog': 3,
            'time': 2,
            'togeth': 2,
            'top': 1,
            'topolog': 2,
            'typic': 1,
            'understand': 1,
            'unifi': 1,
            'us': 1,
            'usag': 1,
            'version': 2,
            'view': 1,
            'virtual': 14,
            'vm': 3,
            'way': 1,
            'web': 1,
            'webspher': 1,
            'wide': 1,
            'wire': 2,
            'world': 1,
            'ws-bpel': 2,
            'year': 1}),
  'M'),
 (FreqDist({'2005': 1,
            'drupal': 1,
            'engin': 1,
            'expertis': 1,
            'field': 1,
            'lead': 1,
            'like': 1,
            'magento': 1,
            'mnc': 1,
            'mysql': 1,
            'name': 1,
            'php': 1,
            'sharma': 1,
            'sinc': 1,
            'softwar': 1,
            'technolog': 1,
            'web': 1,
            'web-develop': 1,
            'wordpress': 1,
            'work': 2}),
  'M'),
 (FreqDist(), 'F'),
 (FreqDist({'\\xe2\\u0153\\xaa': 1,
            '\\xe2\\u20ac\\u201c': 1,
            'achiev': 1,
            'alloc': 1,
            'also': 1,
            'alway': 2,
            'analysi': 2,
            'articl': 1,
            'ask': 1,
            'base': 1,
            'basi': 2,
            'believ': 2,
            'blog': 1,
            'budget': 3,
            'busi': 1,
            'client': 1,
            'client\\xe2\\u20ac\\u2122': 1,
            'collabor': 1,
            'commun': 1,
            'consult': 2,
            'content': 1,
            'copi': 1,
            'copyedit': 1,
            'copywrit': 1,
            'creation': 1,
            'custom': 1,
            'data': 1,
            'deadlin': 1,
            'depend': 1,
            'draft': 1,
            'effect': 1,
            'email': 1,
            'expect': 1,
            'fulli': 1,
            'goal': 2,
            'good': 1,
            'help': 1,
            'hire': 1,
            'honest': 1,
            'improv': 1,
            'includ': 1,
            'keep': 1,
            'keyword': 1,
            'lie': 1,
            'love': 1,
            'market': 3,
            'meta': 1,
            "n't": 1,
            'need': 2,
            'offer': 1,
            'onsit': 1,
            'packag': 1,
            'page': 2,
            'path': 1,
            'prioriti': 1,
            'progress': 1,
            'qualiti': 1,
            'question': 1,
            'reason': 1,
            'regular': 1,
            'research': 1,
            'right': 1,
            'sale': 1,
            'seo': 1,
            'servic': 1,
            'set': 1,
            'small': 1,
            'stay': 1,
            'strategi': 1,
            'success': 1,
            'tactic': 1,
            'take': 1,
            'thing': 1,
            'top': 1,
            'toward': 1,
            'truth': 1,
            'type': 1,
            'understand': 1,
            'within': 1,
            'write': 5}),
  'M'),
 (FreqDist({'9+': 1,
            'ajax': 1,
            'develop': 1,
            'etc': 1,
            'experi': 1,
            'hibern': 1,
            'java': 1,
            'javascript': 1,
            'jqueri': 1,
            'jsp': 1,
            'php': 1,
            'spring': 1,
            'strut': 1,
            'web': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'administr': 1,
            'articl': 1,
            'blog': 1,
            'content': 2,
            'corpor': 1,
            'land': 1,
            'media': 1,
            'page': 1,
            'post': 1,
            'seo': 1,
            'social': 1}),
  'F'),
 (FreqDist({"''": 1,
            "'m": 2,
            '2009': 1,
            '``': 1,
            'applic': 1,
            'becam': 1,
            'busi': 1,
            'check': 1,
            'client': 1,
            'could': 1,
            'creat': 1,
            'creativ': 1,
            'current': 1,
            'describ': 1,
            'design': 4,
            'develop': 2,
            'digit': 1,
            'excit': 1,
            'expert': 1,
            'freelanc': 1,
            'front-end': 1,
            'hello': 1,
            'help': 1,
            'includ': 1,
            'individu': 1,
            'info': 1,
            'level': 1,
            'love': 1,
            'meaning': 1,
            'medium': 1,
            'mobil': 1,
            'partner': 1,
            'primari': 1,
            'product': 1,
            'profile.what': 1,
            'scienc': 1,
            'set': 1,
            'sinc': 2,
            'skill': 2,
            'small': 1,
            'startup': 1,
            'technolog': 1,
            'thank': 1,
            'think': 2,
            'ui-': 1,
            'websit': 1,
            'wider': 2}),
  'M'),
 (FreqDist({'base': 1,
            'commerci': 1,
            'editori': 1,
            'freelanc': 1,
            'includ': 1,
            'long': 1,
            'photo': 1,
            'photograph': 1,
            'photographi': 1,
            'portrait': 1,
            'vietnam': 1,
            'work': 1}),
  'M'),
 (FreqDist({'2007': 1,
            '4': 1,
            'abil': 1,
            'acquir': 1,
            'acut': 1,
            'almost': 1,
            'also': 2,
            'apart': 1,
            'appli': 1,
            'appreci': 1,
            'appropri': 1,
            'area': 1,
            'around': 1,
            'aspir': 1,
            'assess': 1,
            'australia': 1,
            'back': 2,
            'basi': 1,
            'believ': 1,
            'best': 1,
            'brought': 1,
            'capabl': 1,
            'commun': 2,
            'complet': 1,
            'confid': 1,
            'content': 1,
            'continu': 1,
            'corpor': 1,
            'cours': 1,
            'creation': 1,
            'critic': 1,
            'deadlin': 1,
            'degre': 1,
            'dilig': 1,
            'documentari': 1,
            'employ': 1,
            'english': 1,
            'enrich': 1,
            'entiti': 1,
            'exercis': 1,
            'expect': 1,
            'experi': 2,
            'feel': 1,
            'film-mak': 1,
            'focu': 1,
            'format': 1,
            'found': 1,
            'fund': 1,
            'gener': 2,
            'got': 1,
            'hcl': 1,
            'histor': 1,
            'ibm': 1,
            'ideal': 1,
            'impact': 1,
            'impecc': 1,
            'independ': 2,
            'india': 1,
            'indian': 1,
            'industri': 1,
            'initi': 1,
            'intuit': 1,
            'join': 1,
            'keen': 1,
            'languag': 1,
            'latest': 1,
            'least': 1,
            'mainstream': 1,
            'maintain': 1,
            'major': 1,
            'make': 1,
            'mass': 1,
            'master': 2,
            'materi': 1,
            'media': 1,
            'meet': 1,
            'modern': 2,
            'motiv': 1,
            'move': 1,
            "n't": 1,
            'offer': 1,
            'oper': 2,
            'part': 3,
            'period': 2,
            'perspect': 1,
            'plagiar': 1,
            'platform': 1,
            'play': 1,
            'point': 1,
            'polici': 1,
            'preced': 1,
            'present': 2,
            'profession': 2,
            'profici': 1,
            'prolif': 1,
            'prospect': 1,
            'publish': 1,
            'pursu': 1,
            'qualiti': 1,
            'quit': 2,
            'rare': 1,
            'referenc': 1,
            'regular': 1,
            'remuner': 1,
            'research': 1,
            'respect': 1,
            'revolv': 1,
            'scenario': 2,
            'seldom': 1,
            'servic': 1,
            'setup': 1,
            'sinc': 1,
            'skill': 2,
            'standard': 1,
            'style': 1,
            'success': 1,
            'supplement': 1,
            'technolog': 1,
            'text': 1,
            'think': 1,
            'time': 1,
            'transform': 1,
            'understand': 1,
            'urban': 1,
            'usag': 1,
            'variou': 1,
            'wherein': 1,
            'work': 1,
            'would': 2,
            'write': 2,
            'written': 3,
            'year': 2,
            'yet': 1}),
  'M'),
 (FreqDist({'6': 1,
            'also': 2,
            'apach': 1,
            'app': 1,
            'applic': 1,
            'base': 1,
            'bootstrap': 1,
            'capabl': 2,
            'case': 1,
            'code': 1,
            'codeignit': 1,
            'compani': 1,
            'cordova': 1,
            'cross': 1,
            'css3': 1,
            'design': 1,
            'develop': 2,
            'drupal': 1,
            'easili': 1,
            'everyth': 1,
            'execut': 1,
            'experi': 1,
            'field': 1,
            'fledg': 1,
            'foundat': 1,
            'framework': 1,
            'fulli': 1,
            'handl': 1,
            'hybrid': 1,
            'includ': 1,
            'joomla': 1,
            'laravel': 1,
            'last': 1,
            'layout': 1,
            'leader': 1,
            'level': 1,
            'logo': 1,
            'make': 1,
            'manag': 1,
            'medium': 1,
            'mobil': 1,
            'phonegap': 1,
            'php': 1,
            'platform': 1,
            'project': 2,
            'provid': 1,
            'senior': 1,
            'simpl': 1,
            'small': 2,
            'team': 2,
            'twitter': 1,
            'ui': 1,
            'web': 1,
            'websit': 1,
            'wordpress': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1, 'best': 1, 'choic': 1}), 'M'),
 (FreqDist({'commun': 1,
            'good': 1,
            'hard': 1,
            'includ': 1,
            'prove': 1,
            'realli': 1,
            'self': 1,
            'skill': 2,
            'speed': 1,
            'student': 1,
            'type': 1,
            'use': 1,
            'want': 1,
            'worker': 1}),
  'M'),
 (FreqDist({'37': 1,
            'delphi': 1,
            'develop': 1,
            'field': 1,
            'lot': 2,
            'moham': 1,
            'project': 1,
            'work': 1,
            'year': 2}),
  'M'),
 (FreqDist({'5': 1,
            'admin': 1,
            'assist': 1,
            'best': 1,
            'content': 1,
            'design': 1,
            'everyth': 1,
            'experi': 1,
            'great': 1,
            'handl': 1,
            'import': 1,
            'manag': 1,
            'much': 1,
            'payrol': 1,
            'place': 1,
            'qualiti': 1,
            'rang': 1,
            'strive': 1,
            'task': 1,
            'time': 1,
            'virtual': 1,
            'web': 2,
            'write': 1,
            'year': 1}),
  'M'),
 (FreqDist({'3d': 3,
            'accept': 1,
            'ampl': 1,
            'array': 1,
            'avail': 1,
            'best': 2,
            'challeng': 1,
            'compani': 1,
            'complet': 1,
            'confid': 1,
            'contract': 1,
            'cours': 1,
            'design': 7,
            'experi': 2,
            'field': 1,
            'fit': 1,
            'handl': 1,
            'hire': 2,
            'interest': 1,
            'interior': 1,
            'knowledg': 1,
            'look': 1,
            'lot': 1,
            'max': 1,
            'much': 1,
            'new': 1,
            'posit': 1,
            'practic': 1,
            'project': 1,
            'qualif': 1,
            'requir': 2,
            'segment': 1,
            'suit': 1,
            'take': 1,
            'think': 1,
            'today': 1,
            'vast': 1,
            'versatil': 1,
            'well': 2,
            'work': 1}),
  'M'),
 (FreqDist({'2007': 1,
            'ad': 1,
            'android': 1,
            'approach': 1,
            'attain': 1,
            'believ': 1,
            'best': 1,
            'busi': 1,
            'career': 1,
            'centric': 1,
            'cmmi': 1,
            'control': 1,
            'current': 1,
            'deal': 1,
            'dedic': 1,
            'design': 1,
            'develop': 2,
            'disciplin': 1,
            'document': 1,
            'effort': 1,
            'emphas': 1,
            'extens': 1,
            'futur': 1,
            'get': 1,
            'honesti': 1,
            'innov': 1,
            'invest': 1,
            'key': 1,
            'managementmobil': 1,
            'mind': 1,
            'mobil': 1,
            'optimum': 1,
            'output': 1,
            'own': 1,
            'php': 1,
            'platform': 1,
            'process': 1,
            'product': 1,
            'respons': 1,
            'softwar': 1,
            'solut': 1,
            'start': 1,
            'svn': 1,
            'team': 1,
            'valu': 1,
            'web': 1,
            'whatev': 1}),
  'M'),
 (FreqDist({'also': 1,
            'alway': 1,
            'believ': 1,
            'blog': 1,
            'complet': 1,
            'confid': 1,
            'custom': 1,
            'data': 1,
            'deliveri': 1,
            'develop': 1,
            'entri': 1,
            'experienc': 1,
            'get': 1,
            'good': 1,
            'home': 1,
            'job': 2,
            'local': 1,
            'make': 1,
            'offic': 1,
            'onlin': 1,
            'progress': 1,
            'project': 2,
            'provid': 1,
            'qualiti': 2,
            'relax': 1,
            'reli': 1,
            'report': 1,
            'result': 1,
            'satisfact': 2,
            'three': 1,
            'time': 1,
            'togeth': 1,
            'upto': 1,
            'us': 1,
            'web': 1,
            'webmast': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'freelanc': 1, 'programm': 1}), 'M'),
 (FreqDist({"'ll": 1,
            'also': 1,
            'client': 1,
            'ezinearticl': 1,
            'find': 1,
            'hubpag': 1,
            'world': 1,
            'write': 2}),
  'F'),
 (FreqDist({'activ': 1,
            'advanc': 1,
            'also': 1,
            'area': 1,
            'articl': 2,
            'assur': 1,
            'beauti': 1,
            'busi': 2,
            'content': 1,
            'disappoint': 1,
            'fit': 1,
            'follow': 1,
            'good': 1,
            'graduat': 1,
            'helium.com': 1,
            'henc': 1,
            'hi': 1,
            'hr': 1,
            'idea': 1,
            'interest': 2,
            'keen': 1,
            'manag': 1,
            'mostli': 1,
            'open': 1,
            'profess': 1,
            'relat': 1,
            'research': 1,
            'self-help': 1,
            'skills.if': 1,
            'topic': 1,
            'varieti': 1,
            'view': 1,
            'want': 1,
            'well': 1,
            'work': 2,
            'write': 2,
            'writer': 1}),
  'F'),
 (FreqDist({'autom': 1,
            'c': 1,
            'c++': 1,
            'databas': 1,
            'experi': 1,
            'html': 1,
            'java': 1,
            'macro': 1,
            'php': 1,
            'profession': 1,
            'qtp': 1,
            'softwar': 2,
            'test': 1,
            'vba': 1}),
  'M'),
 (FreqDist({"'m": 2,
            'also': 1,
            'c': 1,
            'comput': 1,
            'edit': 1,
            'good': 1,
            'java': 1,
            'offic': 1,
            'photo': 1,
            'php': 1,
            'program': 2,
            'romania': 1,
            'scienc': 1,
            'skill': 1,
            'student': 1,
            'tool': 1,
            'user': 1}),
  'M'),
 (FreqDist({'close': 1,
            'creativ': 1,
            'earn': 1,
            'extra': 1,
            'help': 1,
            'incom': 1,
            'love': 1,
            'pend': 1,
            'task': 1,
            'time': 1,
            'util': 1,
            'write': 1}),
  'M'),
 (FreqDist({'10': 1,
            '2': 1,
            'develop': 1,
            'experi': 1,
            'php/mysql': 1,
            'profession': 1,
            'scratch': 1,
            'swedish': 1,
            'websit': 1,
            'year': 1}),
  'M'),
 (FreqDist({'administr': 1,
            'busi': 3,
            'consult': 1,
            'day': 2,
            'entrepreneur': 1,
            'grow': 1,
            'help': 2,
            'need': 1,
            'offer': 1,
            'run': 1,
            'servic': 1,
            'small': 1,
            'special': 1,
            'varieti': 1,
            'wide': 1}),
  'F'),
 (FreqDist({"'re": 2,
            '4': 1,
            'also': 1,
            'alway': 1,
            'appear': 1,
            'appreci': 1,
            'articl': 1,
            'ask': 1,
            'back': 1,
            'build': 1,
            'busi': 1,
            'comment': 1,
            'complet': 1,
            'confid': 1,
            'cpa': 1,
            'craigslist': 1,
            'data': 1,
            'directori': 1,
            'done': 1,
            'entri': 1,
            'establish': 1,
            'expertis': 1,
            'feedback': 1,
            'field': 1,
            'gener': 1,
            'get': 1,
            'give': 1,
            'happi': 1,
            'import': 1,
            'internet': 1,
            'job': 1,
            'last': 1,
            'lead': 1,
            'link': 1,
            'long': 1,
            'main': 1,
            'mani': 1,
            'market': 1,
            'money': 1,
            'much': 1,
            'offpag': 1,
            'onpag': 1,
            'open': 1,
            'opportun': 1,
            'perfectli': 1,
            'post': 2,
            'project': 1,
            'qualiti': 1,
            'question': 1,
            'relationship': 1,
            'seo': 2,
            'servic': 3,
            'situat': 1,
            'sourc': 1,
            'special': 1,
            'submiss': 1,
            'success': 1,
            'term': 1,
            'thank': 1,
            'theme': 1,
            'thousand': 1,
            'us': 2,
            'valuabl': 1,
            'variou': 1,
            'year': 1}),
  'M'),
 (FreqDist({'20': 1,
            'academ': 1,
            'advic': 1,
            'b.a': 1,
            'background': 1,
            'class': 1,
            'commun': 1,
            'dedic': 1,
            'educ': 1,
            'effici': 1,
            'english': 6,
            'excel': 1,
            'experi': 1,
            'first': 1,
            'fluent': 1,
            'form': 1,
            'freelanc': 1,
            'high': 1,
            'husband': 1,
            'languag': 2,
            'level': 1,
            'linguist': 1,
            'love': 1,
            'm.a': 2,
            'manag': 1,
            'nativ': 1,
            'organis': 1,
            'polish': 2,
            'postgradu': 1,
            'profession': 1,
            'proficiency.reli': 1,
            'proofread': 1,
            'provid': 2,
            'san': 1,
            'servic': 2,
            'studi': 1,
            'teach': 1,
            'teacher': 1,
            'team': 1,
            'togeth': 1,
            'translat': 3,
            'two': 1,
            'univers': 2,
            'valuabl': 1,
            'warsaw': 2,
            'way': 1,
            'well': 1,
            'written': 1,
            'year': 1}),
  'F'),
 (FreqDist({'engin': 1, 'softwar': 1}), 'M'),
 (FreqDist({'develop': 1,
            'kindli': 1,
            'know': 1,
            'lead': 2,
            'let': 1,
            'manag': 1,
            'need': 1,
            'provid': 1,
            'system': 2,
            'vertic': 1}),
  'M'),
 (FreqDist({'8': 1,
            'ajax': 1,
            'analyz': 1,
            'attitud': 1,
            'best': 1,
            'cakephp': 1,
            'codeignit': 1,
            'commun': 1,
            'consist': 1,
            'consult': 1,
            'css': 1,
            'dbm': 1,
            'dedic': 1,
            'develop': 1,
            'dhtml': 1,
            'excel': 1,
            'git': 1,
            'goal': 1,
            'html/xhtml': 1,
            'html5': 1,
            'javascript': 1,
            'jqueri': 2,
            'json': 1,
            'last': 1,
            'magento': 1,
            'mssql': 1,
            'mysql': 1,
            'needs.with': 1,
            'oracl': 1,
            'php': 2,
            'postgresql': 1,
            'product': 1,
            'profession': 1,
            'provid': 2,
            'qualiti': 1,
            'quick': 1,
            'rail': 1,
            'rang': 1,
            'ror': 2,
            'rubi': 1,
            'skill': 1,
            'smarti': 1,
            'solut': 1,
            'svn': 1,
            'tool': 1,
            'tortois': 1,
            'turnaround': 1,
            'use': 1,
            'vss': 1,
            'websit': 1,
            'wide': 1,
            'wordpress': 1,
            'work': 3,
            'xhtml': 1,
            'xml': 1,
            'year': 1,
            'yui': 1,
            'zend': 1}),
  'F'),
 (FreqDist({'advanc': 1,
            'analysi': 1,
            'analyt': 1,
            'autom': 3,
            'built': 1,
            'career': 1,
            'client': 4,
            'code': 2,
            'complic': 1,
            'confid': 1,
            'creat': 1,
            'dashboard': 2,
            'decis': 1,
            'deliv': 1,
            'effici': 1,
            'etc': 1,
            'excel': 4,
            'freelanc': 1,
            'gain': 1,
            'global': 1,
            'gradual': 1,
            'help': 1,
            'improv': 1,
            'interact': 2,
            'later': 1,
            'like': 1,
            'long': 1,
            'lot': 1,
            'macro': 3,
            'manag': 1,
            'mi': 2,
            'microsoft': 1,
            'model': 1,
            'move': 1,
            'prepar': 1,
            'process': 1,
            'project': 3,
            'provid': 1,
            'qualiti': 1,
            'report': 8,
            'requir': 1,
            'research': 1,
            'result': 1,
            'save': 1,
            'start': 1,
            'support': 1,
            'time': 3,
            'toward': 1,
            'understand': 1,
            'use': 2,
            'variou': 1,
            'vba': 4,
            'web': 1,
            'work': 3,
            'write': 1}),
  'M'),
 (FreqDist({'also': 1,
            'articl': 1,
            'asia': 1,
            'confid': 1,
            'countri': 1,
            'current': 1,
            'definit': 1,
            'degre': 1,
            'design': 1,
            'disappoint': 1,
            'edit': 1,
            'english': 1,
            'first': 1,
            'freelanc': 1,
            'full': 1,
            'hand': 1,
            'high': 1,
            'inform': 1,
            'master': 1,
            'offer': 1,
            'produc': 1,
            'proofread': 1,
            'qualiti': 1,
            'relat': 1,
            'singapor': 1,
            'southeast': 1,
            'specialis': 1,
            'teach': 1,
            'therefor': 1,
            'time': 1,
            'travel': 1,
            'work': 2,
            'write': 1}),
  'F'),
 (FreqDist({'31': 1,
            'also': 1,
            'comput': 1,
            'degre': 1,
            'document': 1,
            'drive': 1,
            'ecdl': 1,
            'english': 3,
            'essay': 1,
            'european': 1,
            'experi': 1,
            'fulli': 2,
            'head': 1,
            'honour': 1,
            'independ': 1,
            'last': 1,
            'licenc': 1,
            'london': 1,
            'nativ': 1,
            'novel': 1,
            'outsid': 1,
            'pass': 1,
            'prestigi': 1,
            'proofread': 2,
            'qualifi': 2,
            'report': 1,
            'school': 1,
            'seven': 1,
            'speaker': 1,
            'teacher': 1,
            'use': 1,
            'year': 1}),
  'F'),
 (FreqDist({'alway': 1,
            'best': 1,
            'deliv': 1,
            'friendli': 1,
            'project': 1,
            'qualiti': 1,
            'respons': 1,
            'worker': 1}),
  'M'),
 (FreqDist({'...': 4,
            'also': 1,
            'coral': 1,
            'data': 1,
            'design': 2,
            'draw': 1,
            'earn': 1,
            'entri': 1,
            'farm': 1,
            'good': 1,
            'home': 1,
            'illustr': 1,
            'know': 1,
            'local': 1,
            'lot': 1,
            'member': 1,
            'money': 1,
            'photoshop': 1,
            'relev': 1,
            'sector': 1,
            'seo': 1,
            'target': 1,
            'town': 1,
            'web': 1,
            'work': 2,
            'worker': 1}),
  'M'),
 (FreqDist({'analysi': 1,
            'assur': 1,
            'attent': 1,
            'auditor': 3,
            'australian': 1,
            'catalogu': 1,
            'certainli': 1,
            'chart': 1,
            'compani': 1,
            'coordin': 1,
            'data': 2,
            'design': 1,
            'detail': 1,
            'engin': 1,
            'especi': 1,
            'evalu': 1,
            'expect': 1,
            'experi': 1,
            'extens': 1,
            'give': 1,
            'good': 2,
            'graph': 1,
            'includ': 1,
            'interpret': 1,
            'limit': 1,
            'long-term': 1,
            'major': 1,
            'manag': 2,
            'mani': 1,
            'mine': 1,
            'observ': 1,
            'oper': 1,
            'organ': 1,
            'point': 1,
            'post': 1,
            'precis': 1,
            'prepar': 1,
            'project': 1,
            'proof-read': 1,
            'qm': 1,
            'qualif': 1,
            'qualit': 1,
            'qualiti': 2,
            'quantit': 1,
            'questionnair': 1,
            'report': 3,
            'respons': 1,
            'skill': 1,
            'store': 1,
            'strongest': 1,
            'system': 1,
            'task': 1,
            'train': 1,
            'well-reput': 1,
            'work': 3,
            'write': 2,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '10.': 1,
            '2': 1,
            'adob': 1,
            'anim': 1,
            'asp.net': 1,
            'bachelor': 1,
            'c': 1,
            'comput': 1,
            'degre': 1,
            'electr': 1,
            'engin': 2,
            'enrol': 1,
            'faculti': 1,
            'high': 4,
            'im': 1,
            'inform': 1,
            'informat': 1,
            'knowledg': 10,
            'littl': 1,
            'master': 1,
            'maya': 1,
            'medium': 5,
            'model': 1,
            'project': 1,
            'skopj': 1,
            'softwar': 1,
            'studi': 1,
            'technolog': 1,
            'web': 1,
            'wpf': 1}),
  'M'),
 (FreqDist({'accept': 1,
            'ampl': 1,
            'array': 1,
            'avail': 1,
            'challeng': 1,
            'confid': 1,
            'data': 1,
            'entri': 1,
            'excel': 1,
            'experi': 2,
            'field': 1,
            'fit': 1,
            'handl': 1,
            'hire': 1,
            'knowledg': 1,
            'lot': 1,
            'much': 1,
            'new': 1,
            'practic': 1,
            'project': 1,
            'requir': 2,
            'segment': 1,
            'today': 1,
            'vast': 1,
            'versatil': 1,
            'well': 2,
            'work': 1,
            'worker': 1}),
  'M'),
 (FreqDist({"'m": 1,
            'abl': 1,
            'adob': 3,
            'compani': 1,
            'corel': 1,
            'creat': 1,
            'design': 1,
            'draw': 1,
            'firm': 1,
            'get': 1,
            'good': 1,
            'grant': 1,
            'graphic': 1,
            'ilustr': 1,
            'indesign': 1,
            'know': 1,
            'logotyp': 1,
            'order': 1,
            'packag': 1,
            'photoshop': 1,
            'print': 1,
            'product': 1,
            'program': 1,
            'qualiti': 1,
            'result': 1,
            'shortest': 1,
            'style': 1,
            'time': 1,
            'want': 1,
            'work': 2}),
  'F'),
 (FreqDist({'advertis': 1,
            'agenc': 1,
            'brand': 2,
            'find': 1,
            'get': 1,
            'help': 2,
            'hi': 1,
            'like': 1,
            'love': 1,
            'name': 1,
            'run': 1,
            'sydney': 1,
            'touch': 1,
            'work': 1,
            'would': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '.i': 1,
            '20': 1,
            '2d': 1,
            '3rd': 1,
            'comput': 2,
            'current': 1,
            'degre': 1,
            'design': 1,
            'dreamweav': 1,
            'experi': 1,
            'good': 1,
            'graphic': 2,
            'handl': 1,
            'internet': 2,
            'knowledg': 1,
            'lanka': 1,
            'ms': 1,
            'network': 1,
            'offic': 1,
            'oper': 1,
            'packag': 1,
            'photoshop': 1,
            'plat': 1,
            'previou': 1,
            'relat': 2,
            'research': 1,
            'sri': 1,
            'studi': 1,
            'system': 1,
            'thing': 1,
            'visual': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'10': 1,
            '2005': 1,
            'area': 1,
            'articl': 1,
            'content': 1,
            'develop': 1,
            'dreamweav': 1,
            'experi': 1,
            'expertis': 1,
            'firework': 1,
            'flash': 1,
            'keyword': 1,
            'market': 1,
            'ms': 1,
            'mx': 3,
            'network': 1,
            'offic': 1,
            'program': 1,
            'research': 1,
            'resum': 1,
            'seo': 1,
            'server': 1,
            'sql': 1,
            'suit': 1,
            'technic': 2,
            'technolog': 1,
            'vba': 1,
            'write': 5,
            'year': 1}),
  'M'),
 (FreqDist({'also': 2,
            'ampl': 1,
            'area': 1,
            'benefit': 1,
            'best': 1,
            'classifi': 2,
            'compani': 1,
            'copywrit': 4,
            'custom': 1,
            'data': 2,
            'deliv': 1,
            'employ': 2,
            'entri': 1,
            'execut': 1,
            'experi': 2,
            'experienc': 1,
            'expert': 2,
            'field': 1,
            'global': 1,
            'hire': 1,
            'knowledg': 1,
            'numer': 1,
            'post': 2,
            'process': 1,
            'skil': 1,
            'skill': 1,
            'sound': 1,
            'support': 1,
            'today': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'100+': 1,
            '8': 2,
            'ad': 1,
            'also': 1,
            'banner': 2,
            'bootstrap': 1,
            'bsc': 1,
            'busi': 1,
            'client': 1,
            'complet': 1,
            'custom': 1,
            'design': 5,
            'develop': 1,
            'educ': 1,
            'email': 1,
            'etc': 1,
            'flayer': 1,
            'foundat': 1,
            'front-end': 1,
            'graphic': 4,
            'gui': 1,
            'hon': 1,
            'html/css': 1,
            'html/html5': 1,
            'illustr': 1,
            'inform': 1,
            'interfac': 1,
            'javascript': 1,
            'joomla': 1,
            'jqueri': 1,
            'land': 1,
            'last': 2,
            'latest': 1,
            'layout': 2,
            'logo': 1,
            'mani': 1,
            'materi': 1,
            'navig': 1,
            'newslett': 1,
            'offer': 1,
            'overview': 1,
            'page': 2,
            'photoshop': 1,
            'psd': 2,
            'respons': 2,
            'set': 1,
            'technolog': 2,
            'tool': 1,
            'univers': 1,
            'user': 1,
            'visual': 1,
            'web': 3,
            'websit': 2,
            'wordpress': 1,
            'work': 1,
            'x': 1,
            'year': 1,
            'years+': 1,
            'zurb': 1}),
  'M'),
 (FreqDist({'applic': 1,
            'css': 1,
            'design': 1,
            'develop': 1,
            'javascript': 1,
            'latest': 1,
            'modern': 1,
            'php': 1,
            'semant': 1,
            'standard': 1,
            'websit': 1,
            'xhtml': 1}),
  'M'),
 (FreqDist({'...': 1,
            'among': 1,
            'articl': 1,
            'assist': 3,
            'call': 1,
            'content': 1,
            'copi': 1,
            'creation': 1,
            'data': 1,
            'edit': 1,
            'entri': 1,
            'featur': 1,
            'incom': 1,
            'ip': 1,
            'like': 1,
            'market': 1,
            'meta': 1,
            'other': 1,
            'pbx': 1,
            'phone': 1,
            'provid': 3,
            'research': 1,
            'seo': 1,
            'set': 1,
            'simultan': 1,
            'technic': 1,
            'voip': 1,
            'write': 1}),
  'F'),
 (FreqDist({'18': 1,
            '360': 1,
            '43': 1,
            'age': 1,
            'anim': 1,
            'art': 1,
            'compositor': 1,
            'custom': 1,
            'degre': 1,
            'design': 3,
            'director': 1,
            'editor': 1,
            'experi': 3,
            'fine': 1,
            'graphic': 1,
            'industri': 1,
            'knowledg': 1,
            'master': 1,
            'model': 1,
            'multimedia': 1,
            'non': 1,
            'panorama': 1,
            'photographi': 1,
            'post': 1,
            'product': 2,
            'special': 1,
            'specialti': 1,
            'vast': 1,
            'vr': 1,
            'websit': 1,
            'year': 1}),
  'F'),
 (FreqDist({'project': 1}), 'M'),
 (FreqDist({'answer': 1, 'ask': 1, 'name': 1, 'profession': 1, 'question': 1}),
  'F'),
 (FreqDist({'24': 1,
            'avail': 1,
            'fire': 1,
            'full': 1,
            'jamaica': 1,
            'job': 1,
            'male': 1,
            'seek': 1,
            'time': 1}),
  'M'),
 (FreqDist({'trainer': 1}), 'M'),
 (FreqDist({"'m": 2,
            "'s": 1,
            "'ve": 1,
            'action': 1,
            'addit': 1,
            'afford': 1,
            'articl': 1,
            'assign': 1,
            'assur': 1,
            'away': 1,
            'believ': 2,
            'besid': 1,
            'best': 1,
            'better': 1,
            'busi': 2,
            'career': 1,
            'chase': 1,
            'client': 3,
            'come': 1,
            'commit': 1,
            'complet': 1,
            'compos': 1,
            'compromis': 1,
            'content': 1,
            'creat': 1,
            'cut': 1,
            'degre': 1,
            'deliv': 1,
            'depend': 1,
            'devot': 1,
            'employ': 1,
            'environ': 1,
            'essay': 1,
            'everi': 3,
            'excit': 1,
            'experienc': 1,
            'explor': 2,
            'firmli': 1,
            'follow': 1,
            'fulfil': 1,
            'goal': 1,
            'good': 2,
            'hard': 1,
            'hardwork': 2,
            'high': 2,
            'high-qual': 1,
            'highli': 1,
            'hold': 1,
            'hope': 1,
            'imran': 1,
            'includ': 1,
            'increas': 1,
            'keep': 1,
            'key': 1,
            'level': 1,
            'look': 2,
            'make': 2,
            'matter': 1,
            'matters.i': 1,
            'mba': 1,
            'need': 1,
            'offer': 1,
            'place': 1,
            'pleasur': 1,
            'potenti': 1,
            'price': 1,
            'profess': 1,
            'profession': 1,
            'profit': 1,
            'provid': 2,
            'punctual': 1,
            'qualiti': 4,
            'reason': 1,
            'report': 1,
            'reput': 1,
            'resourc': 1,
            'respons': 1,
            'result': 1,
            'review': 1,
            'right': 2,
            'run': 1,
            'satisfact': 2,
            'satisfi': 1,
            'seek': 2,
            'servic': 2,
            'services.i': 1,
            'sincer': 1,
            'skill': 1,
            'someon': 1,
            'sort': 1,
            'speak': 1,
            'standard': 1,
            'start': 1,
            'success': 2,
            'talent': 1,
            'task': 2,
            'thing': 1,
            'time': 2,
            'topic': 1,
            'train': 1,
            'tri': 1,
            'univers': 1,
            'want': 2,
            'wish': 1,
            'work': 5,
            'worker': 1,
            'worldwid': 1,
            'write': 4}),
  'M'),
 (FreqDist({'work': 1}), 'M'),
 (FreqDist({'bpo': 1,
            'call': 1,
            'citi': 1,
            'custom': 1,
            'heart': 1,
            'india': 1,
            'locat': 1,
            'mumbai': 1,
            'offer': 1,
            'support': 1,
            'work': 1}),
  'M'),
 (FreqDist({'famili': 1, 'father': 1, 'husband': 1, 'love': 1, 'program': 1}),
  'M'),
 (FreqDist({'design': 1, 'graphic': 1, 'web': 1}), 'F'),
 (FreqDist({'5': 1,
            'allow': 1,
            'assur': 1,
            'banner': 1,
            'base': 1,
            'becom': 1,
            'busi': 1,
            'cart': 1,
            'cm': 1,
            'content': 1,
            'coordin': 1,
            'coverag': 1,
            'css': 1,
            'date': 1,
            'design': 3,
            'dhtml': 1,
            'discuss': 1,
            'dreamweav': 1,
            'editplu': 1,
            'english': 1,
            'etc.if': 1,
            'excel': 1,
            'experi': 1,
            'flash': 2,
            'flexibl': 1,
            'forward': 1,
            'gone': 1,
            'group': 1,
            'hello': 1,
            'hindi': 1,
            'hour': 2,
            'html': 1,
            'india': 1,
            'inform': 1,
            'integr': 1,
            'interest': 1,
            'interview': 1,
            'know.i': 1,
            'lamp': 2,
            'languag': 1,
            'let': 1,
            'logo': 1,
            'look': 1,
            'member': 1,
            'ms-access': 1,
            'mysql': 1,
            'mysqli': 1,
            'name': 1,
            'need': 1,
            'northern': 1,
            'opportun': 1,
            'part': 1,
            'photoshop': 1,
            'php': 1,
            'pleas': 1,
            'present': 1,
            'project': 2,
            'provid': 1,
            'punjabi': 1,
            'qualiti': 1,
            'regular': 1,
            'relat': 1,
            'requir': 1,
            'seo': 1,
            'servic': 1,
            'sever': 1,
            'shop': 1,
            'site': 1,
            'special': 1,
            'sql': 1,
            'team': 2,
            'technolog': 1,
            'time': 1,
            'us': 1,
            'variou': 1,
            'wamp': 2,
            'web': 1,
            'websit': 1,
            'whichev': 1,
            'work': 3,
            'year': 1}),
  'M'),
 (FreqDist({"'ve": 1,
            '100': 1,
            'also': 1,
            'alway': 1,
            'beat': 1,
            'busi': 1,
            'choic': 1,
            'clear': 1,
            'client': 4,
            'compani': 1,
            'content': 2,
            'design': 1,
            'ebook': 5,
            'edit': 1,
            'ensur': 1,
            'fresh': 1,
            'hard': 1,
            'help': 1,
            'idea': 1,
            'ideal': 1,
            'import': 1,
            'like': 1,
            'look': 1,
            'mind': 1,
            'new': 1,
            'offer': 1,
            'person': 1,
            'peter': 1,
            'produc': 1,
            'project': 1,
            'promot': 1,
            'provid': 1,
            'rate': 1,
            'recognis': 1,
            'request': 1,
            'revis': 1,
            'satisfact': 1,
            'servic': 1,
            'specialis': 1,
            'start': 1,
            'style': 1,
            'talk': 1,
            'today': 1,
            'upon': 1,
            'want': 1,
            'web': 1,
            'webpag': 1,
            'websit': 1,
            'whether': 1,
            'work': 1,
            'world.i': 1,
            'write': 2,
            'write.i': 1,
            'written': 1}),
  'M'),
 (FreqDist({"'ll": 1,
            '200': 1,
            'alreadi': 1,
            'also': 1,
            'basecamp': 1,
            'best': 1,
            'expert': 3,
            'handl': 1,
            'help': 1,
            'lastli': 1,
            'lot': 1,
            'manag': 1,
            'money': 1,
            'plesk': 1,
            'project': 2,
            'provid': 1,
            'quick': 1,
            'save': 1,
            'setup': 1,
            'suggest': 1,
            'take': 1,
            'thank': 1,
            'time': 1,
            'websit': 2,
            'whm': 1,
            'wordpress': 4}),
  'M'),
 (FreqDist({'age': 1, 'student': 1}), 'M'),
 (FreqDist({'10': 1,
            'china': 1,
            'dc': 1,
            'develop': 1,
            'educ': 1,
            'experi': 1,
            'field': 1,
            'hospit': 2,
            'india': 1,
            'manufactur': 1,
            'provid': 1,
            'servic': 1,
            'softwar': 1,
            'variou': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'10+': 1,
            '20': 1,
            '20+': 1,
            '500+': 1,
            'also': 1,
            'american': 1,
            'among': 1,
            'base': 1,
            'competit': 1,
            'contribut': 1,
            'develop': 1,
            'experi': 1,
            'html/css/javascript': 1,
            'java': 1,
            'multipl': 1,
            'open': 1,
            'over': 1,
            'part-tim': 1,
            'particip': 1,
            'place': 1,
            'program': 1,
            'project': 1,
            'request': 1,
            'screen': 1,
            'sourc': 1,
            'technolog': 1,
            'translat': 2,
            'voic': 1,
            'web': 1,
            'write': 1,
            'writer': 1,
            'year': 2}),
  'M'),
 (FreqDist({'optimist': 1, 'passion': 1}), 'M'),
 (FreqDist({'.final': 1,
            '6.0': 1,
            '\\xe2\\u20ac\\u201c': 2,
            'addit': 1,
            'aspect': 1,
            'associ': 1,
            'basic': 1,
            'bit': 1,
            'build': 1,
            'code': 1,
            'coder': 1,
            'compens': 1,
            'complex': 1,
            'cost': 1,
            'depend': 1,
            'develop': 2,
            'differ': 1,
            'directli': 1,
            'experienc': 1,
            'flash': 1,
            'follow': 1,
            'give': 1,
            'goal': 1,
            'high': 1,
            'hire': 1,
            'industri': 1,
            'instal': 1,
            'know': 1,
            'languag': 1,
            'level': 1,
            'low': 2,
            'major': 1,
            'manag': 3,
            'mani': 2,
            'may': 3,
            'obvious': 1,
            'peopl': 1,
            'person': 1,
            'photoshop': 1,
            'price': 1,
            'provid': 1,
            'qualiti': 3,
            'ratio': 1,
            'respons': 1,
            'scope': 1,
            'singl': 2,
            'softwar': 4,
            'sometim': 2,
            'specialist': 1,
            'success': 1,
            'team': 2,
            'tester': 2,
            'tier': 1,
            'visual': 2,
            'way': 1,
            'well-experienc': 1}),
  'M'),
 (FreqDist({'2010': 1,
            '2013': 1,
            '365': 1,
            '6+': 1,
            '8+': 1,
            'consult': 1,
            'custom': 1,
            'exp': 1,
            'forward': 1,
            'full-tim': 1,
            'good': 1,
            'hi': 1,
            'includ': 1,
            'last': 1,
            'look': 1,
            'moss': 1,
            'offic': 1,
            'overal': 1,
            'plugin': 1,
            'presenc': 1,
            'report': 1,
            'sharepoint': 3,
            'sinc': 1,
            'work': 3,
            'wss': 1,
            'year': 2}),
  'M'),
 (FreqDist({'5': 1,
            'analyst': 1,
            'current': 1,
            'develop': 1,
            'experi': 1,
            'foreign': 1,
            'industri': 2,
            'ministri': 1,
            'profession': 1,
            'programm': 1,
            'qualifi': 1,
            'system': 1,
            'trade': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'6+': 1,
            'accompani': 1,
            'alway': 1,
            'anim': 1,
            'art': 1,
            'aspect': 1,
            'base': 1,
            'basi': 1,
            'bfa': 1,
            'broad': 1,
            'career': 1,
            'chicago': 1,
            'collabor': 1,
            'commun': 1,
            'confid': 1,
            'coordin': 1,
            'creativ': 2,
            'design': 7,
            'earn': 1,
            'edit': 1,
            'encompass': 1,
            'enhanc': 1,
            'ethic': 1,
            'everyth': 1,
            'excel': 1,
            'experi': 3,
            'freelanc': 1,
            'full-tim': 1,
            'graphic': 3,
            'great': 1,
            'individu': 1,
            'institut': 1,
            'layout': 1,
            'leadership': 1,
            'learn': 2,
            'logo': 1,
            'major': 1,
            'new': 2,
            'organiz': 1,
            'photo': 1,
            'product': 1,
            'profession': 1,
            'rate': 1,
            'requir': 1,
            'role': 3,
            'school': 1,
            'sever': 1,
            'skill': 5,
            'span': 1,
            'spectrum': 1,
            'start': 1,
            'strengthen': 1,
            'strong': 2,
            'technic': 1,
            'thing': 1,
            'understand': 1,
            'whenev': 1,
            'will': 1,
            'work': 4,
            'year': 1}),
  'M'),
 (FreqDist({'abil': 1,
            'academ': 1,
            'alway': 1,
            'assign': 1,
            'cite': 1,
            'dissert': 1,
            'excel': 2,
            'fresh': 1,
            'includ': 1,
            'level': 1,
            'look': 1,
            'master': 1,
            'mind': 1,
            'orient': 1,
            'phd': 1,
            'research': 3,
            'thesi': 1,
            'write': 1}),
  'F'),
 (FreqDist({'1.': 1,
            '10': 1,
            'comput': 1,
            'deliv': 1,
            'designing4': 1,
            'experienc': 1,
            'html': 1,
            'old': 1,
            'onlin': 3,
            'organ': 1,
            'particularli': 1,
            'planet': 1,
            'servic': 2,
            'softwar': 1,
            'websit': 1,
            'year': 1}),
  'M'),
 (FreqDist({'11': 1,
            '12': 1,
            '1989': 1,
            '1994': 1,
            '1997': 1,
            'abus': 1,
            'administr': 5,
            'adob': 4,
            'advertis': 3,
            'agenc': 1,
            'airport': 1,
            'along': 2,
            'annual': 1,
            'applic': 2,
            'area': 1,
            'around': 1,
            'art': 1,
            'articl': 1,
            'artist': 6,
            'associ': 2,
            'attend': 2,
            'badg': 1,
            'baltimor': 1,
            'bid': 1,
            'board': 1,
            'book': 5,
            'booklet': 1,
            'booth': 1,
            'bought': 1,
            'bring': 1,
            'brochur': 2,
            'brought': 2,
            'budget': 1,
            'bug': 1,
            'busi': 2,
            'call': 1,
            'camera': 3,
            'campaign': 1,
            'campu': 3,
            'card': 2,
            'catalog': 5,
            'central': 1,
            'chang': 1,
            'chapter': 1,
            'class': 1,
            'classifi': 1,
            'clientel': 1,
            'cohes': 2,
            'collect': 1,
            'color': 2,
            'committe': 1,
            'commun': 3,
            'compani': 5,
            'comparison': 2,
            'complet': 1,
            'comput': 5,
            'conferenc': 1,
            'consider': 1,
            'consist': 1,
            'constraint': 1,
            'content': 1,
            'continu': 3,
            'contract': 1,
            'convent': 1,
            'convers': 2,
            'convert': 1,
            'coordin': 1,
            'copi': 2,
            'copywrit': 1,
            'corpor': 3,
            'correct': 3,
            'cost': 1,
            'cream': 1,
            'creat': 1,
            'creativ': 6,
            'crime': 3,
            'custom': 3,
            'data': 1,
            'databas': 3,
            'de': 3,
            'deadlin': 3,
            'delawar': 4,
            'depart': 4,
            'design': 17,
            'diagnos': 1,
            'direct': 4,
            'director': 5,
            'display': 3,
            'diversifi': 1,
            'document': 1,
            'drive': 1,
            'edit': 6,
            'editor': 2,
            'educ': 4,
            'elderli': 1,
            'employe': 3,
            'equip': 3,
            'event': 2,
            'execut': 2,
            'facet': 1,
            'featur': 1,
            'file': 6,
            'final': 4,
            'fine': 1,
            'florida': 1,
            'flyer': 1,
            'food': 3,
            'freelanc': 2,
            'get': 1,
            'graphic': 9,
            'guid': 1,
            'handbook': 1,
            'help': 1,
            'high-end': 1,
            'home': 1,
            'hospit': 1,
            'hous': 1,
            'ice': 1,
            'idea': 1,
            'ident': 2,
            'illustr': 5,
            'in-hous': 1,
            'inc.': 2,
            'includ': 2,
            'increas': 1,
            'industri': 3,
            'inform': 2,
            'insert': 1,
            'intern': 1,
            'internet': 1,
            'interv': 1,
            'involv': 2,
            'issu': 1,
            'job': 1,
            'journalist': 2,
            'label': 1,
            'later': 1,
            'layout': 1,
            'leagu': 1,
            'liais': 1,
            'liaison': 3,
            'link': 1,
            'littl': 1,
            'local': 1,
            'logo': 2,
            'mail': 4,
            'maintain': 2,
            'make': 1,
            'manag': 3,
            'map': 1,
            'mark': 2,
            'maryland': 3,
            'materi': 11,
            'mdart': 2,
            'mdproduct': 2,
            'media': 3,
            'medic': 1,
            'meet': 2,
            'membership': 2,
            'microsoft': 2,
            'minut': 1,
            'month': 1,
            'monthli': 2,
            'name': 1,
            'necessari': 1,
            'need': 2,
            'network': 1,
            'new': 3,
            'news': 2,
            'newslett': 1,
            'newspap': 3,
            'non-profit': 1,
            'nurs': 4,
            'offic': 5,
            'oper': 1,
            'order': 1,
            'organ': 1,
            'orient': 1,
            'osha': 2,
            'other': 1,
            'outsid': 3,
            'overse': 2,
            'owner': 1,
            'ownership': 1,
            'pagemak': 2,
            'pamphlet': 1,
            'parent': 1,
            'past': 2,
            'perform': 2,
            'personnel': 2,
            'phone': 1,
            'photograph': 1,
            'photographi': 2,
            'photoshop': 2,
            'plan': 6,
            'plate': 1,
            'point-of-purchas': 3,
            'popular': 1,
            'pre-press': 2,
            'present': 1,
            'press': 5,
            'price': 2,
            'print': 7,
            'printer': 3,
            'prioriti': 1,
            'problem': 1,
            'process': 2,
            'produc': 1,
            'product': 13,
            'profession': 1,
            'program': 4,
            'project': 1,
            'proof': 3,
            'proofread': 3,
            'prospect': 1,
            'public': 2,
            'qualiti': 1,
            'quark': 1,
            'quarkxpress': 3,
            'question': 1,
            'read': 3,
            'relat': 1,
            'report': 1,
            'reproduct': 1,
            'requir': 1,
            'run': 3,
            'safeti': 1,
            'sale': 4,
            'schedul': 4,
            'scout': 1,
            'seminar': 3,
            'separ': 1,
            'seriou': 1,
            'servic': 2,
            'session': 1,
            'set': 1,
            'sever': 1,
            'sexual': 1,
            'shack': 1,
            'shop': 1,
            'sign': 1,
            'small': 2,
            'softwar': 6,
            'sort': 1,
            'southwest': 1,
            'speaker': 1,
            'special': 1,
            'staff': 2,
            'storag': 1,
            'stori': 1,
            'student': 5,
            'suppli': 1,
            'taylor': 2,
            'technic': 1,
            'temporari': 3,
            'tight': 5,
            'time': 5,
            'tree': 1,
            'tri': 2,
            'type': 12,
            'use': 3,
            'varieti': 1,
            'violent': 2,
            'washington': 1,
            'webpag': 1,
            'week': 1,
            'weekli': 1,
            'well': 1,
            'within': 2,
            'word': 2,
            'work': 15,
            'workbook': 1,
            'write': 1,
            'xpress': 1}),
  'F'),
 (FreqDist({'b.a': 1,
            'commun': 1,
            'experi': 2,
            'imag': 1,
            'institut': 1,
            'master': 1,
            'plan': 1,
            'resourc': 1,
            'year': 2}),
  'F'),
 (FreqDist({'abl': 1,
            'academ': 1,
            'ad': 1,
            'also': 1,
            'assist': 1,
            'background': 1,
            'career': 2,
            'client': 2,
            'commerci': 1,
            'commun': 1,
            'compani': 1,
            'content': 1,
            'copi': 1,
            'corpor': 1,
            'creat': 1,
            'curriculum': 1,
            'develop': 1,
            'draft': 1,
            'educ': 1,
            'effici': 1,
            'execut': 1,
            'experi': 1,
            'extens': 1,
            'form': 1,
            'higher': 1,
            'holder': 1,
            'includ': 2,
            'increas': 1,
            'industri': 1,
            'k-12': 1,
            'letter': 2,
            'materi': 1,
            'measur': 1,
            'mid-level': 1,
            'ms.': 2,
            'paper': 1,
            'person': 2,
            'polish': 1,
            'posit': 1,
            'previou': 1,
            'product': 1,
            'profession': 2,
            'project': 3,
            'promot': 1,
            'provid': 2,
            'report': 1,
            'result': 1,
            'sector': 1,
            'set': 1,
            'skill': 2,
            'taylor': 3,
            'train': 1,
            'use': 1,
            'varieti': 2,
            'web': 1,
            'white': 1,
            'wide': 1,
            'young': 1}),
  'F'),
 (FreqDist({"'m": 1,
            "'s": 1,
            "'ve": 3,
            '0': 1,
            '10': 1,
            '12': 1,
            '2008.': 1,
            '6': 1,
            '7': 1,
            '9': 1,
            'busi': 1,
            'ceo': 1,
            'channel': 1,
            'develop': 1,
            'differ': 1,
            'engin': 1,
            'featur': 1,
            'figur': 1,
            'freelanc': 2,
            'hi': 1,
            'hundr': 2,
            'internet': 2,
            'jimmi': 1,
            'late': 1,
            'less': 1,
            'lot': 1,
            'manag': 1,
            'mani': 1,
            'market': 2,
            'matt': 1,
            'member': 1,
            'month': 1,
            'morn': 1,
            'new': 1,
            'night': 1,
            'onlin': 1,
            'oper': 1,
            'past': 1,
            'project': 1,
            'properti': 1,
            'rank': 1,
            'receiv': 1,
            'revenu': 1,
            'search': 1,
            'seo': 2,
            'show': 1,
            'sinc': 1,
            'special': 1,
            'street': 1,
            'taken': 1,
            'thousand': 1,
            'time-': 1,
            'top': 1,
            'tv': 1,
            'ventur': 1,
            'visitor': 1,
            'wall': 1,
            'web': 2,
            'websit': 1,
            'well': 1,
            'work': 1,
            'year': 1,
            'york': 1}),
  'M'),
 (FreqDist({'.net': 1,
            '7+': 1,
            'analyst': 1,
            'applic': 1,
            'architect': 1,
            'asp.net': 1,
            'develop': 1,
            'experi': 1,
            'favourit': 1,
            'majorli': 1,
            'mobil': 1,
            'pass': 1,
            'softwar': 1,
            'technolog': 1,
            'time': 1,
            'use': 1,
            'web': 1,
            'work': 2,
            'write': 1,
            'xml/xslt': 1,
            'year': 1}),
  'M'),
 (FreqDist({'...': 1,
            'challeng': 1,
            'cool': 1,
            'design': 1,
            'good': 1,
            'look': 1,
            'programm': 1,
            'project': 1}),
  'M'),
 (FreqDist({"'m": 2,
            "'ve": 1,
            '6': 1,
            'administr': 1,
            'applic': 1,
            'area': 1,
            'consult': 1,
            'develop': 2,
            'experi': 1,
            'incept': 1,
            'includ': 1,
            'independ': 1,
            'industri': 1,
            'linux': 1,
            'mani': 1,
            'market': 1,
            'network': 1,
            'nowaday': 1,
            'off-shor': 1,
            'opensourc': 1,
            'oper': 1,
            'outstand': 1,
            'project': 1,
            'provid': 2,
            'regard': 1,
            'secur': 1,
            'servic': 1,
            'solut': 1,
            'system': 1,
            'web': 2,
            'will': 1,
            'year': 1,
            'young': 1}),
  'M'),
 (FreqDist({'7+': 1,
            'engin': 1,
            'experi': 1,
            'latest': 1,
            'senior': 1,
            'softwar': 1,
            'technolog': 1,
            'updat': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.net': 1,
            'administr': 1,
            'ajax': 1,
            'analysis-': 1,
            'apach': 1,
            'applic': 9,
            'asp.net': 1,
            'audit': 3,
            'borland': 1,
            'busi': 2,
            'c': 1,
            'c++-': 1,
            'cento': 1,
            'check': 2,
            'checkout': 1,
            'checkup': 2,
            'code': 4,
            'consult': 1,
            'custom': 1,
            'daili': 1,
            'data': 1,
            'develop': 7,
            'dn': 1,
            'etc': 4,
            'ethic': 1,
            'experienc': 1,
            'expert': 1,
            'find': 1,
            'flash': 1,
            'form': 1,
            'ftp': 1,
            'full': 1,
            'futur': 1,
            'gateway': 1,
            'googl': 1,
            'help': 1,
            'highli': 1,
            'http': 1,
            'ifram': 1,
            'ii': 1,
            'inject': 2,
            'integr': 1,
            'integration-': 1,
            'internet': 1,
            'ipad': 1,
            'iphon': 1,
            'java': 1,
            'javascript': 1,
            'jsp': 1,
            'keep': 1,
            'knowledg': 1,
            'lamp': 1,
            'level': 1,
            'listen': 1,
            'log': 1,
            'mobil': 1,
            'monitor': 1,
            'ms': 1,
            'mysql': 1,
            'nginx': 1,
            'offer': 3,
            'payment': 1,
            'paypal': 1,
            'penetr': 1,
            'php': 1,
            'php/mysql': 1,
            'plu': 1,
            'prevent': 2,
            'profession': 1,
            'programming-': 2,
            'rang': 1,
            'router': 1,
            'safe': 1,
            'scan': 1,
            'script': 2,
            'scripts-': 1,
            'secur': 10,
            'server': 1,
            'servic': 5,
            'services-': 1,
            'smtp': 1,
            'soap': 1,
            'softwar': 1,
            'sourc': 1,
            'sql': 1,
            'system': 4,
            'system/network': 1,
            'technolog': 1,
            'test': 1,
            'testing-': 2,
            'type': 1,
            'unknown': 1,
            'use': 5,
            'valid': 1,
            'variou': 3,
            'viru': 1,
            'vpn': 1,
            'vulner': 2,
            'web': 6,
            'websit': 2,
            'wide': 1,
            'window': 3,
            'xml': 1}),
  'M'),
 (FreqDist({'10': 1,
            'accur': 1,
            'bpo': 1,
            'data': 1,
            'entri': 1,
            'field': 1,
            'last': 1,
            'onlin': 1,
            'project': 2,
            'servic': 1,
            'sincer': 1,
            'variou': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'blogger': 1,
            'content': 1,
            'design': 1,
            'develop': 1,
            'engin': 1,
            'full-tim': 1,
            'includ': 1,
            'make': 1,
            'money': 1,
            'onlin': 1,
            'optim': 1,
            'platform': 1,
            'present': 1,
            'readi': 1,
            'search': 1,
            'web': 2,
            'websit': 1,
            'work': 2,
            'write': 1}),
  'M'),
 (FreqDist({'10+': 1,
            '3': 1,
            'activ': 1,
            'affair': 1,
            'also': 2,
            'artist': 1,
            'awar': 1,
            'campaign': 2,
            'channel': 1,
            'child': 1,
            'children': 1,
            'commun': 1,
            'complet': 1,
            'cover': 1,
            'current': 1,
            'deliv': 1,
            'differ': 1,
            'educ': 1,
            'etc': 1,
            'ethic': 1,
            'event': 1,
            'fabric': 1,
            'fanat': 1,
            'flood': 1,
            'fund': 2,
            'fundrais': 1,
            'honor': 1,
            'host': 1,
            'industri': 1,
            'initi': 1,
            'inject': 1,
            'invit': 1,
            'issu': 1,
            'lead': 1,
            'lectur': 1,
            'live': 1,
            'local': 1,
            'manag': 1,
            'media': 5,
            'morn': 1,
            'pakistan': 1,
            'part': 1,
            'passion': 1,
            'past': 1,
            'present': 1,
            'profession': 1,
            'program': 2,
            'radio': 4,
            'ration': 1,
            'relief': 1,
            'safe': 1,
            'save': 1,
            'sever': 2,
            'show': 2,
            'social': 4,
            'special': 1,
            'store': 1,
            'talk': 2,
            'televis': 2,
            'topic': 1,
            'twitter': 1,
            'univers': 1,
            'via': 1,
            'voic': 1,
            'volunt': 1,
            'work': 2,
            'year': 2}),
  'F'),
 (FreqDist({'3.0': 1,
            'ajax': 1,
            'cakephp': 1,
            'cm': 1,
            'contract': 1,
            'css': 1,
            'current': 1,
            'databas': 1,
            'doctrin': 1,
            'drupal': 1,
            'ejb': 1,
            'framework': 1,
            'glassfish': 1,
            'html5': 1,
            'j2ee': 1,
            'joomla': 1,
            'jqueri': 1,
            'kohana': 1,
            'mvc': 1,
            'mysql': 1,
            'oop': 1,
            'orm': 1,
            'php': 1,
            'php5': 1,
            'prototyp': 1,
            'skill': 1,
            'smarti': 1,
            'symfoni': 1,
            'templat': 1,
            'toplink': 1,
            'yr': 2,
            'zend': 1}),
  'M'),
 (FreqDist({'4': 1,
            '6': 1,
            'ajax': 1,
            'almost': 1,
            'bachelor': 1,
            'client': 1,
            'comput': 1,
            'css': 1,
            'css3': 1,
            'custom': 1,
            'deal': 1,
            'develop': 2,
            'done': 1,
            'end': 1,
            'experi': 1,
            'happi': 1,
            'html': 1,
            'html5': 1,
            'interest': 1,
            'javascript': 1,
            'jqueri': 1,
            'kind': 1,
            'languag': 1,
            'major': 1,
            'man': 1,
            'mani': 2,
            'mysql': 1,
            'php': 1,
            'plugin': 1,
            'program': 1,
            'request': 1,
            'scienc': 1,
            'servic': 1,
            'theme': 1,
            'tri': 1,
            'websit': 1,
            'wordpress': 2,
            'year': 2}),
  'M'),
 (FreqDist({'2.0': 1,
            'a-level': 2,
            'certif': 1,
            'chittagong': 1,
            'complet': 3,
            'eee': 1,
            'exam': 1,
            'gpa': 2,
            'laboratori': 1,
            'school': 2,
            'scienc': 1,
            'secondari': 1,
            'studi': 1}),
  'M'),
 (FreqDist({'abl': 1,
            'accent': 1,
            'differ': 1,
            'experi': 1,
            'good': 2,
            'lot': 1,
            'speed': 1,
            'transcrib': 1,
            'type': 2,
            'understand': 1}),
  'M'),
 (FreqDist({"'m": 1,
            "'re": 3,
            'abl': 1,
            'art': 1,
            'better': 1,
            'catalog': 1,
            'client': 2,
            'commerci': 1,
            'complet': 1,
            'edit': 1,
            'estat': 1,
            'express': 1,
            'find': 1,
            'fine': 1,
            'guarante': 1,
            'help': 1,
            'landscap': 1,
            'natur': 1,
            'noth': 1,
            'owe': 1,
            'perform': 1,
            'photograph': 4,
            'photographi': 1,
            'portrait': 1,
            'product': 1,
            'profession': 1,
            'project': 1,
            'real': 1,
            'satisfi': 1,
            'seek': 1,
            'sell': 1,
            'varieti': 3,
            'variou': 1,
            'vision': 1,
            'wed': 1,
            'work': 3}),
  'M'),
 (FreqDist({'21': 1,
            'among': 1,
            'around': 1,
            'arun': 1,
            'assess': 1,
            'audit': 1,
            'best': 1,
            'busi': 1,
            'care': 1,
            'compani': 1,
            'complianc': 2,
            'consult': 2,
            'develop': 1,
            'etc': 1,
            'experi': 1,
            'field': 1,
            'globe': 1,
            'hippa': 1,
            'india': 1,
            'inform': 3,
            'mainli': 1,
            'manag': 1,
            'one': 1,
            'penetr': 1,
            'project': 1,
            'reput': 1,
            'secur': 3,
            'take': 1,
            'test': 1,
            'virtual': 1,
            'vulner': 1,
            'well': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'1.5': 1,
            'almost': 1,
            'amount': 1,
            'app': 1,
            'chennai': 1,
            'contact': 1,
            'css3': 1,
            'dell': 1,
            'design': 1,
            'develop': 1,
            'face': 1,
            'firm': 1,
            'get': 1,
            'html5': 1,
            'infosi': 1,
            'last': 1,
            'manag': 1,
            'mobil': 1,
            'opinion': 1,
            'project': 1,
            'reliabl': 1,
            'respons': 1,
            'simpl': 2,
            'support': 1,
            'technic': 1,
            'time': 1,
            'want': 1,
            'websit': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'ajax-': 1,
            'analysi': 1,
            'applic': 2,
            'c': 1,
            'c/c++': 1,
            'design-': 1,
            'developer-': 4,
            'facebook': 1,
            'flash-': 1,
            'internet': 1,
            'mysql-': 2,
            'next': 1,
            'oracle-': 1,
            'php': 1,
            'rail': 1,
            'rubi': 1,
            'softwar': 1,
            'system': 1,
            'twitter': 1}),
  'M'),
 (FreqDist({'5': 1,
            'agil': 1,
            'also': 1,
            'alway': 2,
            'apach': 1,
            'applic': 2,
            'asset': 1,
            'belt': 1,
            'best': 1,
            'build': 1,
            'built': 1,
            'challeng': 1,
            'claim': 1,
            'client': 1,
            'codebas': 1,
            'come': 1,
            'complex': 1,
            'consult': 1,
            'contributor': 1,
            'corpor': 1,
            'curiou': 1,
            'effici': 1,
            'etc': 1,
            'experi': 1,
            'expertis': 1,
            'explor': 1,
            'fault-toler': 1,
            'field': 1,
            'finish': 1,
            'got': 1,
            'greatest': 1,
            'grow': 1,
            'haproxi': 1,
            'help': 1,
            'highli': 1,
            'in': 1,
            'includ': 1,
            'individu': 1,
            'innov': 1,
            'know': 1,
            'lamp': 1,
            'larg': 1,
            'latest': 1,
            'leader': 1,
            'learn': 1,
            'linux': 1,
            'mani': 2,
            'memcach': 1,
            'mind': 1,
            'modern': 1,
            'mongodb': 1,
            'mysql': 1,
            'next': 1,
            'out': 1,
            'php': 2,
            'play': 1,
            'pleasur': 1,
            'practition': 1,
            'problem': 1,
            'programm': 1,
            'puppet': 1,
            'redi': 1,
            'satisfi': 1,
            'scalabl': 2,
            'season': 1,
            'skill': 1,
            'solut': 2,
            'stack': 1,
            'start': 1,
            'team': 2,
            'technic': 2,
            'technolog': 2,
            'valuabl': 1,
            'web': 2,
            'will': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'lanka': 1, 'sri': 1}), 'M'),
 (FreqDist({'buck': 1,
            'consult': 1,
            'free': 1,
            'light': 1,
            'like': 1,
            'quick': 1,
            'time': 1,
            'two': 1,
            'work': 1,
            'would': 1}),
  'M'),
 (FreqDist({'15': 1,
            '5': 1,
            'air': 1,
            'amazon': 1,
            'angularj': 1,
            'apex': 1,
            'app': 1,
            'applic': 3,
            'architect': 1,
            'busi': 1,
            'commun': 1,
            'compani': 1,
            'creativ': 1,
            'css': 1,
            'db': 1,
            'deep': 1,
            'design': 1,
            'develop': 2,
            'devlop': 1,
            'ec2': 1,
            'enterpris': 1,
            'etc': 1,
            'execut': 1,
            'experi': 1,
            'flex': 1,
            'framework': 1,
            'gi': 1,
            'html5': 1,
            'industri': 1,
            'intellig': 1,
            'io': 1,
            'j2ee': 1,
            'java': 1,
            'javascript': 1,
            'last': 1,
            'lead': 1,
            'leverag': 1,
            'mobil': 2,
            'non': 1,
            'open': 1,
            'php': 1,
            'platform': 2,
            'product': 1,
            'provid': 1,
            'raul': 1,
            'rdbm': 1,
            'rich': 1,
            'roy': 1,
            'salesforc': 1,
            'season': 1,
            'softwar': 1,
            'solut': 2,
            'sourc': 1,
            'special': 1,
            'sql': 1,
            'technolog': 3,
            'tool': 1,
            'understand': 1,
            'user': 1,
            'visual': 1,
            'web': 1,
            'webservic': 1,
            'work': 2,
            'year': 2}),
  'M'),
 (FreqDist({'1': 1,
            'base': 2,
            'compani': 1,
            'continu': 1,
            'develop': 1,
            'good': 1,
            'india': 1,
            'knowledg': 1,
            'lead': 1,
            'offshor': 1,
            'outsourc': 1,
            'product': 1,
            'seo': 1,
            'servic': 1,
            'softwar': 1,
            'web': 2,
            'year': 1}),
  'M'),
 (FreqDist({'design': 1, 'graphic': 1, 'khulna': 1, 'student': 1}), 'M'),
 (FreqDist({'account': 1,
            'also': 1,
            'anyth': 1,
            'articl': 2,
            'assign': 1,
            'base': 2,
            'basic': 1,
            'bill': 1,
            'coach': 1,
            'comput': 1,
            'craigslist': 1,
            'enjoy': 1,
            'etc.i': 1,
            'financ': 1,
            'good': 2,
            'graduat': 1,
            'group': 1,
            'handl': 1,
            'health': 1,
            'hire': 1,
            'jason': 1,
            'leadership': 1,
            'learn': 1,
            'least': 1,
            'like': 2,
            'mail': 3,
            'market': 1,
            'me.i': 1,
            'microsoft': 1,
            'mr': 2,
            'network': 1,
            'offic': 1,
            'order': 1,
            'peopl': 1,
            'pleas': 1,
            'possibl': 1,
            'problem.i': 1,
            'product': 1,
            'promot': 1,
            'quick': 1,
            'receiv': 1,
            'sampl': 1,
            'see': 1,
            'sell': 1,
            'send': 2,
            'skill': 1,
            'social': 1,
            'take': 1,
            'technolog': 1,
            'time': 1,
            'todd': 1,
            'type': 1,
            'variou': 1,
            'want': 1,
            'will': 1,
            'wont': 1,
            'work': 3,
            'write': 3}),
  'M'),
 (FreqDist({'20': 1,
            'aka': 1,
            'banner': 1,
            'begin': 1,
            'build': 1,
            'came': 1,
            'carrier': 1,
            'danish': 1,
            'design': 1,
            'edit': 1,
            'experi': 1,
            'film': 1,
            'freak': 1,
            'freelanc': 1,
            'gain': 1,
            'gymnasium': 1,
            'hello': 1,
            'like': 1,
            'logo': 1,
            'look': 1,
            'marc': 2,
            'media': 1,
            'name': 1,
            'old': 1,
            'photo': 1,
            'pilgaard': 2,
            'portfolio': 1,
            'produc': 1,
            'project': 1,
            'regard': 1,
            'student': 1,
            'studi': 1,
            'technic': 1,
            'voic': 1,
            'well': 2,
            'within': 2,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 2,
            "'s": 1,
            'anyth': 1,
            'complet': 1,
            'done': 1,
            'english': 1,
            'hard': 1,
            'high': 1,
            'honor': 1,
            'let': 1,
            'need': 1,
            'promis': 1,
            'reliabl': 1,
            'school': 1,
            'took': 1,
            'way': 1,
            'worker': 1,
            'year': 1}),
  'F'),
 (FreqDist({"''": 1,
            "'s": 1,
            '``': 1,
            'also': 1,
            'avail': 1,
            'binghamton': 2,
            'blue': 1,
            'book': 1,
            'creativ': 1,
            'degre': 1,
            'director': 1,
            'distinct': 1,
            'editori': 1,
            'english': 1,
            'experi': 1,
            'fiction': 1,
            'first': 1,
            'graduat': 1,
            'layout': 1,
            'poem': 1,
            'poetri': 1,
            'program': 1,
            'proofread': 1,
            'publish': 2,
            'recent': 1,
            'review': 2,
            'sam': 2,
            'scholar': 1,
            'univers': 1,
            'work': 2,
            'write': 2}),
  'M'),
 (FreqDist({"'ve": 1,
            '15': 1,
            '2.0': 1,
            'articl': 2,
            'blog': 2,
            'bookmark': 1,
            'build': 1,
            'builder': 2,
            'comment': 1,
            'creation': 1,
            'directori': 3,
            'etc': 1,
            'first': 1,
            'guarante': 1,
            'high': 1,
            'includ': 1,
            'increas': 2,
            'link': 3,
            'list': 1,
            'manual': 1,
            'organ': 1,
            'page': 1,
            'press': 2,
            'qualiti': 1,
            'relat': 1,
            'releas': 2,
            'serp': 1,
            'set': 1,
            'skill': 1,
            'social': 1,
            'submiss': 4,
            'team': 1,
            'traffic': 1,
            'train': 1,
            'video': 1,
            'web': 2,
            'websit': 2,
            'well': 1,
            'work': 1,
            'write': 2}),
  'M'),
 (FreqDist({'artist': 1,
            'bright': 1,
            'brochur': 1,
            'busi': 1,
            'card': 1,
            'cover': 1,
            'design': 1,
            'develop': 1,
            'edit': 1,
            'etc': 1,
            'experi': 1,
            'graphic': 1,
            'i\\xe2\\u20ac\\u2122m': 1,
            'idea': 1,
            'illustr': 1,
            'logo': 1,
            'love': 1,
            'one': 1,
            'origin': 2,
            'pattern': 1,
            'person': 1,
            'photographi': 2,
            'qualif': 1,
            'street': 1,
            'strength': 1}),
  'F'),
 (FreqDist({"'m": 1,
            "'ve": 1,
            '3d': 1,
            '4': 1,
            'air': 1,
            'also': 1,
            'art': 1,
            'belgrad': 1,
            'canada': 1,
            'client': 1,
            'club': 1,
            'combin': 1,
            'creat': 1,
            'day': 1,
            'design': 1,
            'director': 1,
            'enjoy': 1,
            'everi': 1,
            'excel': 1,
            'experi': 1,
            'flash/actionscript': 1,
            'graphic': 1,
            'i\\xe2\\u20ac\\u2122v': 2,
            'interact': 2,
            'knowledg': 1,
            'last': 1,
            'learn': 1,
            'like': 2,
            'live': 1,
            'lot': 1,
            'make': 1,
            'memor': 1,
            'motion': 1,
            'name': 1,
            'passion': 1,
            'project': 1,
            'proudli': 1,
            'pursu': 1,
            'rang': 1,
            'realli': 1,
            'serbia': 1,
            'serv': 1,
            'singl': 1,
            'someth': 2,
            'year': 1}),
  'M'),
 (FreqDist({'11g': 1,
            'access': 1,
            'also': 1,
            'analysi': 1,
            'area': 1,
            'asp.net': 1,
            'auto': 1,
            'autom': 1,
            'base': 1,
            'bi': 1,
            'busi': 1,
            'compet': 1,
            'daili': 1,
            'dashboard': 1,
            'data': 1,
            'databas': 1,
            'dhaka': 1,
            'divis': 1,
            'edit': 1,
            'enterpris': 1,
            'etc': 2,
            'exam': 1,
            'excel': 2,
            'exchang': 1,
            'flash': 1,
            'html': 1,
            'im': 1,
            'includ': 1,
            'intellig': 1,
            'map': 1,
            'market': 1,
            'minitab': 1,
            'modul': 1,
            'ms': 1,
            'mysql': 1,
            'obie': 1,
            'oracl': 2,
            'pharmaceut': 1,
            'php': 1,
            'product': 1,
            'project': 1,
            'qc': 1,
            'qlikview': 1,
            'server': 1,
            'sql': 1,
            'stock': 1,
            'test': 1,
            'tool': 2,
            'trade': 1,
            'web': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '2': 1,
            'anyth': 1,
            'believ': 1,
            'client': 1,
            'complet': 1,
            'develop': 1,
            'effort': 1,
            'experi': 2,
            'imposs': 1,
            'job': 1,
            'key': 1,
            'make': 1,
            "n't": 1,
            'need': 2,
            'program': 1,
            'proper': 1,
            'satisfactori': 1,
            'seven': 1,
            'start': 1,
            'understand': 1,
            'want': 1,
            'web': 1,
            'work': 2,
            'year': 2}),
  'M'),
 (FreqDist({'13': 1,
            'attorney': 1,
            'bar': 1,
            'california': 1,
            'hire': 1,
            'job': 1,
            'member': 1,
            'offic': 1,
            'patent': 1,
            'readi': 1,
            'regist': 1,
            'start': 1,
            'trademark': 1,
            'u.s.': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'18th': 1,
            '\\t\\t': 1,
            '\\t\\t\\t': 1,
            'abil': 1,
            'achiev': 1,
            'administr': 1,
            'april': 1,
            'art': 1,
            'associ': 1,
            'basic': 1,
            'basis.\\xe2\\u20ac\\xa2\\twork': 2,
            'board': 1,
            'book': 1,
            'bottom': 1,
            'career': 1,
            'centr': 1,
            'certifi': 1,
            'challeng': 1,
            'cisco': 1,
            'civil': 2,
            'colleg': 1,
            'comput': 3,
            'consum': 1,
            'contract': 3,
            'cricket': 1,
            'critic': 1,
            'deliv': 1,
            'depart': 2,
            'diploma': 1,
            'e': 2,
            'educ': 2,
            'engin': 1,
            'environ': 1,
            'etc': 1,
            'faculti': 1,
            'focu': 1,
            'ga': 3,
            'game': 1,
            'govt': 2,
            'growth': 1,
            'gulberg-iii': 4,
            'h': 2,
            'hardwar': 1,
            'high': 1,
            'hous': 1,
            'improv': 1,
            'intermedi': 1,
            'lahor': 4,
            'limit': 3,
            'line': 3,
            'maintain': 1,
            'mission': 1,
            'motiv': 1,
            'movi': 1,
            'muslim': 1,
            'n': 1,
            'nagar': 1,
            'name': 1,
            'network': 1,
            'no.2': 1,
            'northern': 3,
            'oper': 2,
            'organ': 1,
            'person': 1,
            'pipelin': 3,
            'project': 1,
            'prospect': 1,
            'reput': 1,
            'result': 1,
            'road': 3,
            'scale': 1,
            'school': 1,
            'scienc': 1,
            'secondari': 1,
            'serv': 1,
            'servic': 1,
            'singh': 1,
            'sui': 3,
            'superior': 1,
            'system': 1,
            'truli': 1,
            'want': 1,
            'z': 1}),
  'M'),
 (FreqDist({'5': 1,
            'adept': 1,
            'advertis': 1,
            'also': 2,
            'artwork': 1,
            'aspect': 1,
            'busi': 1,
            'career': 1,
            'chanc': 1,
            'collabor': 2,
            'compani': 1,
            'creativ': 2,
            'design': 3,
            'develop': 1,
            'display': 1,
            'environ': 1,
            'experi': 1,
            'extrem': 1,
            'fast-pac': 1,
            'fit': 1,
            'focus': 2,
            'get': 1,
            'graphic': 3,
            'great': 1,
            'heavi': 1,
            'help': 1,
            'highli': 2,
            'hike': 1,
            'hobbi': 2,
            'ident': 1,
            'intellig': 1,
            'jone': 1,
            'keep': 1,
            'last': 1,
            'life': 2,
            'like': 1,
            'major': 1,
            'manag': 2,
            'minut': 1,
            'much': 1,
            'multi-tal': 1,
            'natur': 1,
            'peter': 1,
            'possibl': 1,
            'prepar': 1,
            'pressur': 1,
            'relationship': 1,
            'run': 1,
            'show': 1,
            'shown': 1,
            'skill': 1,
            'snowboard': 1,
            'soccer': 1,
            'sort': 1,
            'swim': 1,
            'though': 1,
            'thought': 1,
            'thrive': 1,
            'tri': 1,
            'two': 1,
            'well': 2,
            'work': 1,
            'workload': 1,
            'year': 1}),
  'M'),
 (FreqDist({'corpor': 1, 'retir': 1, 'speaker': 1}), 'M'),
 (FreqDist({'...': 1, '3': 1, 'design': 1, 'year': 1}), 'M'),
 (FreqDist({"'m": 2,
            '26': 1,
            '3': 1,
            '4th': 1,
            '5': 1,
            'alway': 1,
            'area': 1,
            'challeng': 1,
            'colleg': 1,
            'compani': 1,
            'current': 1,
            'design': 2,
            'evolv': 1,
            'freelanc': 1,
            'graphic': 1,
            'improv': 1,
            'look': 1,
            'municip': 1,
            'new': 1,
            'spare': 1,
            'still': 1,
            'time': 1,
            'transpar': 1,
            'web': 2,
            'work': 4,
            'year': 3}),
  'M'),
 (FreqDist({'advisori': 1,
            'assess': 1,
            'audit': 1,
            'busi': 1,
            'demograph': 1,
            'develop': 1,
            'enhanc': 1,
            'govern': 1,
            'grant': 1,
            'gsa': 1,
            'manag': 2,
            'market': 1,
            'need': 1,
            'network': 1,
            'non': 1,
            'oper': 1,
            'organiz': 1,
            'plan': 1,
            'procur': 1,
            'profit': 1,
            'research': 1,
            'schedul': 1,
            'social': 1,
            'technolog': 1,
            'valu': 1,
            'write': 1}),
  'M'),
 (FreqDist({'...': 1, 'help': 1, 'program': 1}), 'M'),
 (FreqDist({'.thank': 1,
            '4': 1,
            'appl': 1,
            'applic': 1,
            'developer.i': 1,
            'experi': 2,
            'hi': 1,
            'iphon': 1,
            'iphone/ipad': 1,
            'mobil': 1,
            'platform': 1,
            'prem': 1,
            'regard': 1,
            'sound': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '10': 2,
            '24-hour': 1,
            'algorithm': 2,
            'appli': 1,
            'articl': 1,
            'believ': 2,
            'best': 1,
            'bird': 1,
            'blog': 1,
            'book': 1,
            'build': 1,
            'calcul': 1,
            'client': 2,
            'content': 1,
            'day': 1,
            'engin': 1,
            'ensur': 1,
            'ethic': 1,
            'experi': 2,
            'experienc': 1,
            'field': 2,
            'free': 1,
            'get': 2,
            'goal': 1,
            'googl': 3,
            'guarante': 2,
            'highest': 1,
            'honest': 1,
            'improv': 1,
            'internet': 1,
            'learn': 1,
            'link': 1,
            'loan': 1,
            'lot': 1,
            'market': 1,
            'method': 1,
            'offer': 1,
            'open': 1,
            'optim': 1,
            'packag': 1,
            'panda': 1,
            'pay': 1,
            'penguin': 1,
            'possibl': 1,
            'pride': 1,
            'profil': 1,
            'project': 1,
            'provid': 1,
            'rank': 1,
            'realist': 1,
            'repli': 1,
            'result': 1,
            'revis': 1,
            'search': 1,
            'seo': 3,
            'servic': 1,
            'site': 1,
            'strateg': 1,
            'support': 1,
            'traffic': 1,
            'understand': 2,
            'unmatch': 1,
            'us': 1,
            'websit': 1,
            'world': 1,
            'write': 1,
            'year': 2}),
  'M'),
 (FreqDist({"'m": 1,
            '0day': 1,
            'academ': 1,
            'alvi.curr': 1,
            'aptitud': 1,
            'away': 1,
            'best.thank': 1,
            'coder': 1,
            'defin': 1,
            'develop': 1,
            'domain.em': 1,
            'engin': 1,
            'financi': 1,
            'hand': 1,
            'hard': 1,
            'heart': 1,
            'interest': 1,
            'junaid': 1,
            'level.besid': 1,
            'like': 1,
            'manageri': 1,
            'person': 1,
            'profess': 1,
            'qualif': 1,
            'r00t': 1,
            'revers': 1,
            'sector': 1,
            'secur': 1,
            'softwar': 1,
            'soul': 1,
            'teach': 1,
            'tech-geek': 1,
            'way': 1,
            'web': 2,
            'whitehat': 1,
            'word': 1,
            'yousaf': 1}),
  'M'),
 (FreqDist({'administr': 1,
            'design': 1,
            'network': 2,
            'shoot': 1,
            'troubl': 1,
            'web': 1}),
  'M'),
 (FreqDist({'absolut': 1,
            'activ': 1,
            'also': 1,
            'answer': 1,
            'area': 1,
            'automobil': 1,
            'best': 1,
            'card': 1,
            'children': 1,
            'class': 1,
            'client': 1,
            'complaint': 1,
            'comput': 1,
            'coordin': 1,
            'cost': 1,
            'credit': 1,
            'custom': 3,
            'dedic': 1,
            'deliveri': 1,
            'driver': 1,
            'duti': 1,
            'employ': 1,
            'enjoy': 1,
            'fast': 1,
            'firm': 1,
            'fleet': 1,
            'focus': 1,
            'fuel': 1,
            'handl': 1,
            'homeown': 1,
            'illinoi': 1,
            'includ': 1,
            'issu': 1,
            'job': 1,
            'keep': 1,
            'learner': 1,
            'local': 1,
            'loyal': 1,
            'major': 1,
            'manag': 1,
            'management.i': 1,
            'manufactur': 1,
            'marri': 1,
            'music': 1,
            'numer': 1,
            'old': 1,
            'order': 1,
            'owner': 1,
            'payrol': 1,
            'phone': 1,
            'present': 1,
            'process': 1,
            'profession': 1,
            'provid': 1,
            'read': 1,
            'report': 1,
            'repres': 1,
            'self-taught': 1,
            'seminar': 1,
            'servic': 2,
            'strive': 1,
            'submit': 1,
            'supervis': 1,
            'three': 2,
            'time': 1,
            'write': 1,
            'year': 1}),
  'M'),
 (FreqDist({'14+': 1,
            'abl': 1,
            'adapt': 1,
            'advanc': 1,
            'also': 1,
            'amazon': 1,
            'applications-': 1,
            'assur': 1,
            'base': 1,
            'build': 1,
            'busi': 1,
            'cc': 1,
            'complet': 1,
            'contact': 1,
            'convert': 1,
            'databas': 2,
            'dedic': 1,
            'deploy': 1,
            'design': 1,
            'develop': 2,
            'digit': 1,
            'discuss': 1,
            'english': 1,
            'excel': 1,
            'experi': 1,
            'favorit': 1,
            'flexibl': 1,
            'fluentli': 1,
            'follow': 1,
            'front-end': 1,
            'full-stack': 1,
            'hard': 1,
            'heavili': 1,
            'idea': 1,
            'innov': 2,
            'integration-': 1,
            'intern': 1,
            'involv': 1,
            'knowledg': 1,
            'laravel': 2,
            'lead': 1,
            'local': 1,
            'manag': 2,
            'managementi': 1,
            'ocean': 1,
            'offer': 1,
            'organ': 1,
            'pci': 1,
            'phone': 1,
            'profession': 1,
            'profit': 1,
            'project': 1,
            'qualiti': 1,
            'requir': 1,
            'server': 2,
            'servic': 1,
            'skype': 1,
            'solutions.i': 1,
            'speak': 1,
            'stabl': 1,
            'stakehold': 1,
            'start': 1,
            'sure': 1,
            'team': 1,
            'technolog': 1,
            'test': 1,
            'till': 1,
            'time': 1,
            'use': 1,
            'user': 1,
            'vp': 1,
            'web': 3,
            'work': 2,
            'years\\xe2\\u20ac\\u2122': 1}),
  'M'),
 (FreqDist({"'m": 1,
            'also': 1,
            'articl': 1,
            'c': 1,
            'data': 1,
            'futur': 1,
            'interest': 1,
            'languag': 1,
            'like': 1,
            'process': 1,
            'program': 1,
            'survey': 1,
            'take': 1,
            'write': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '100': 1,
            'anyon': 1,
            'commit': 1,
            'creat': 1,
            'english': 1,
            'fantasi': 1,
            'fiction': 1,
            'full': 1,
            'good': 1,
            'hi': 1,
            'imagin': 1,
            'import': 1,
            'kid': 1,
            'look': 1,
            'offer': 1,
            'particularli': 1,
            'provid': 1,
            'satisfact': 1,
            'servic': 1,
            'short': 1,
            'spanish': 1,
            'stori': 4,
            'teach': 1,
            'uniqu': 1,
            'univers': 1,
            'valu': 1,
            'world': 1,
            'write': 3,
            'year': 1}),
  'M'),
 (FreqDist({'abl': 1,
            'adapt': 1,
            'alreadi': 1,
            'also': 1,
            'alway': 1,
            'care': 1,
            'commerci': 1,
            'degre': 1,
            'detail': 1,
            'differ': 1,
            'eas': 1,
            'english': 1,
            'experi': 1,
            'fast': 1,
            'graduat': 1,
            'greatest': 1,
            'hire': 1,
            'i\\xe2\\u20ac\\u2122m': 2,
            'it\\xe2\\u20ac\\u2122': 1,
            'italian': 1,
            'job': 2,
            'journal': 1,
            'know': 1,
            'languag': 1,
            'languages.i': 1,
            'learner': 1,
            'literari': 1,
            'love': 1,
            'mani': 1,
            'medic': 1,
            'new': 1,
            'one': 1,
            'organ': 1,
            'passion': 2,
            'philolog': 1,
            'profession': 1,
            'respons': 1,
            'sinc': 1,
            'situat': 1,
            'spanish': 1,
            'speak': 1,
            'special': 2,
            'spoken': 1,
            'studi': 1,
            'teach': 1,
            'technic': 1,
            'tourism': 1,
            'translat': 5,
            'turin': 1,
            'univers': 1,
            'word': 1,
            'work': 1,
            'written': 1}),
  'F'),
 (FreqDist({'10+': 1,
            '100': 1,
            'abl': 1,
            'adapt': 1,
            'alway': 1,
            'amazon': 1,
            'amongst': 1,
            'angularj': 1,
            'app': 1,
            'asp': 1,
            'aw': 1,
            'aweb': 1,
            'azur': 1,
            'best': 1,
            'bootstrap': 1,
            'busi': 1,
            'c': 1,
            'cakephp': 1,
            'cart': 1,
            'client': 1,
            'cm': 1,
            'code': 1,
            'codeignitor': 1,
            'constant': 1,
            'core': 1,
            'crm': 2,
            'custom': 1,
            'develop': 2,
            'drupal': 1,
            'ensur': 1,
            'experi': 1,
            'fast': 1,
            'freelanc': 1,
            'fund': 1,
            'futur': 1,
            'insist': 1,
            'joomla': 1,
            'laravel': 1,
            'lot': 1,
            'magento': 1,
            'mani': 1,
            'microsoft': 1,
            'mobil': 1,
            'mongodb': 1,
            'mssql': 1,
            'mysql': 1,
            'need': 1,
            'nodej': 1,
            'optim': 1,
            'other': 1,
            'pace': 1,
            'php': 1,
            'project': 2,
            'proof': 1,
            'rais': 1,
            'rate': 1,
            'se': 1,
            'secur': 1,
            'servic': 1,
            'shopifi': 1,
            'site': 1,
            'suggest': 1,
            'support': 1,
            'technolog': 1,
            'top': 2,
            'trend': 1,
            'understand': 1,
            'web': 2,
            'webservic': 2,
            'woo': 1,
            'wordpress': 1,
            'year': 1}),
  'M'),
 (FreqDist({'...': 1,
            '25': 1,
            'care': 1,
            'client': 1,
            'develop': 2,
            'differ': 1,
            'field': 1,
            'need': 1,
            'platform': 1,
            'softwar': 3,
            'take': 1,
            'tool': 1,
            'year': 1}),
  'M'),
 (FreqDist({'assist': 1,
            'busi': 1,
            'desir': 1,
            'half': 1,
            'help': 1,
            'internet': 2,
            'leader': 1,
            'learn': 1,
            'make': 1,
            'market': 2,
            'money': 1,
            'other': 1,
            'past': 1,
            'studi': 1,
            'top': 1,
            'year': 1}),
  'M'),
 (FreqDist({'dilig': 1,
            'fast': 2,
            'friendli': 1,
            'great': 1,
            'honest': 2,
            'listen': 1,
            'pace': 1,
            'pride': 1,
            'provid': 1,
            'reliabl': 1,
            'servic': 1,
            'skill': 2,
            'take': 1,
            'work': 1,
            'worker': 1}),
  'F'),
 (FreqDist({'come': 1, 'new': 1, 'soon': 1, 'websit': 1}), 'M'),
 (FreqDist({"'m": 2,
            "'s": 1,
            'activ': 3,
            'ari': 1,
            'bachelor': 1,
            'bandung': 1,
            'broadcast': 1,
            'christian': 1,
            'current': 1,
            'degre': 1,
            'english': 2,
            'indonesia': 2,
            'indonesiami': 1,
            'jakarta': 2,
            'java': 1,
            'languag': 1,
            'literatur': 1,
            'live': 1,
            'maranatha': 1,
            'media': 1,
            'mintarejanow': 1,
            'name': 1,
            'nation': 1,
            'news': 2,
            'one': 1,
            'produc': 1,
            'right': 1,
            'skill': 1,
            'still': 1,
            'sudana': 1,
            'sundanes': 1,
            'univers': 1,
            'west': 1,
            'work': 1}),
  'M'),
 (FreqDist({'10': 1,
            'abil': 1,
            'aim': 1,
            'alway': 1,
            'client': 2,
            'code': 1,
            'custom': 1,
            'decent': 1,
            'design': 2,
            'etc.i': 1,
            'exact': 1,
            'exactli': 1,
            'experi': 1,
            'expert': 1,
            'find': 1,
            'flash': 1,
            'html5/css3': 1,
            'javascript': 1,
            'joomla': 1,
            'jqueri': 1,
            'kind': 1,
            'knowledg': 1,
            'like': 1,
            'look': 1,
            'mostli': 1,
            'photoshop': 1,
            'php': 1,
            'pleas': 1,
            'practic': 1,
            'provid': 2,
            'satisfact': 1,
            'seo': 1,
            'strive': 1,
            'want': 1,
            'web2.0': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'agent': 1,
            'applic': 1,
            'busi': 1,
            'call': 3,
            'center': 3,
            'comput': 2,
            'custom': 1,
            'develop': 2,
            'experi': 2,
            'extens': 1,
            'govern': 1,
            'hr': 1,
            'industri': 3,
            'level': 1,
            'manag': 3,
            'market': 1,
            'occupi': 1,
            'outsid': 1,
            'posit': 3,
            'sector': 1,
            'servic': 1,
            'supervisori': 1,
            'technic': 1,
            'telco': 1,
            'train': 1,
            'wide': 1,
            'work': 1}),
  'M'),
 (FreqDist({'3': 1,
            'analysi': 1,
            'data': 1,
            'excel': 1,
            'experi': 1,
            'ms': 1,
            'prepar': 1,
            'report': 1,
            'technic': 1,
            'year': 1}),
  'F'),
 (FreqDist({'class': 1,
            'crm': 1,
            'custom': 2,
            'dedic': 1,
            'deliv': 1,
            'desktop': 1,
            'develop': 1,
            'dynam': 1,
            'establish': 1,
            'excel': 1,
            'experi': 1,
            'game': 1,
            'goal': 1,
            'industri': 1,
            'inform': 1,
            'infotech': 3,
            'kataria': 2,
            'meet': 1,
            'mobil': 1,
            'pda': 1,
            'platform': 2,
            'posses': 1,
            'product': 1,
            'rim': 1,
            'satisfact': 1,
            'softwar': 1,
            'solut': 2,
            'strive': 1,
            'symbian': 1,
            'technolog': 1,
            'ultim': 1,
            'well': 2,
            'window': 1,
            'work': 2,
            'workforc': 1,
            'world': 1,
            'young': 1}),
  'M'),
 (FreqDist({'engin': 1, 'freelanc': 1, 'part': 1, 'softwar': 1, 'time': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '...': 3,
            'area': 1,
            'best': 1,
            'eventhough': 1,
            'exist': 1,
            'junior': 1,
            'na': 1,
            'wan': 1,
            'world': 1}),
  'M'),
 (FreqDist({'/asp.net': 1,
            '10': 1,
            'elast': 1,
            'experi': 1,
            'mongodb': 1,
            'mssql': 1,
            'mysql': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"''": 1,
            '400': 1,
            '``': 1,
            'also': 1,
            'and/or': 1,
            'attitud': 1,
            'avail': 2,
            'client': 5,
            'complet': 1,
            'cost': 1,
            'decad': 1,
            'demand': 1,
            'deploy': 1,
            'design': 3,
            'develop': 4,
            'devot': 1,
            'differ': 1,
            'direct': 1,
            'extens': 1,
            'freelanc': 1,
            'friend': 1,
            'graphic': 2,
            'hundr': 1,
            'idea': 1,
            'individu': 1,
            'inform': 1,
            'medium': 1,
            'need': 1,
            'person': 1,
            'portfolio': 2,
            'prefer': 1,
            'project': 1,
            'provid': 3,
            'qa': 1,
            'reduc': 1,
            'scalabl': 1,
            'servic': 1,
            'skype': 1,
            'small': 1,
            'solut': 1,
            'spend': 1,
            'support': 1,
            'task': 1,
            'thu': 1,
            'time': 1,
            'top': 1,
            'toward': 1,
            'web': 2,
            'work': 2,
            'world': 1}),
  'M'),
 (FreqDist({'8': 1,
            '95': 1,
            'accuraci': 1,
            'also': 1,
            'convers': 1,
            'data': 2,
            'entri': 1,
            'experi': 1,
            'first': 1,
            'freelanc': 1,
            'get': 1,
            'hello': 1,
            'hemal': 2,
            'hope': 1,
            'job': 2,
            'last': 1,
            'lathia': 2,
            'long': 1,
            'make': 1,
            "n't": 1,
            'project': 1,
            'promis': 1,
            'relat': 1,
            'sir': 1,
            'want': 2,
            'year': 1}),
  'M'),
 (FreqDist({'android': 1,
            'applic': 1,
            'build': 1,
            'devic': 1,
            'help': 1,
            'io': 1,
            'less': 1,
            'mobil': 1,
            'need': 1,
            'programm': 1,
            'read': 1,
            'talent': 1}),
  'M'),
 (FreqDist({'admin': 1,
            'cpanel': 1,
            'de': 1,
            'en': 1,
            'espa\\xc3\\xb1ol': 1,
            'gamer': 1,
            'geek': 1,
            'joomla': 1,
            'nerd': 1,
            'php-mysql': 1,
            'server': 1,
            'twitter': 1}),
  'M'),
 (FreqDist({'2checkout': 1,
            'amazon': 1,
            'analyt': 1,
            'api': 1,
            'app': 1,
            'author': 1,
            'bootstrap': 1,
            'cart-': 1,
            'client': 1,
            'cm': 1,
            'code': 1,
            'codeignit': 1,
            'commerc': 1,
            'css': 1,
            'design': 1,
            'designi': 1,
            'develop': 5,
            'development.mi': 1,
            'dot': 1,
            'ecommerc': 2,
            'everyth': 1,
            'exact': 1,
            'first': 1,
            'follow': 1,
            'framework': 1,
            'googl': 1,
            'graphic': 1,
            'html5': 1,
            'javascript': 1,
            'joomla-': 1,
            'jqueri': 1,
            'json': 1,
            'knowledg': 1,
            'like': 1,
            'mani': 2,
            'map': 1,
            'match': 1,
            'mysql': 1,
            'net': 1,
            'os': 1,
            'payment': 1,
            'paypal': 1,
            'php': 1,
            'phpbb': 1,
            'readi': 1,
            'requir': 1,
            'satisfact': 1,
            'servic': 1,
            'smarti': 1,
            'vision': 1,
            'web': 2,
            'websit': 2,
            'wide': 1,
            'wordpress': 1,
            'work': 2,
            'wp': 1,
            'xml': 1,
            'zen': 1,
            'zencart': 1}),
  'M'),
 (FreqDist({'12': 1,
            'ba': 1,
            'certifi': 1,
            'english': 2,
            'esl': 1,
            'experi': 2,
            'field': 1,
            'greek': 1,
            'languag': 1,
            'linguist': 1,
            'literatur': 1,
            'member': 1,
            'nativ': 1,
            'proofread': 1,
            'subtitl': 1,
            'teacher': 1,
            'translat': 2,
            'wide': 1,
            'year': 1}),
  'F'),
 (FreqDist({'design': 1, 'develop': 1}), 'M'),
 (FreqDist({"''": 1,
            '2008.': 1,
            '``': 1,
            'activ': 1,
            'art': 2,
            'artist': 1,
            'bachelor': 1,
            'bascom': 3,
            'blog': 1,
            'blogger': 1,
            'contribut': 1,
            'editor': 2,
            'freelanc': 1,
            'histori': 1,
            'hold': 1,
            'louisvil': 1,
            'magazin': 1,
            'morehead': 1,
            'photograph': 1,
            'pink': 1,
            'poet': 1,
            'profession': 1,
            'sinc': 1,
            'state': 1,
            'univers': 2,
            'visual': 1,
            'well': 1,
            'writer': 1}),
  'F'),
 (FreqDist({'aim': 1,
            'and/or': 1,
            'best': 1,
            'build': 2,
            'busi': 1,
            'cost': 1,
            'decreas': 1,
            'effect': 1,
            'get': 1,
            'increas': 1,
            'job': 1,
            'manner': 1,
            'market': 1,
            'need': 1,
            'product': 1,
            'revenu': 1,
            'softwar': 1,
            'suit': 1,
            'time': 1}),
  'M'),
 (FreqDist({'...': 1,
            '7day': 1,
            'avail': 1,
            'broadband': 1,
            'connect': 1,
            'freelanc': 1,
            'got': 1,
            'new': 1,
            'week': 1}),
  'M'),
 (FreqDist({'base': 1,
            'done': 1,
            'knowledg': 1,
            'larg': 1,
            'm.b.a': 1,
            'one': 1,
            'presid': 1,
            'privat': 1,
            'research': 1,
            'sector': 1,
            'top': 1}),
  'M'),
 (FreqDist({'area': 1,
            'employ': 1,
            'experi': 1,
            'freelanc': 1,
            'great': 1,
            'hire': 1,
            'job': 1,
            'mani': 1,
            'readi': 1,
            'today': 1,
            'work': 1}),
  'M'),
 (FreqDist({'8': 1,
            'app': 3,
            'develop': 1,
            'metro': 1,
            'phone': 1,
            'php': 1,
            'ror': 1,
            'rubi': 1,
            'window': 2}),
  'M'),
 (FreqDist({'abap': 1,
            'alreadi': 1,
            'bi': 1,
            'crm': 1,
            'cycl': 1,
            'etc': 1,
            'experienc': 1,
            'full': 1,
            'hi': 1,
            'implement': 2,
            'like': 1,
            'mainli': 1,
            'mysql': 1,
            'php': 1,
            'project': 2,
            'sap': 1,
            'sever': 1,
            'technolog': 1,
            'work': 2}),
  'M'),
 (FreqDist({'orbit': 1}), 'M'),
 (FreqDist({'deadlin': 1,
            'freelanc': 1,
            'given': 1,
            'journalist': 1,
            'provid': 1,
            'qualiti': 1,
            'within': 1,
            'work': 1}),
  'M'),
 (FreqDist({'alreadi': 1,
            'announc': 1,
            'art': 1,
            'band': 1,
            'california': 1,
            'check': 1,
            'citi': 1,
            'come': 1,
            'cool': 2,
            'creat': 1,
            'dj': 1,
            'done': 1,
            'everybodi': 1,
            'find': 3,
            'go': 1,
            'graphic': 1,
            'hope': 1,
            'jack': 1,
            'keep': 1,
            'list': 1,
            'local': 3,
            'mayb': 1,
            'michigan': 1,
            'music': 2,
            'myspac': 1,
            'night': 1,
            'onlin': 1,
            'put': 1,
            'radio': 1,
            'right': 1,
            'search': 1,
            'see': 1,
            'show': 1,
            'someth': 2,
            'start': 2,
            'state': 1,
            'station': 1,
            'tell': 1,
            'that': 1,
            'unit': 1,
            'upcom': 1,
            'us': 1,
            'want': 2,
            'week': 1}),
  'M'),
 (FreqDist({'cheap': 1, 'fast': 1, 'qualit': 1}), 'M'),
 (FreqDist({"'ll": 1,
            "'m": 1,
            '2': 1,
            '3d': 3,
            '8': 1,
            'ago': 1,
            'almost': 1,
            'also': 2,
            'author': 1,
            'autodesk': 2,
            'begin': 1,
            'cad': 2,
            'cnc': 1,
            'construct': 2,
            'cost-effect': 1,
            'data': 1,
            'decad': 1,
            'design': 3,
            'desir': 1,
            'directli': 1,
            'easili': 1,
            'ensur': 1,
            'experi': 2,
            'glad': 1,
            'help': 1,
            'high-end': 1,
            'idea': 1,
            'in-hous': 1,
            'interior': 1,
            'inventor': 1,
            'latest': 1,
            'machin': 1,
            'machineri': 1,
            'make': 2,
            'manufactur': 1,
            'maximum': 1,
            'mention': 1,
            'metal': 2,
            'model': 2,
            'modern': 1,
            'modifi': 1,
            'output': 2,
            'possibl': 1,
            'print': 2,
            'produc': 2,
            'real': 1,
            'releas': 1,
            'reliabl': 1,
            'sens': 1,
            'sheet': 1,
            'shortest': 1,
            'softwar': 1,
            'someth': 1,
            'specif': 1,
            'teach': 1,
            'techniqu': 1,
            'toward': 1,
            'turn': 2,
            'use': 2,
            'virtual': 1,
            'world.i': 1,
            'worth': 1,
            'year': 1}),
  'M'),
 (FreqDist({'advanc': 1,
            'amaz': 1,
            'and/or': 1,
            'api': 1,
            'brand': 1,
            'brochur': 1,
            'busi': 1,
            'code': 1,
            'complet': 1,
            'creat': 2,
            'creativ': 1,
            'custom': 2,
            'deliv': 1,
            'design': 3,
            'develop': 2,
            'done': 1,
            'driven': 1,
            'e-commerc': 1,
            'easier': 1,
            'forum': 1,
            'get': 1,
            'goal': 1,
            'grow': 1,
            'i\\xe2\\u20ac\\u2122l': 1,
            'idea': 1,
            'includ': 1,
            'innov': 1,
            'integr': 1,
            'life': 1,
            'like': 1,
            'look': 1,
            'make': 2,
            'market': 1,
            'meet': 1,
            'membership': 1,
            'object': 1,
            'offer': 1,
            'plugin': 1,
            'post': 1,
            'produc': 1,
            'project': 1,
            'proven': 1,
            'requir': 1,
            'result': 1,
            'right': 1,
            'simpl': 1,
            'simplifi': 1,
            'solut': 4,
            'someth': 1,
            'specif': 1,
            'stand': 1,
            'strategi': 1,
            'task': 1,
            'taxonomi': 1,
            'thing': 1,
            'time': 1,
            'type': 1,
            'ultim': 1,
            'uniqu': 1,
            'websit': 3,
            'wordpress': 1,
            'you\\xe2\\u20ac\\u2122d': 1}),
  'M'),
 (FreqDist({'contact': 2,
            'detail': 1,
            'expect': 1,
            'me.mi': 1,
            'seo': 2,
            'type': 1,
            'u': 1,
            'work': 2}),
  'M'),
 (FreqDist({'also': 1,
            'audienc': 1,
            'content': 1,
            'data': 1,
            'develop': 1,
            'document': 1,
            'ecommerc': 1,
            'entri': 1,
            'experienc': 1,
            'focus': 1,
            'html/css': 1,
            'manag': 1,
            'system': 1,
            'technic': 1,
            'type': 1,
            'websit': 1,
            'will': 2,
            'wordpress': 1,
            'work': 2,
            'write': 1}),
  'M'),
 (FreqDist({'200+': 1,
            '2006\\xe2\\u20ac\\xa2': 2,
            '2009\\xe2\\u20ac\\xa2': 3,
            '\\xe2\\u20ac\\xa2': 1,
            'administr': 1,
            'applic': 1,
            'associ': 1,
            'autom': 3,
            'automation-': 3,
            'autosi': 3,
            'base': 1,
            'bash': 1,
            'batch': 1,
            'bmc': 2,
            'bourn': 1,
            'c': 1,
            'ca': 1,
            'chef': 3,
            'comput': 1,
            'consult': 6,
            'corpor': 1,
            'cover': 1,
            'cultur': 1,
            'deliveri': 1,
            'devop': 2,
            'docker': 2,
            'follow': 1,
            'infrastructur': 1,
            'lean': 1,
            'linux': 2,
            'manag': 1,
            'perl': 3,
            'program': 2,
            'programming-': 1,
            'puppet': 3,
            'rhel': 1,
            'scripting-': 1,
            'shell': 3,
            'sinc': 7,
            'sked': 4,
            'solari': 1,
            'special': 1,
            'sql': 1,
            'system': 1,
            'technologies.-': 1,
            'toward': 1,
            'unix': 2,
            'waae': 2,
            'window': 1}),
  'M'),
 (FreqDist({'contact': 1,
            'etc': 1,
            'inform': 1,
            'messag': 1,
            'pleas': 1,
            'provid': 1,
            'qualif': 1,
            'regard': 1,
            'via': 1}),
  'F'),
 (FreqDist({'engin': 1,
            'enjoy': 1,
            'everi': 1,
            'good': 1,
            'profession': 1,
            'softwar': 1,
            'time': 1}),
  'M'),
 (FreqDist({'-*': 1,
            '--': 55,
            '10+': 1,
            '8+': 1,
            'api': 1,
            'back-end': 1,
            'cakephp': 1,
            'cart': 1,
            'chase': 1,
            'checkout': 1,
            'cm': 1,
            'codeignitor': 1,
            'concept': 1,
            'custom': 1,
            'data': 1,
            'demo': 1,
            'drupal': 1,
            'experi': 2,
            'expertis': 4,
            'express': 1,
            'framework': 1,
            'gateway': 2,
            'gb': 1,
            'good': 1,
            'huge': 1,
            'instal': 1,
            'integr': 2,
            'knowledg': 1,
            'la': 1,
            'larg': 1,
            'like': 1,
            'link': 1,
            'magento': 1,
            'mysql': 3,
            'object': 1,
            'open': 1,
            'optim': 1,
            'orient': 1,
            'oscommerc': 1,
            'page': 1,
            'parti': 1,
            'payflow': 2,
            'payment': 1,
            'paypal': 1,
            'perform': 1,
            'php': 2,
            'pro': 1,
            'scrap': 2,
            'script': 1,
            'soap': 1,
            'sourc': 1,
            'tabl': 2,
            'third': 1,
            'understand': 1,
            'use': 2,
            'web': 1,
            'websit': 1,
            'wordpess': 1,
            'work': 3,
            'year': 1,
            'zen': 1,
            'zend': 1}),
  'F'),
 (FreqDist({'comput': 1, 'electr': 1, 'engen': 1}), 'M'),
 (FreqDist({"'m": 1,
            '15': 1,
            'creativ': 1,
            'experienc': 1,
            'italian': 1,
            'look': 1,
            'market': 2,
            'one': 1,
            'right': 1,
            'seo': 1,
            'strategist': 2,
            'web': 2,
            'year': 1}),
  'M'),
 (FreqDist({'--': 62,
            'abil': 1,
            'creativ': 1,
            'css': 1,
            'design': 1,
            'digit': 1,
            'directli': 1,
            'experi': 1,
            'html': 1,
            'illustr': 1,
            'independ': 1,
            'inform': 1,
            'live': 1,
            'nation': 1,
            'offset': 1,
            'photoshop': 1,
            'product': 1,
            'provid': 1,
            'separ': 1,
            'servic': 1,
            'skill': 1,
            'video': 1,
            'wordpress': 1,
            'work': 1}),
  'M'),
 (FreqDist({'also': 1,
            'applic': 3,
            'client-serv': 1,
            'custom': 3,
            'databas': 1,
            'deal': 1,
            'design': 2,
            'develop': 3,
            'internet/intranet': 1,
            'mobil': 1,
            'program': 1,
            'project': 1,
            'softwar': 3,
            'special': 1,
            'specif': 1,
            'type': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '***': 2,
            '***i': 1,
            '2': 1,
            '20': 1,
            '50': 3,
            'accept': 1,
            'addit': 3,
            'agre': 1,
            'also': 3,
            'amount': 2,
            'apach': 1,
            'bad': 1,
            'begin': 1,
            'bid': 3,
            'budget': 1,
            'buyer': 1,
            'c/c++': 1,
            'case': 3,
            'chang': 3,
            'cm': 1,
            'complet': 1,
            'contact': 1,
            'control': 1,
            'cpanel': 1,
            'creload': 1,
            'crm': 1,
            'default': 1,
            'discuss': 3,
            'done': 2,
            'e-commerc': 1,
            'either': 1,
            'escrow': 5,
            'esx': 1,
            'etc': 1,
            'everi': 1,
            'everyth': 2,
            'exactli': 1,
            'except': 1,
            'exchang': 1,
            'expect': 1,
            'experi': 1,
            'expert': 3,
            'follow': 2,
            'free': 1,
            'fund': 1,
            'get': 2,
            'hourli': 1,
            'hyper-v': 1,
            'includ': 1,
            'iptabl': 1,
            'job': 3,
            'joomla': 1,
            'know': 1,
            'last': 1,
            'let': 1,
            'linux': 1,
            'local': 1,
            'long': 1,
            'magento': 1,
            'matter': 1,
            'mayb': 1,
            'microsoft': 1,
            'middl': 2,
            'minim': 1,
            'mssql': 1,
            "n't": 2,
            'negoti': 2,
            'note': 2,
            'offer': 1,
            'one': 1,
            'open': 1,
            'opportun': 1,
            'oracl': 1,
            'os': 1,
            'otherwis': 1,
            'panel': 1,
            'pay': 2,
            'payment': 4,
            'pfsens': 1,
            'php': 1,
            'place': 4,
            'pleas': 4,
            'plesk': 1,
            'prefer': 1,
            'process': 1,
            'project': 8,
            'public': 1,
            'qmail': 1,
            'rate': 1,
            'regard': 1,
            'relat': 2,
            'releas': 3,
            'remain': 1,
            'requir': 2,
            'rest': 1,
            'result': 2,
            'revis': 1,
            'risk': 1,
            'scheme': 2,
            'scope': 1,
            'secur': 1,
            'see': 1,
            'sendmail': 1,
            'server': 3,
            'similar': 1,
            'small': 2,
            'someth': 1,
            'sourc': 1,
            'start': 4,
            'support': 1,
            'system': 1,
            'term': 2,
            'therefor': 1,
            'thing': 1,
            'tri': 1,
            'unix': 1,
            'upfront': 1,
            'usual': 2,
            'vmware': 1,
            'want': 1,
            'well': 1,
            'window': 1,
            'without': 1,
            'wordpress': 1,
            'work': 1,
            'work.2': 1,
            'work.in': 1,
            'wp': 1,
            'x-cart': 1,
            'zencart': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '15': 1,
            'abl': 1,
            'advertis': 1,
            'advic': 1,
            'also': 1,
            'analysi': 1,
            'better': 1,
            'blog': 1,
            'brochur': 1,
            'campaign': 2,
            'charter': 1,
            'commun': 1,
            'consult': 1,
            'copywrit': 1,
            'develop': 2,
            'experi': 1,
            'expertis': 1,
            'fashion': 1,
            'freelanc': 1,
            'full': 1,
            'function': 1,
            'googl': 1,
            'healthcar': 1,
            'hospit': 1,
            'implement': 1,
            'includ': 2,
            'industri': 2,
            'institut': 1,
            'keyword': 1,
            'like': 1,
            'manag': 1,
            'market': 9,
            'materi': 1,
            'measur': 1,
            'media': 2,
            'member': 1,
            'newslett': 1,
            'offer': 2,
            'outsourc': 1,
            'particular': 1,
            'plan': 2,
            'profession': 1,
            'project': 1,
            'promot': 1,
            'proofread': 1,
            'qualif': 1,
            'recruit': 1,
            'research': 1,
            'servic': 3,
            'social': 1,
            'specif': 1,
            'strategi': 2,
            'suit': 1,
            'tourism': 1,
            'uk': 1,
            'websit': 1,
            'whole': 1,
            'work': 1,
            'would': 1,
            'year': 1}),
  'F'),
 (FreqDist({'achiev': 1,
            'analyt': 1,
            'concept': 1,
            'creativ': 1,
            'demonstr': 1,
            'design': 1,
            'excel': 1,
            'except': 1,
            'goal': 1,
            'good': 1,
            'graphic': 1,
            'hand': 1,
            'initi': 1,
            'inter': 1,
            'knowledg': 1,
            'motiv': 1,
            'organ': 1,
            'person': 1,
            'photoshop': 1,
            'possess': 1,
            'principl': 1,
            'reason': 1,
            'record': 1,
            'self': 1,
            'set': 1,
            'skill': 2,
            'strong': 1,
            'track': 1,
            'well': 1,
            'well-vers': 1}),
  'M'),
 (FreqDist({'--': 52,
            'and/or': 1,
            'career': 1,
            'commun': 1,
            'comput': 1,
            'develop': 1,
            'inform': 1,
            'object': 1,
            'organ': 1,
            'profession': 1,
            'relat': 1,
            'would': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '6': 1,
            'advanc': 1,
            'applic': 1,
            'backend': 1,
            'complet': 1,
            'corpor': 1,
            'develop': 1,
            'drupal': 1,
            'e-commerc': 1,
            'experi': 1,
            'frontend': 1,
            'industri': 1,
            'land': 1,
            'one': 1,
            'open': 1,
            'page': 1,
            'platform': 1,
            'project': 1,
            'simpl': 1,
            'site': 1,
            'sourc': 1,
            'special': 1,
            'web': 2,
            'websit': 1,
            'year': 1}),
  'M'),
 (FreqDist({'5': 1,
            'alvarion': 2,
            'app': 2,
            'architect': 1,
            'bank': 1,
            'base': 1,
            'bucharest': 1,
            'client/serv': 1,
            'develop': 1,
            'erp': 1,
            'experi': 1,
            'exposur': 1,
            'french': 1,
            'ibm': 1,
            'industri': 1,
            'involv': 1,
            'java': 1,
            'java/j2e': 1,
            'manag': 2,
            'mani': 1,
            'network': 1,
            'project': 1,
            'romania': 1,
            'senior': 1,
            'softwar': 1,
            'spring': 1,
            'strut': 1,
            'system': 1,
            'technic': 1,
            'web': 1,
            'webservic': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'3': 1,
            'ahm': 1,
            'assur': 1,
            'believ': 1,
            'best': 1,
            'code': 1,
            'css': 1,
            'css3': 1,
            'deliveri': 1,
            'develop': 2,
            'experi': 1,
            'field': 1,
            'front-end': 2,
            'hello': 1,
            'honesti': 1,
            'html': 1,
            'html5': 1,
            'java': 1,
            'jqueri': 1,
            'knowledg': 1,
            'last': 1,
            'layout': 1,
            'lot': 1,
            'nasir': 1,
            'new': 1,
            'qualiti': 1,
            'regular': 1,
            'research': 1,
            'script': 1,
            'semant': 1,
            'skill': 1,
            'strong': 1,
            'technolog': 1,
            'thank': 1,
            'time': 1,
            'visit': 1,
            'web': 1,
            'wordpress': 1,
            'work': 2,
            'xhtml': 1,
            'year': 1}),
  'M'),
 (FreqDist({'chang': 1,
            'clip': 1,
            'color': 1,
            'correct': 1,
            'detail': 1,
            'guidelin': 1,
            'imag': 1,
            'instruct': 1,
            'manipul': 1,
            'per': 1,
            'perform': 1,
            'skill': 1,
            'work': 1}),
  'M'),
 (FreqDist({'applic': 1,
            'aw': 1,
            'engin': 1,
            'especi': 1,
            'interest': 1,
            'look': 1,
            'project': 1,
            'relat': 1,
            'scale': 1,
            'senior': 1,
            'softwar': 1}),
  'M'),
 (FreqDist({"'re": 1,
            '...': 1,
            'ap': 1,
            'articl': 2,
            'associ': 1,
            'award': 1,
            'best': 3,
            'blog': 1,
            'book': 2,
            'career': 1,
            'categori': 2,
            'check': 1,
            'client': 1,
            'degre': 1,
            'e-book': 1,
            'earn': 1,
            'edit': 1,
            'entri': 1,
            'former': 1,
            'four': 1,
            'freelanc': 2,
            'get': 1,
            'give': 1,
            'journal': 1,
            'journalist': 2,
            'last': 1,
            'let': 1,
            'look': 2,
            'materi': 2,
            'matters.i': 1,
            'mind': 1,
            'modern': 1,
            "n't": 2,
            'news': 2,
            'press': 1,
            'rate': 1,
            'research': 1,
            'rewritten': 1,
            'see': 1,
            'someth': 1,
            'subject': 1,
            'submit': 2,
            'sure': 1,
            'today': 1,
            'turn': 1,
            'use': 2,
            'varieti': 1,
            'want': 2,
            'work': 1,
            'write': 1,
            'written': 1,
            'year': 1}),
  'F'),
 (FreqDist({'2003': 1,
            '2008': 1,
            '4': 1,
            'access': 1,
            'administr': 3,
            'adob': 1,
            'also': 1,
            'area': 1,
            'arm': 1,
            'articul': 1,
            'camtasia': 1,
            'captiv': 1,
            'center': 1,
            'certif': 1,
            'certifi': 1,
            'consult': 1,
            'convers': 1,
            'data': 1,
            'desgin': 1,
            'design': 1,
            'develop': 1,
            'elearn': 1,
            'examin': 1,
            'experi': 3,
            'extern': 1,
            'follow': 2,
            'instruct': 2,
            'link': 1,
            'lm': 1,
            'mcsa': 1,
            'mct': 1,
            'microsoft': 1,
            'moodl': 3,
            'mssql': 3,
            'mysql': 1,
            'php': 1,
            'server': 3,
            'system': 1,
            'univers': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'15': 1,
            'also': 1,
            'avail': 1,
            'basic': 1,
            'busi': 1,
            'commerci': 1,
            'conscienti': 1,
            'cv': 1,
            'economi': 1,
            'elementari': 1,
            'english': 1,
            'estat': 1,
            'experi': 2,
            'financ': 3,
            'fluenci': 1,
            'freelanc': 2,
            'french': 1,
            'german': 1,
            'insur': 1,
            'italian': 2,
            'knowledg': 2,
            'languag': 1,
            'live': 1,
            'mani': 1,
            'motiv': 1,
            'nativ': 1,
            'oral': 1,
            'real': 1,
            'request': 1,
            'russian': 1,
            'sinc': 1,
            'tourism': 2,
            'translat': 1,
            'work': 1,
            'written': 1,
            'year': 2}),
  'F'),
 (FreqDist({'30': 1,
            'actual': 1,
            'anyon': 1,
            'believ': 1,
            'build': 2,
            'combin': 1,
            'develop': 2,
            'everyon': 1,
            'experi': 1,
            'find': 1,
            'market': 1,
            'need': 1,
            'perform': 1,
            'produc': 2,
            'sale': 2,
            'site': 1,
            'solut': 1,
            'web': 2,
            'websit': 2,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '1': 1,
            '3': 1,
            '4': 1,
            'client': 1,
            'close': 1,
            'complex': 1,
            'contact': 1,
            'deliv': 1,
            'expect': 1,
            'experi': 1,
            'facebook': 4,
            'follow': 1,
            'friend': 1,
            'googl': 2,
            'google+': 1,
            'hard': 1,
            'like': 2,
            'maintain': 1,
            'manag': 1,
            'market': 1,
            'media': 1,
            'now.i': 1,
            'pride': 1,
            'project': 2,
            'smm': 1,
            'social': 1,
            'subscrib': 2,
            'twitter': 2,
            'undertak': 1,
            'view': 1,
            'work': 1,
            'year': 2,
            'youtub': 4}),
  'M'),
 (FreqDist({'advertis': 1,
            'alreadi': 1,
            'area': 1,
            'concept': 1,
            'develop': 1,
            'new': 1,
            'tourism': 1,
            'work': 1}),
  'M'),
 (FreqDist({'5': 1,
            'brand': 1,
            'bring': 1,
            'busi': 1,
            'campaign': 1,
            'client-fac': 1,
            'close': 1,
            'commun': 2,
            'conceptu': 1,
            'content': 1,
            'digit': 1,
            'event': 1,
            'execut': 1,
            'experi': 1,
            'includ': 1,
            'integr': 1,
            'intern': 1,
            'manag': 2,
            'market': 5,
            'media': 1,
            'public': 1,
            'recruit': 1,
            'relat': 1,
            'strategi': 1,
            'year': 1}),
  'M'),
 (FreqDist({'choic': 1,
            'contact': 1,
            'critic': 1,
            'develop': 2,
            'eight': 1,
            'fail': 1,
            'feel': 1,
            'free': 1,
            'full-stack': 1,
            'look': 1,
            'magento': 1,
            'pleas': 1,
            'plu': 1,
            'problem': 1,
            'project': 1,
            'queri': 1,
            'right': 1,
            'skill': 1,
            'solut': 1,
            'thank': 1,
            'web': 1,
            'would': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 1,
            'android': 1,
            'applic': 2,
            'bespok': 1,
            'best': 1,
            'bigcommerc': 1,
            'busi': 2,
            'c': 1,
            'certifi': 3,
            'ci': 1,
            'client': 1,
            'cost': 1,
            'creat': 1,
            'creativ': 1,
            'crm': 1,
            'custom': 2,
            'dear': 1,
            'deliv': 1,
            'develop': 2,
            'eclips': 1,
            'erp': 1,
            'expertis': 1,
            'experts-': 1,
            'fit': 1,
            'help': 1,
            'inventori': 1,
            'io': 1,
            'java': 1,
            'laravel': 1,
            'last': 1,
            'long': 1,
            'manag': 1,
            'master': 1,
            'mcsd': 1,
            'mct': 1,
            'microsoft': 3,
            'mission': 1,
            'mobil': 1,
            'natur': 1,
            'need': 1,
            'object': 1,
            'offer': 1,
            'peopl': 1,
            'phonegap': 1,
            'php': 1,
            'po': 1,
            'prefer': 1,
            'proud': 1,
            'provid': 1,
            'rang': 1,
            'saa': 1,
            'salesforc': 2,
            'satisfi': 1,
            'scrum': 1,
            'servic': 1,
            'shopifi': 1,
            'softwar': 1,
            'solut': 4,
            'specialist': 1,
            'swift': 1,
            'team': 1,
            'technolog': 2,
            'us': 1,
            'volus': 1,
            'web': 2,
            'wide': 1,
            'wordpress': 1,
            'yii': 1}),
  'M'),
 (FreqDist({'applic': 1,
            'articl': 2,
            'cloud': 1,
            'comput': 1,
            'creat': 1,
            'decis': 1,
            'design': 2,
            'develop': 2,
            'dozen': 1,
            'e-commerc': 1,
            'freelanc': 1,
            'hii': 1,
            'hire': 1,
            'hundr': 1,
            'impress': 1,
            'mobil': 2,
            'one': 1,
            'program': 1,
            'proud': 1,
            'rang': 1,
            'self': 1,
            'seo': 1,
            'servic': 1,
            'skill': 1,
            'taught': 1,
            'web': 1,
            'websit': 1,
            'write': 1,
            'written': 1}),
  'M'),
 (FreqDist({'...': 1,
            'alway': 1,
            'basi': 1,
            'hard': 1,
            'minimum': 1,
            'money': 1,
            'readi': 2,
            'requir': 1,
            'start': 1,
            'urgent': 1,
            'work': 3}),
  'M'),
 (FreqDist({'2': 1,
            'codeignit': 1,
            'develop': 1,
            'experi': 1,
            'framework': 1,
            'laravel': 1,
            'php': 2,
            'use': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.we': 1,
            '3': 1,
            'accord': 1,
            'advanc': 1,
            'agreement': 1,
            'ambassador': 1,
            'appreci': 1,
            'asset': 1,
            'bangladesh': 2,
            'base': 4,
            'believ': 3,
            'best': 1,
            'build': 1,
            'busi': 2,
            'career': 1,
            'client': 3,
            'collect': 1,
            'commit': 1,
            'compani': 4,
            'complet': 2,
            'complianc': 1,
            'comput': 1,
            'consist': 1,
            'custom': 4,
            'decad': 1,
            'dedic': 1,
            'delight': 1,
            'dhaka': 1,
            'director': 1,
            'drive': 1,
            'effort': 1,
            'employ': 1,
            'employe': 2,
            'enhanc': 1,
            'ensur': 2,
            'environ': 1,
            'equal': 1,
            'establish': 1,
            'everi': 1,
            'exceed': 1,
            'excel': 1,
            'experi': 1,
            'experienc': 1,
            'f1': 6,
            'firm': 1,
            'foreign': 1,
            'frequent': 1,
            'gener': 1,
            'global': 1,
            'growth': 1,
            'guarante': 1,
            'highli': 2,
            'identifi': 1,
            'industri': 2,
            'inform': 1,
            'ite': 2,
            'knowledg': 1,
            'led': 1,
            'like': 1,
            'live': 1,
            'mainten': 1,
            'make': 1,
            'market': 1,
            'meet': 1,
            'mr.': 1,
            'need': 2,
            'offer': 1,
            'oper': 1,
            'opportun': 1,
            'outsourc': 2,
            'park': 1,
            'peak': 1,
            'peopl': 2,
            'person': 1,
            'price': 1,
            'profession': 2,
            'proven': 1,
            'provid': 1,
            'provis': 1,
            'qualiti': 5,
            'rang': 1,
            'reason': 1,
            'regist': 1,
            'regul': 1,
            'relat': 1,
            'represent': 1,
            'resourc': 1,
            'result': 1,
            'return': 1,
            'reward': 1,
            'satisfact': 1,
            'sector': 1,
            'secur': 1,
            'servic': 1,
            'skill': 2,
            'softwar': 1,
            'solut': 2,
            'solutions.w': 1,
            'specif': 1,
            'speed': 1,
            'strive': 2,
            'support': 1,
            'sure': 1,
            'system': 1,
            'team': 2,
            'technic': 1,
            'technolog': 3,
            'time': 1,
            'total': 3,
            'trade': 1,
            'valu': 3,
            'valuabl': 1,
            'ventur': 1,
            'work': 2}),
  'M'),
 (FreqDist({'access': 1,
            'applic': 1,
            'databas': 1,
            'deliv': 1,
            'deliveri': 1,
            'driven': 1,
            'drupal': 1,
            'ektron': 1,
            'exampl': 1,
            'expert': 1,
            'fast': 1,
            'get': 1,
            'joomla': 1,
            'msql': 1,
            'mysql': 1,
            'opensourc': 1,
            'oracl': 1,
            'project': 1,
            'special': 1,
            'sybas': 1,
            'web': 1,
            'wordpress': 1,
            'work': 1,
            'xml': 1}),
  'M'),
 (FreqDist({"'ve": 1,
            '+5:30': 1,
            '40': 1,
            '6': 1,
            '9:00': 1,
            'actionscript': 1,
            'ajax': 1,
            'also': 1,
            'avail': 1,
            'best': 1,
            'cm': 1,
            'codeignit': 1,
            'commun': 1,
            'consideration.thank': 1,
            'contact': 1,
            'creat': 3,
            'css': 1,
            'current': 1,
            'design': 2,
            'develop': 1,
            'done': 1,
            'english': 1,
            'experi': 2,
            'extj': 1,
            'flash': 1,
            'forward': 1,
            'framework': 1,
            'gmt': 1,
            'good': 1,
            'hello': 1,
            'hour': 1,
            'html/xhtml': 1,
            'integr': 1,
            'joomla': 1,
            'jqueri': 2,
            'know': 1,
            'knowledg': 1,
            'let': 1,
            'like': 2,
            'look': 1,
            'mani': 1,
            'monday': 1,
            'mootool': 1,
            'mysql': 1,
            'opencart': 1,
            'per': 1,
            'photoshop': 1,
            'php': 1,
            'pleas': 1,
            'plugin': 1,
            'posit': 1,
            'project': 1,
            'prototyp': 1,
            'respons': 1,
            'singh': 1,
            'site': 1,
            'smarti': 1,
            'stuff': 1,
            'templat': 1,
            'thank': 1,
            'time': 2,
            'url': 10,
            'vast': 2,
            'want': 1,
            'web': 2,
            'week': 1,
            'well.i': 1,
            'widget': 1,
            'wordpress': 1,
            'work': 2,
            'year': 1,
            'zend': 1}),
  'M'),
 (FreqDist({'also': 1,
            'articl': 3,
            'content': 1,
            'contribut': 1,
            'could': 1,
            'deadlin': 1,
            'ensur': 1,
            'especi': 1,
            'geek': 1,
            'grow': 1,
            'make': 1,
            'meet': 1,
            'mine': 1,
            'miscellan': 1,
            'music': 1,
            'nearli': 1,
            'note': 1,
            'point': 1,
            'profession': 1,
            'provid': 1,
            'qualiti': 1,
            'side': 1,
            'sinc': 1,
            'site': 1,
            'web': 1,
            'work': 1,
            'writer': 1,
            'year': 1}),
  'M'),
 (FreqDist({'10': 2,
            'ax': 1,
            'cakephp': 1,
            'cart': 1,
            'cm': 1,
            'cms-': 1,
            'codeignit': 1,
            'commerc': 1,
            'concret': 1,
            'cost': 1,
            'cs': 1,
            'css-': 1,
            'css2': 1,
            'css3': 1,
            'dbm': 1,
            'develop': 1,
            'dhtml': 1,
            'drupal': 1,
            'e': 1,
            'e-commerc': 1,
            'experi': 1,
            'git': 1,
            'good': 1,
            'html': 1,
            'javascript': 1,
            'joomla': 1,
            'jqueri': 1,
            'json': 1,
            'last': 1,
            'magento': 1,
            'mainli': 1,
            'mssql-': 1,
            'mvc': 1,
            'mysql': 1,
            'opencart': 1,
            'opensourc': 1,
            'oracl': 1,
            'php': 3,
            'postgresql': 1,
            'program': 2,
            'python': 1,
            'quick': 1,
            'reason': 1,
            'ror': 1,
            'rubi': 1,
            'skill': 2,
            'smarty-': 1,
            'strong': 1,
            'subvers': 1,
            'svn': 1,
            'symfoni': 1,
            'tool': 1,
            'tortois': 1,
            'turn': 1,
            'use': 1,
            'virtuemart': 1,
            'vss': 1,
            'web': 1,
            'websit': 1,
            'wordpress': 1,
            'work': 2,
            'xcart': 1,
            'xhtml': 1,
            'xml-': 1,
            'year': 2,
            'yii': 1,
            'yui': 1,
            'zencart': 1,
            'zend': 2}),
  'M'),
 (FreqDist({"'m": 3,
            "'ve": 1,
            '10': 1,
            '100': 1,
            'ad': 1,
            'becom': 1,
            'busi': 1,
            'card': 1,
            'cd': 1,
            'client': 3,
            'code': 1,
            'conscienti': 1,
            'creation': 1,
            'deadlin': 1,
            'decid': 1,
            'design': 2,
            'develop': 1,
            'done': 1,
            'encount': 1,
            'excel': 1,
            'experi': 1,
            'find': 1,
            'freelanc': 2,
            'get': 1,
            'graphic': 1,
            'html': 1,
            'ident': 1,
            'illustr': 1,
            'independ': 1,
            'indesign': 1,
            'last': 1,
            'like': 1,
            'make': 1,
            'mani': 1,
            'materi': 1,
            'photoshop': 1,
            'profession': 1,
            'promot': 1,
            'provid': 1,
            'puzzl': 1,
            'quark': 1,
            'recent': 1,
            'simpl': 1,
            'skill': 1,
            'solut': 1,
            'spent': 1,
            'sure': 1,
            'thing': 1,
            'thorough': 1,
            'use': 2,
            'usual': 1,
            'way': 1,
            'websit': 1,
            'well': 1,
            'whatev': 1,
            'work': 1,
            'year': 2}),
  'F'),
 (FreqDist({'9': 1,
            'client': 1,
            'commit': 1,
            'experi': 1,
            'freelanc': 1,
            'full': 1,
            'graphic': 1,
            'intro': 1,
            'motion': 1,
            'specialist': 1,
            'time': 1,
            'video': 1,
            'work': 1,
            'world': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 2,
            "'re": 1,
            '200': 1,
            '3,000': 1,
            'also': 1,
            'alway': 1,
            'articl': 2,
            'client': 3,
            'content': 1,
            'copi': 1,
            'creat': 1,
            'credit': 1,
            'design': 1,
            'detail-ori': 1,
            'differ': 1,
            'ebook': 2,
            'ehow': 1,
            'everi': 2,
            'exactli': 2,
            'fast': 2,
            'fiction': 1,
            'film': 2,
            'five': 1,
            'found': 1,
            'four': 1,
            'graphic': 1,
            'great': 1,
            'high-qual': 1,
            'import': 1,
            'independ': 1,
            'individu': 1,
            'intern': 1,
            'market': 1,
            'name': 1,
            'need': 1,
            'non-fict': 1,
            'novel': 1,
            'one': 2,
            'produc': 1,
            'provid': 3,
            'publish': 1,
            'qualiti': 1,
            'question': 1,
            'research': 1,
            'result': 1,
            'screenwrit': 1,
            'seek': 1,
            'sold': 1,
            'strive': 1,
            'today': 1,
            'tomorrow': 1,
            'topic': 1,
            'trail': 1,
            'travel': 1,
            'turnaround': 2,
            'two': 1,
            'understand': 1,
            'usa': 1,
            'varieti': 1,
            'vision': 1,
            'want': 1,
            'web': 1,
            'well': 2,
            'whether': 1,
            'within': 1,
            'work': 4,
            'writer': 1,
            'written': 2}),
  'F'),
 (FreqDist({'6': 1,
            'compani': 1,
            'develop': 1,
            'experi': 1,
            'huge': 1,
            'intern': 1,
            'languag': 1,
            'local': 1,
            'one': 1,
            'program': 1,
            'small': 1,
            'techniqu': 1,
            'use': 1,
            'variou': 1,
            'web': 1,
            'well': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'10': 1,
            'algorithm': 1,
            'analyz': 1,
            'applic': 1,
            'background': 1,
            'base': 1,
            'cell': 1,
            'code': 1,
            'cycl': 1,
            'data': 1,
            'deploy': 1,
            'design': 1,
            'develop': 1,
            'excel': 1,
            'experi': 1,
            'formula': 1,
            'industri': 1,
            'knowledg': 1,
            'life': 1,
            'manufactur': 1,
            'object-ori': 1,
            'phase': 1,
            'program': 2,
            'proven': 1,
            'softwar': 1,
            'strong': 1,
            'structur': 1,
            'translat': 1,
            'use': 1,
            'vba': 2,
            'web': 1,
            'well-vers': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'alway': 1,
            'deliveri': 1,
            'detail': 1,
            'due': 1,
            'ensur': 1,
            'project': 1,
            'provid': 1,
            'qualiti': 1,
            'receiv': 1,
            'time': 2,
            'work': 2}),
  'M'),
 (FreqDist({'5': 1,
            'development.i': 1,
            'done': 1,
            'experi': 1,
            'mani': 1,
            'php': 1,
            'project': 1,
            'web': 1,
            'year': 1}),
  'M'),
 (FreqDist({'2010.': 1,
            '2017': 1,
            'autocad': 1,
            'back': 2,
            'becom': 1,
            'chanc': 1,
            'enough': 1,
            'establish': 1,
            'etab': 1,
            'excel': 1,
            'expert': 1,
            'fast': 1,
            'finish': 1,
            'freelanc': 2,
            'get': 1,
            'good': 1,
            'great': 1,
            'grow': 1,
            'here.i': 1,
            'improv': 1,
            'join': 1,
            'less': 1,
            'local': 1,
            'octob': 1,
            'pleasur': 1,
            'postgradu': 1,
            'program': 2,
            'project': 1,
            'sinc': 1,
            'site.i': 1,
            'skill': 1,
            'vb': 1,
            'wish': 1,
            'wonder': 1,
            'work': 1}),
  'M'),
 (FreqDist({'accuraci': 1,
            'afford': 1,
            'amount': 1,
            'certainli': 1,
            'confid': 1,
            'coupl': 1,
            'drive': 1,
            'elpreiss': 2,
            'enthusiasm': 1,
            'experi': 1,
            'feel': 1,
            'financi': 1,
            'highest': 1,
            'hire': 1,
            'level': 1,
            'make': 1,
            'motiv': 1,
            'need': 1,
            'opportun': 1,
            'origin': 1,
            'project': 1,
            'qualiti': 1,
            'quot': 1,
            'satisfi': 1,
            'self': 1,
            'skill': 1,
            'success': 1,
            'suit': 1,
            'today': 1,
            'vast': 1,
            'write': 1}),
  'F'),
 (FreqDist({'build': 1,
            'busi': 3,
            'client': 2,
            'design': 2,
            'develop': 1,
            'establish': 1,
            'happen': 1,
            'happi': 1,
            'help': 1,
            'internet': 1,
            'make': 2,
            'money': 2,
            'portfolio': 1,
            'relationship': 1,
            'run': 2,
            'seo': 1,
            'someth': 1,
            'success': 1,
            'via': 2,
            'web': 2,
            'whether': 1}),
  'M'),
 (FreqDist({'.develop': 1,
            '5': 1,
            '8+': 1,
            'abl': 1,
            'ajax': 1,
            'android': 2,
            'api': 1,
            'app': 2,
            'applic': 1,
            'asp.net': 1,
            'aspir': 1,
            'back-end': 1,
            'c': 2,
            'cake': 1,
            'challeng': 1,
            'codeignitor': 1,
            'css': 1,
            'css3': 1,
            'develop': 5,
            'drupal': 1,
            'e-commerc': 1,
            'eclips': 2,
            'estim': 1,
            'excel': 1,
            'experi': 2,
            'gap': 1,
            'gateway': 1,
            'html5': 1,
            'io': 2,
            'iphone/ipad': 1,
            'javascript': 2,
            'joomla': 2,
            'jqueri': 2,
            'knowledg': 1,
            'lamp': 1,
            'languag': 1,
            'linux': 1,
            'magento': 3,
            'make': 1,
            'map': 1,
            'mobil': 1,
            'mvc': 2,
            'mysql': 1,
            'nativ': 1,
            'notif': 1,
            'object': 1,
            'opencart': 1,
            'oscommerc': 1,
            'phone': 1,
            'php': 3,
            'profession': 1,
            'programm': 1,
            'project': 1,
            'prototyp': 1,
            'servic': 1,
            'skill': 1,
            'smartphon': 1,
            'standard': 1,
            'take': 1,
            'use': 1,
            'web': 2,
            'wordpress': 2,
            'work': 1,
            'xcode': 1,
            'xhtml': 1,
            'year': 1,
            'yii': 1,
            'zencart': 1,
            'zend': 3}),
  'M'),
 (FreqDist({"'ll": 1,
            "'m": 1,
            '...': 1,
            '8': 1,
            'also': 1,
            'assign': 1,
            'awesom': 1,
            'banner': 1,
            'best': 1,
            'book': 1,
            'busi': 1,
            'card': 1,
            'client': 2,
            'comment': 1,
            'creativ': 1,
            'design': 4,
            'e-mail': 1,
            'edit': 1,
            'etc': 1,
            'experi': 1,
            'find': 1,
            'fit': 1,
            'flyer': 1,
            'graphic': 3,
            'head': 1,
            'hesit': 1,
            'imag': 1,
            'introduc': 1,
            'job': 2,
            'kept': 1,
            'letter': 1,
            'like': 1,
            'link': 1,
            'logo': 1,
            'opportun': 1,
            'past': 1,
            'pleas': 1,
            'poster': 1,
            'profession': 1,
            'satisfi': 1,
            'seek': 1,
            'self': 1,
            'show': 1,
            'signatur': 1,
            'special': 1,
            'sure': 1,
            'trust': 1,
            'type': 1,
            'variou': 1,
            'visit': 1,
            'web': 1,
            'without': 1,
            'work': 1,
            'would': 1,
            'year': 1}),
  'M'),
 (FreqDist({'activ': 1,
            'aim': 1,
            'anim': 1,
            'art': 1,
            'busi': 2,
            'consult': 1,
            'content': 1,
            'custom': 1,
            'design': 1,
            'domain': 1,
            'edit': 1,
            'engin': 1,
            'field': 1,
            'follow': 1,
            'graphic': 1,
            'host': 1,
            'internet': 1,
            'larg': 1,
            'number': 1,
            'optim': 1,
            'photographi': 1,
            'profession': 1,
            'provid': 1,
            'qualiti': 1,
            'radio': 1,
            'registr': 1,
            'search': 1,
            'server': 1,
            'servic': 1,
            'solut': 1,
            'support': 1,
            'video': 1,
            'web': 2,
            'web-bas': 1,
            'write-up': 1}),
  'M'),
 (FreqDist({'15': 1,
            '2': 1,
            '3': 1,
            '5': 2,
            'abil': 1,
            'abl': 3,
            'ajax': 1,
            'also': 1,
            'amazon': 1,
            'background': 1,
            'banner': 1,
            'believ': 1,
            'best': 1,
            'card': 1,
            'chang': 1,
            'client': 1,
            'code': 1,
            'configur': 1,
            'convert': 1,
            'creat': 2,
            'cs3': 1,
            'css': 1,
            'day': 1,
            'design': 1,
            'ean': 1,
            'edit': 1,
            'email': 2,
            'etc': 1,
            'etsi': 1,
            'everi': 1,
            'experi': 2,
            'experienc': 1,
            'found': 1,
            'full': 1,
            'fulli': 1,
            'gmail': 1,
            'good': 2,
            'got': 1,
            'graphic': 2,
            'hi': 1,
            'hotmail': 1,
            'hr': 1,
            'html': 3,
            'imag': 2,
            'it.i': 1,
            'javascript': 1,
            'jqueri': 1,
            'kamal': 1,
            'key': 1,
            'like': 1,
            'logo': 1,
            'mainli': 1,
            'mani': 1,
            'mostofa': 1,
            'number': 1,
            'onlin': 1,
            'photoshop': 1,
            'php': 1,
            'product': 1,
            'profession': 2,
            'psd': 2,
            'row': 1,
            'satisfied.i': 1,
            'seo': 1,
            'similar': 1,
            'skype': 1,
            'stop': 1,
            'success': 1,
            'support': 1,
            'templat': 2,
            'theme': 1,
            'time': 2,
            'upload': 1,
            'upwork': 1,
            'visit': 1,
            'wait': 1,
            'web': 1,
            'without': 1,
            'wordpress': 1,
            'work': 4,
            'work.i': 1,
            'worker': 1,
            'yahoo': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '1.': 1,
            '2.': 1,
            '3.': 1,
            '``': 1,
            'attack': 1,
            'bs': 1,
            'colleg': 1,
            'data': 1,
            'degre': 1,
            'differ': 2,
            'done': 1,
            'entri': 1,
            'name': 1,
            'ngo': 1,
            'prevent': 1,
            'project': 1,
            'research': 1,
            'school': 1,
            'servic': 1,
            'websit': 1}),
  'M'),
 (FreqDist({'1': 1,
            '1b': 2,
            '2': 2,
            '3': 3,
            '4': 1,
            '5': 1,
            '6': 1,
            '7': 1,
            '8': 1,
            '9': 1,
            'ad': 1,
            'add': 1,
            'anim': 3,
            'bold': 1,
            'crystal': 1,
            'deterg': 1,
            'email': 1,
            'episod': 5,
            'experi': 1,
            'first': 2,
            'forest': 1,
            'lost': 1,
            'oxford': 9,
            'phonic': 2,
            'profession': 1,
            'project': 3,
            'rain': 1,
            'read': 2,
            'scienc': 3,
            'serial': 2,
            'stage': 9,
            'star': 2,
            'talk': 6,
            'tele': 2,
            'televis': 2,
            'text': 1,
            'tree': 2,
            'web': 1,
            'zoo': 1}),
  'M'),
 (FreqDist({'2.0': 1,
            'c': 1,
            'pl': 1,
            'qualit': 1,
            'quickli': 1,
            'remot': 1,
            'servic': 1,
            'sql': 1,
            'work': 1}),
  'M'),
 (FreqDist({'5': 1,
            'abl': 1,
            'academ': 1,
            'advoc': 1,
            'also': 2,
            'articl': 1,
            'audienc': 2,
            'author': 1,
            'background': 1,
            'blog': 1,
            'build': 1,
            'campaign': 1,
            'co-found': 1,
            'commun': 1,
            'complet': 1,
            'complex': 1,
            'design': 1,
            'develop': 1,
            'directli': 1,
            'divers': 2,
            'exist': 1,
            'experienc': 2,
            'explain': 1,
            'green': 1,
            'grievanc': 1,
            'hone': 1,
            'idea': 1,
            'issu': 2,
            'last': 1,
            'led': 1,
            'letter': 1,
            'maintain': 1,
            'manag': 1,
            'media': 2,
            'media.i': 1,
            'numer': 1,
            'organ': 1,
            'polici': 1,
            'post': 1,
            'press': 1,
            'print': 1,
            'profit': 1,
            'program': 1,
            'provid': 1,
            'radio': 1,
            'ran': 1,
            'rang': 1,
            'releas': 1,
            'research': 1,
            'scratch': 1,
            'sector': 1,
            'senat': 1,
            'simpli': 1,
            'six': 1,
            'skill': 1,
            'social': 1,
            'solut': 1,
            'start': 1,
            'strong': 1,
            'submiss': 1,
            'sustain': 1,
            'tertiari': 1,
            'train': 1,
            'upon': 1,
            'whether': 1,
            'wordpress': 1,
            'work': 2,
            'workshop': 1,
            'write': 3,
            'wrote': 1,
            'year': 2}),
  'M'),
 (FreqDist({"'m": 1,
            'get': 1,
            'job': 1,
            'man': 1,
            'onlin': 1,
            'successful': 1,
            'want': 1}),
  'M'),
 (FreqDist({'advanc': 1,
            'assur': 1,
            'good': 1,
            'job': 2,
            'sincer': 1,
            'speed': 1,
            'thank': 1,
            'type': 1,
            'want': 1}),
  'M'),
 (FreqDist({'6': 1,
            'develop': 1,
            'digit': 1,
            'experi': 1,
            'freelanc': 1,
            'kumar': 1,
            'market': 1,
            'profess': 1,
            'self': 1,
            'web': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'--': 1,
            'associ': 1,
            'bangalor': 3,
            'blog': 1,
            'bosch': 2,
            'coimbator': 2,
            'corpor': 1,
            'current': 1,
            'degre': 1,
            'delhi': 1,
            'develop': 2,
            'differ': 1,
            'diploma': 1,
            'e-learn': 1,
            'freelanc': 1,
            'graduat': 1,
            'hold': 1,
            'human': 1,
            'icici': 1,
            'includ': 1,
            'india': 3,
            'indian': 1,
            'manag': 1,
            'mani': 1,
            'mnc': 1,
            'new': 1,
            'post': 1,
            'resourc': 1,
            'robert': 2,
            'skill': 1,
            'societi': 1,
            'studi': 1,
            'train': 3,
            'trainer': 1,
            'univers': 1,
            'visit': 1,
            'work': 1,
            'write': 1,
            'writer': 1}),
  'M'),
 (FreqDist({'comput': 1, 'liter': 1, 'need': 1, 'part': 1, 'time': 1}), 'F'),
 (FreqDist({'excel': 1,
            'expert': 1,
            'microsoft': 1,
            'offic': 1,
            'powerpoint': 1,
            'set': 1,
            'word': 1,
            'xp': 1}),
  'M'),
 (FreqDist({'blog': 1,
            'book': 1,
            'doctor': 1,
            'good': 1,
            'grammar': 1,
            'magazin': 1,
            'medic': 2,
            'produc': 1,
            'proofread': 1,
            'read': 1,
            'spare': 1,
            'time': 1,
            'write': 1}),
  'F'),
 (FreqDist({"'ll": 1,
            '14': 1,
            '2004': 1,
            'abl': 1,
            'accept': 1,
            'across': 1,
            'alway': 1,
            'arshi': 2,
            'arvind': 2,
            'believ': 1,
            'better': 1,
            'bid': 1,
            'confid': 1,
            'custom': 1,
            'customers.i': 1,
            'deliv': 1,
            'deliveri': 1,
            'design/develop': 1,
            'discuss': 1,
            'entir': 1,
            'experi': 1,
            'feel': 1,
            'find': 1,
            'freelanc': 2,
            'fulfil': 2,
            'globe': 1,
            'guarante': 1,
            'hi': 1,
            'issu': 1,
            'long': 1,
            "n't": 1,
            'need': 1,
            'onlin': 1,
            'outsourc': 1,
            'profession': 1,
            'project': 5,
            'provid': 2,
            'qualiti': 2,
            'relationship': 1,
            'requir': 2,
            'satisfact': 1,
            'servic': 2,
            'sinc': 1,
            'solut': 1,
            'time': 3,
            'web': 1,
            'whenev': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'freelanc': 1, 'fulltim': 1, 'home': 1, 'work': 1}), 'M'),
 (FreqDist({'account': 1,
            'appli': 1,
            'area': 1,
            'assur': 1,
            'audit': 2,
            'better': 1,
            'career': 1,
            'charter': 1,
            'complianc': 1,
            'control': 1,
            'experi': 2,
            'explor': 1,
            'forward': 1,
            'gain': 1,
            'horizon': 1,
            'intern': 1,
            'knowledg': 2,
            'look': 1,
            'new': 1,
            'organ': 2,
            'reput': 1,
            'revenu': 1,
            'skill': 2,
            'start': 1,
            'statutori': 1,
            'well': 1}),
  'M'),
 (FreqDist({"'m": 2,
            "'s": 2,
            '..': 1,
            '1997.': 1,
            '2002': 1,
            '2010': 1,
            '3': 1,
            '5': 1,
            'access': 4,
            'accomplish': 1,
            'activ': 9,
            'actual': 2,
            'ad': 1,
            'aeronaut': 1,
            'also': 1,
            'among': 2,
            'analysi': 1,
            'analyz': 1,
            'apach': 2,
            'applic': 21,
            'approach': 1,
            'area': 3,
            'associ': 1,
            'audio': 1,
            'authent': 1,
            'automat': 1,
            'automot': 1,
            'bank': 1,
            'base': 4,
            'basic': 1,
            'benefit': 1,
            'board': 1,
            'bond': 2,
            'brd': 1,
            'busi': 1,
            'c': 1,
            'c++': 1,
            'c/c++': 2,
            'ca': 3,
            'case': 1,
            'cd': 2,
            'center': 1,
            'charg': 1,
            'check': 1,
            'client': 1,
            'close': 1,
            'club': 1,
            'codewarrior': 1,
            'collect': 1,
            'command': 1,
            'commun': 2,
            'compani': 2,
            'configur': 2,
            'consist': 1,
            'contain': 1,
            'control': 5,
            'craiova': 2,
            'creat': 1,
            'csv': 2,
            'custom': 2,
            'data': 2,
            'databas': 4,
            'date': 3,
            'defin': 1,
            'delet': 1,
            'deliv': 1,
            'depend': 1,
            'descript': 3,
            'develop': 11,
            'differ': 1,
            'directori': 1,
            'discuss': 1,
            'distinguish': 1,
            'distribut': 1,
            'domain': 4,
            'download': 3,
            'dsm': 1,
            'dto': 4,
            'easi': 1,
            'eclips': 1,
            'effici': 1,
            'ehealth': 2,
            'eight': 1,
            'emerg': 1,
            'emilio': 2,
            'engin': 1,
            'entri': 1,
            'envelop': 1,
            'especi': 1,
            'etc': 1,
            'excel': 1,
            'exchang': 1,
            'exist': 1,
            'expans': 1,
            'experi': 2,
            'expertis': 2,
            'expiri': 1,
            'extens': 1,
            'extern': 2,
            'file': 4,
            'filter': 1,
            'financi': 2,
            'firm': 1,
            'flexibl': 1,
            'folder': 1,
            'follow': 2,
            'footbal': 1,
            'freelanc': 1,
            'frontpag': 1,
            'group': 3,
            'help': 1,
            'high': 1,
            'html': 1,
            'http': 1,
            'ide': 2,
            'ident': 4,
            'import': 4,
            'includ': 2,
            'inform': 4,
            'input': 1,
            'instal': 1,
            'intelidei': 2,
            'internet': 2,
            'involv': 2,
            'itali': 1,
            'italian': 1,
            'item': 1,
            'januari': 1,
            'java': 15,
            'javascript': 1,
            'jboss': 1,
            'joomla': 1,
            'jsp': 2,
            'languag': 1,
            'latest': 1,
            'ldap': 1,
            'leas': 1,
            'leverag': 1,
            'limit': 1,
            'london': 1,
            'lower': 1,
            'made': 1,
            'maintain': 1,
            'mainten': 1,
            'make': 1,
            'manag': 9,
            'manager*': 2,
            'mark': 2,
            'market': 1,
            'materi': 1,
            'may': 1,
            'mean': 2,
            'member': 3,
            'minimum': 1,
            'moara': 1,
            'model': 1,
            'modul': 7,
            'monitor': 1,
            'move': 1,
            'mysql': 2,
            'net': 1,
            'net-sol': 3,
            'netbean': 1,
            'network': 3,
            'new': 1,
            'notic': 2,
            'offer': 1,
            'one': 1,
            'oper': 2,
            'oracl': 3,
            'orang': 1,
            'organ': 1,
            'organiz': 1,
            'outsourc': 1,
            'packag': 2,
            'page': 2,
            'part': 1,
            'password': 1,
            'payment': 1,
            'pdf': 1,
            'person': 3,
            'photoshop': 1,
            'php': 1,
            'platform': 1,
            'plugin': 1,
            'polic': 1,
            'polici': 1,
            'possibl': 1,
            'price': 1,
            'print': 3,
            'process': 1,
            'product': 2,
            'program': 1,
            'programm': 1,
            'programmercompani': 3,
            'project': 7,
            'psitrad': 2,
            'purchas': 1,
            'quantiti': 3,
            'r12': 1,
            'r8': 2,
            'rang': 1,
            'raw': 1,
            'recip': 1,
            'remot': 1,
            'requir': 2,
            'restaur': 4,
            'resum': 1,
            'retriev': 1,
            'romania': 4,
            'romanian': 1,
            'sc': 1,
            'school': 1,
            'second': 1,
            'secur': 2,
            'send': 2,
            'sent': 1,
            'separ': 1,
            'servic': 1,
            'servicedesk': 8,
            'servlet': 2,
            'set': 1,
            'sever': 4,
            'similar': 1,
            'sinc': 3,
            'singl': 1,
            'site': 2,
            'small': 1,
            'smf': 1,
            'snmp': 1,
            'softwar': 3,
            'software/technologiescompani': 2,
            'solut': 2,
            'solvit': 3,
            'sound': 1,
            'sphere': 1,
            'sql': 2,
            'standalon': 1,
            'start': 1,
            'statist': 1,
            'stock': 4,
            'structur': 1,
            'strut': 1,
            'studi': 1,
            'suit': 2,
            'synchron': 1,
            'system': 5,
            'tabl': 2,
            'team': 2,
            'technolog': 2,
            'temporari': 1,
            'third': 1,
            'three': 1,
            'tomcat': 1,
            'tool': 1,
            'two': 1,
            'unicredit': 2,
            'uniqu': 1,
            'universitari': 1,
            'updat': 5,
            'upgrad': 1,
            'use': 12,
            'user': 3,
            'usernam': 1,
            'v3': 1,
            'variou': 2,
            'vc++': 1,
            'verif': 1,
            'version': 1,
            'via': 1,
            'video': 1,
            'visual': 2,
            'vodafon': 1,
            'volunt': 1,
            'waiter': 1,
            'web': 4,
            'web-bas': 1,
            'webpag': 1,
            'webserv': 1,
            'webservic': 1,
            'websit': 1,
            'wide': 1,
            'work': 4,
            'xml': 2,
            'york': 1}),
  'M'),
 (FreqDist({'area': 1,
            'audit': 1,
            'basi': 1,
            'bgp': 1,
            'cisco': 4,
            'composit': 1,
            'conduct': 1,
            'consist': 1,
            'custom': 2,
            'design': 2,
            'eigrp': 1,
            'engin': 1,
            'enterpris': 1,
            'firewal': 1,
            'hierarch': 1,
            'implement': 1,
            'inform': 1,
            'instal': 1,
            'model': 1,
            'network': 5,
            'new': 1,
            'ospf': 1,
            'r': 1,
            'router': 1,
            'run': 1,
            'secur': 1,
            'site': 1,
            'support': 1,
            'survey': 1,
            'switch': 1,
            'troubleshoot': 1,
            'upgrad': 1,
            'work': 1}),
  'M'),
 (FreqDist({'5': 1,
            'abil': 1,
            'addit': 1,
            'aim': 1,
            'articl': 2,
            'becom': 1,
            'best': 1,
            'blog': 2,
            'client': 2,
            'consid': 1,
            'custom': 1,
            'data': 2,
            'effici': 1,
            'engin': 1,
            'enhanc': 1,
            'entri': 2,
            'extens': 1,
            'freelanc': 2,
            'gear': 1,
            'get': 1,
            'great': 1,
            'help': 1,
            'hone': 1,
            'improv': 1,
            'manag': 1,
            'media': 1,
            'object': 1,
            'onlin': 1,
            'paramount': 1,
            'potenti': 1,
            'provid': 3,
            'qualiti': 2,
            'research': 2,
            'result': 1,
            'satisfactori': 1,
            'search': 1,
            'servic': 2,
            'skill': 1,
            'social': 1,
            'success': 1,
            'variou': 1,
            'web': 2,
            'well': 3,
            'write': 2,
            'year': 1}),
  'F'),
 (FreqDist({'assign': 1,
            'count': 1,
            'creat': 1,
            'eager': 1,
            'fantast': 1,
            'skill': 1,
            'specif': 1,
            'super': 1,
            'work': 1,
            'write': 1}),
  'F'),
 (FreqDist({'12': 1,
            'automot': 1,
            'bachelor': 1,
            'commun': 2,
            'develop': 1,
            'electron': 1,
            'embed': 1,
            'engin': 1,
            'excel': 1,
            'experi': 1,
            'industri': 1,
            'manner': 1,
            'profession': 1,
            'respect': 1,
            'skill': 1,
            'system': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.net': 4,
            '1.1': 1,
            '18+': 1,
            '2.0': 1,
            '2.6': 1,
            '2003': 1,
            '2005': 1,
            '3.0': 1,
            '3.5': 1,
            '4.0': 1,
            'applic': 1,
            'around': 1,
            'asp.net': 1,
            'background': 1,
            'c': 1,
            'contact': 1,
            'control': 1,
            'databas': 1,
            'desktop': 1,
            'develop': 1,
            'discuss': 1,
            'e-mail': 1,
            'enclos': 1,
            'experi': 1,
            'extens': 1,
            'follow': 2,
            'form': 1,
            'forward': 1,
            'foxpro': 1,
            'hear': 1,
            'html': 1,
            'interview': 1,
            'intranet': 1,
            'java': 1,
            'knowledg': 1,
            'like': 1,
            'look': 1,
            'microsoft': 1,
            'opportun': 1,
            'phone': 1,
            'pleas': 1,
            'posit': 1,
            'question': 1,
            'resum': 1,
            'review': 1,
            'schedul': 1,
            'script': 1,
            'server': 1,
            'servic': 1,
            'studio': 1,
            'web': 3,
            'welcom': 1,
            'would': 2,
            'xml': 1,
            'xsl': 1,
            'year': 1}),
  'M'),
 (FreqDist({'ansibl': 1,
            'applic': 2,
            'aw': 1,
            'azur': 1,
            'chef': 1,
            'cloud': 1,
            'consult': 1,
            'corpor': 1,
            'custom': 1,
            'deliv': 1,
            'devop': 4,
            'docker': 1,
            'elk': 1,
            'ensur': 1,
            'framework': 1,
            'git': 1,
            'hybrid': 1,
            'implement': 2,
            'individu': 1,
            'jenkin': 1,
            'linux': 1,
            'migrat': 1,
            'perl': 1,
            'privat': 1,
            'public': 1,
            'puppet': 1,
            'python': 1,
            'qualiti': 1,
            'rubi': 1,
            'script': 1,
            'shell': 1,
            'svn': 1,
            'train': 1,
            'unix': 1,
            'vmware': 1,
            'web': 1}),
  'M'),
 (FreqDist({'...': 2,
            'averag': 1,
            'base': 2,
            'design': 1,
            'etc': 1,
            'figur': 1,
            'flash': 1,
            'go': 1,
            'higher': 1,
            'hourli': 2,
            'lower': 1,
            'project': 2,
            'put': 1,
            'rate': 1,
            'type': 1,
            'vari': 1,
            'video': 1,
            'web': 1,
            'whether': 1}),
  'F'),
 (FreqDist({'around': 1,
            'audio': 1,
            'bend': 1,
            'coast': 2,
            'commerci': 1,
            'compani': 1,
            'format': 1,
            'heard': 1,
            'imag': 1,
            'media': 1,
            'mind': 1,
            'multimedia': 1,
            'multipl': 1,
            'new': 1,
            'offer': 1,
            'one-stop': 1,
            'over': 1,
            'product': 3,
            'radio': 2,
            'station': 1,
            'track': 1,
            'tv': 1,
            'voic': 2,
            'work': 1,
            'world': 1}),
  'M'),
 (FreqDist({'administr': 1,
            'debian': 1,
            'experienc': 1,
            'framework': 2,
            'laravel': 1,
            'mailserv': 1,
            'php': 1,
            'skill': 1,
            'system': 1,
            'webserv': 1,
            'work': 1,
            'yii': 1}),
  'M'),
 (FreqDist({'.i': 1,
            '1999': 1,
            '2009': 2,
            '2009.': 1,
            '\\xe2\\u20ac\\u201c': 2,
            'account': 1,
            'alway': 1,
            'apr': 1,
            'balanc': 1,
            'best': 1,
            'calcul': 1,
            'check': 1,
            'data': 1,
            'detail': 1,
            'develop': 1,
            'etc': 1,
            'excel': 1,
            'experi': 1,
            'gener': 1,
            'hard': 1,
            'indonesia': 1,
            'januari': 1,
            'job': 1,
            'keep': 1,
            'manag': 1,
            'march': 1,
            'move': 1,
            'octob': 1,
            'person': 1,
            'present': 1,
            'print': 1,
            'quickbook': 1,
            'report': 1,
            'respons': 1,
            'royalti': 2,
            'sa': 1,
            'senior': 1,
            'ten': 1,
            'usa': 1,
            'work': 1,
            'worker': 1,
            'year': 1}),
  'F'),
 (FreqDist({'edit': 1,
            'english': 1,
            'french': 1,
            'journalist': 1,
            'languag': 1,
            'master': 1,
            'mauritiu': 1,
            'proofread': 1,
            'translat': 1}),
  'M'),
 (FreqDist({'40': 1,
            'abil': 1,
            'agreement': 1,
            'anyon': 1,
            'arbitr': 1,
            'area': 1,
            'bank': 1,
            'believ': 1,
            'besid': 1,
            'best': 2,
            'client': 3,
            'combin': 1,
            'commerci': 2,
            'compani': 1,
            'complet': 1,
            'crimin': 1,
            'cyber': 1,
            'draft': 1,
            'els': 1,
            'endeavour': 1,
            'engag': 1,
            'experi': 1,
            'high': 1,
            'kind': 1,
            'law': 2,
            'lawyer': 1,
            'legal': 1,
            'make': 1,
            'matter': 1,
            'multin': 1,
            'net': 1,
            'perform': 1,
            'profession': 1,
            'rang': 1,
            'render': 1,
            'review': 1,
            'satisfact': 1,
            'servic': 1,
            'special': 1,
            'taxat': 1,
            'team': 1,
            'tender': 1,
            'therefor': 1,
            'think': 1,
            'twice': 1,
            'variou': 2,
            'worth': 1,
            'year': 1}),
  'M'),
 (FreqDist({'base': 1,
            'chines': 1,
            'develop': 2,
            'mobil': 2,
            'popular': 1,
            'product': 1,
            'profession': 1,
            'termin': 1,
            'varieti': 1,
            'work': 1}),
  'M'),
 (FreqDist({'10': 1,
            'also': 1,
            'channel': 2,
            'commerci': 1,
            'comput': 1,
            'consid': 1,
            'creation': 1,
            'current': 1,
            'design': 1,
            'engag': 1,
            'graphic': 3,
            'intro': 1,
            'involv': 1,
            'made': 1,
            'much': 1,
            'music': 1,
            'order': 1,
            'propos': 1,
            'readi': 1,
            'style': 1,
            'televis': 1,
            'video': 2,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 2,
            "'re": 1,
            '...': 1,
            '30': 1,
            '8': 1,
            'achiev': 1,
            'adapt': 1,
            'alway': 3,
            'app': 2,
            'attempt': 1,
            'attest': 1,
            'beauti': 1,
            'becam': 1,
            'believ': 1,
            'belt': 1,
            'book': 1,
            'brows': 1,
            'case': 1,
            'check': 1,
            'client': 1,
            'comfort': 1,
            'compound': 1,
            'comput': 2,
            'corpor': 1,
            'design': 4,
            'dynam': 1,
            'expect': 1,
            'experi': 2,
            'faculti': 1,
            'first': 1,
            'friendli': 1,
            'full': 1,
            'goal': 1,
            'graduat': 1,
            'graphic': 1,
            'headquart': 1,
            'help': 1,
            'hesit': 1,
            'hobbi': 1,
            'home': 1,
            'ident': 1,
            'independ': 1,
            'job': 1,
            'kit': 1,
            'locat': 1,
            'look': 1,
            'love': 1,
            'mathemat': 1,
            'meet': 1,
            'mobil': 1,
            "n't": 1,
            'numer': 1,
            'old': 1,
            'orient': 1,
            'perfect': 1,
            'pleasant': 1,
            'profession': 1,
            'profil': 1,
            'qualiti': 1,
            'reach': 1,
            'result': 1,
            'romania': 1,
            'satisfi': 1,
            'scienc': 2,
            'see': 1,
            'soon': 1,
            'special': 1,
            'succeed': 1,
            'testimoni': 1,
            'time': 1,
            'top': 2,
            'use': 1,
            'user': 1,
            'web': 2,
            'websit': 2,
            'work': 3,
            'year': 2}),
  'F'),
 (FreqDist({'2010': 1,
            'articl': 1,
            'date': 1,
            'entri': 1,
            'fortun': 1,
            'occasion': 1,
            'sinc': 1,
            'submiss': 1,
            'written': 1}),
  'F'),
 (FreqDist({"'s": 1,
            'chat': 1,
            'data': 1,
            'deep': 1,
            'do': 1,
            'engin': 2,
            'entri': 1,
            'find': 2,
            'freelanc': 1,
            'good': 2,
            'histori': 1,
            'inform': 1,
            'internet': 1,
            'knowledg': 1,
            'like': 1,
            'market': 4,
            'media': 1,
            'optim': 1,
            'person': 1,
            'plu': 1,
            'quit': 1,
            'research': 1,
            'search': 2,
            'sem': 1,
            'seo': 1,
            'smm': 1,
            'social': 1}),
  'M'),
 (FreqDist({"'s": 1,
            'basi': 1,
            'bid': 1,
            'busi': 1,
            'degre': 1,
            'earlier': 1,
            'employ': 1,
            'english': 1,
            'even': 1,
            'good': 1,
            'long': 1,
            'mani': 1,
            'master': 1,
            'medic': 1,
            "n't": 1,
            'part': 1,
            'passion': 1,
            'peopl': 1,
            'project': 1,
            'reason': 1,
            'sole': 1,
            'term': 1,
            'though': 1,
            'time': 1,
            'usa': 1,
            'write': 2,
            'wrote': 1}),
  'M'),
 (FreqDist({'bcom': 1,
            'complet': 1,
            'develop': 1,
            'gujarat': 1,
            'mysql': 1,
            'pgdca': 1,
            'php': 1,
            'sheth': 1,
            'websit': 1}),
  'M'),
 (FreqDist({"'m": 3,
            'also': 1,
            'cooper': 1,
            'easili': 1,
            'even': 1,
            'exampl': 1,
            'flexibl': 1,
            'full': 1,
            'good': 2,
            'hard': 1,
            'hardwork': 1,
            'industri': 1,
            'job': 1,
            'late': 1,
            'leader': 1,
            'never': 1,
            'other': 1,
            'sleep': 1,
            'tackl': 1,
            'time': 1,
            'without': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'m": 3,
            'chanc': 1,
            'client': 1,
            'complet': 1,
            'detail': 1,
            'ensur': 1,
            'given': 1,
            'job': 2,
            'man': 1,
            'new': 1,
            'organis': 1,
            'orient': 1,
            'prove': 1,
            'satisfact': 1,
            'site': 1,
            'time': 1}),
  'M'),
 (FreqDist({'angular': 1,
            'cm': 1,
            'css': 1,
            'design': 1,
            'develop': 1,
            'experi': 1,
            'html': 1,
            'javascript': 1,
            'mysql': 1,
            'php': 1,
            'technolog': 1,
            'use': 1,
            'web': 1,
            'year': 1}),
  'M'),
 (FreqDist({'anim': 1,
            'asp': 1,
            'asp.net': 1,
            'bid': 1,
            'commun': 1,
            'compani': 2,
            'concept': 1,
            'creativ': 1,
            'customer-specif': 1,
            'daili': 1,
            'deliv': 1,
            'deploy': 1,
            'design': 2,
            'develop': 4,
            'dhtml': 1,
            'ecommerc': 1,
            'email': 1,
            'experi': 2,
            'expertis': 1,
            'flash': 2,
            'function': 1,
            'got': 1,
            'hi': 1,
            'html': 1,
            'includ': 1,
            'java': 1,
            'look': 1,
            'match': 1,
            'messeng': 1,
            'ms': 1,
            'orient': 1,
            'phone': 1,
            'php': 1,
            'profession': 3,
            'propos': 1,
            'readi': 1,
            'report': 1,
            'rich': 1,
            'script': 1,
            'send': 1,
            'server': 1,
            'servic': 1,
            'site': 1,
            'sql': 3,
            'start': 1,
            'team': 2,
            'test': 1,
            'web': 2,
            'work': 1}),
  'M'),
 (FreqDist({'altern': 1,
            'articl': 1,
            'beauti': 1,
            'care': 1,
            'comprehens': 1,
            'content': 1,
            'diet': 1,
            'diy': 1,
            'edit': 1,
            'english': 1,
            'fashion': 1,
            'fit': 1,
            'health': 1,
            'home': 1,
            'leisur': 1,
            'lyric': 1,
            'nutrit': 1,
            'origin': 1,
            'pet': 1,
            'provid': 1,
            'seo': 1,
            'solut': 1,
            'special': 1,
            'stori': 1,
            'technolog': 1,
            'therapi': 1,
            'travel': 1,
            'write': 1}),
  'F'),
 (FreqDist({"'m": 2,
            '40': 1,
            'also': 1,
            'data': 1,
            'english': 1,
            'entri': 1,
            'experi': 1,
            'gujarati': 1,
            'hindi': 1,
            'profession': 1,
            'transcript': 1,
            'year': 1}),
  'M'),
 (FreqDist({'15': 1,
            '1994.': 1,
            '3': 1,
            'again.i': 1,
            'also': 1,
            'asp.net': 1,
            'base': 1,
            'box': 1,
            'bs': 1,
            'c': 1,
            'ci': 1,
            'code': 2,
            'coldfus': 1,
            'compani': 3,
            'contract': 1,
            'creat': 1,
            'custom': 1,
            'datacent': 1,
            'degre': 1,
            'develop': 2,
            'done': 3,
            'elk': 1,
            'estat': 1,
            'etc': 1,
            'except': 1,
            'job': 1,
            'like': 1,
            'linux': 1,
            'lot': 1,
            'make': 1,
            'manag': 1,
            'newel': 1,
            'php/mysql': 1,
            'project': 1,
            'real': 1,
            'report': 1,
            'roof': 1,
            'search': 2,
            'server': 2,
            'simpl': 1,
            'sinc': 1,
            'site': 1,
            'softwar': 1,
            'special': 1,
            'sql': 1,
            'system': 1,
            'web': 2,
            'window': 1,
            'work': 1,
            'year': 1,
            'zip': 1}),
  'M'),
 (FreqDist({"'ve": 1,
            '15': 1,
            'also': 1,
            'anim': 1,
            'busi': 1,
            'commerci': 1,
            'corpor': 1,
            'graphic': 1,
            'motion': 1,
            'music': 1,
            'product': 1,
            'profil': 1,
            'small': 1,
            'special': 1,
            'train': 1,
            'video': 3,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'/asp.net': 1,
            '2005': 1,
            'agil': 1,
            'also': 1,
            'applic': 1,
            'c': 1,
            'codeignit': 1,
            'command': 1,
            'concept': 1,
            'databas': 1,
            'develop': 1,
            'driven': 1,
            'experi': 1,
            'framework': 1,
            'good': 2,
            'littl': 1,
            'magento': 1,
            'oop': 1,
            'play': 1,
            'rang': 1,
            'sinc': 1,
            'tdd': 1,
            'use': 1,
            'vb6': 1,
            'web': 1,
            'well': 1,
            'wide': 1,
            'wordpress': 1,
            'zend': 1}),
  'M'),
 (FreqDist({'100': 1,
            '4': 1,
            '\\xe2\\u20ac\\u201c': 1,
            'adob': 1,
            'advertis': 1,
            'attent': 1,
            'banner': 1,
            'believ': 1,
            'brochur': 1,
            'busi': 1,
            'card': 2,
            'ccna': 1,
            'ccnp': 1,
            'certif': 1,
            'certifi': 1,
            'choos': 1,
            'client': 1,
            'commun': 2,
            'concept': 1,
            'continu': 1,
            'core': 1,
            'corel': 1,
            'corpor': 1,
            'creativ': 1,
            'custom': 1,
            'design': 4,
            'detail': 2,
            'direct': 1,
            'draw': 1,
            'end': 1,
            'envelop': 1,
            'experi': 1,
            'fair': 1,
            'first': 1,
            'flash': 1,
            'flyer': 1,
            'folder': 1,
            'graphic': 1,
            'guy': 1,
            'hardwork': 1,
            'header': 1,
            'hello': 1,
            'high': 1,
            'highli': 1,
            'i\\xe2\\u20ac\\u2122m': 1,
            'ident': 1,
            'illustr': 1,
            'includ': 1,
            'invit': 1,
            'ip': 1,
            'key': 1,
            'letterhead': 1,
            'like': 1,
            'logo': 3,
            'louder': 1,
            'market': 1,
            'materi': 1,
            'motiv': 1,
            'name': 1,
            'number': 1,
            'offer': 1,
            'one': 1,
            'option': 1,
            'photoshop': 1,
            'price': 1,
            'print': 1,
            'prioriti': 1,
            'profession': 1,
            'program': 1,
            'provid': 1,
            'qualiti': 2,
            'quick': 1,
            'research': 1,
            'result': 1,
            'revis': 1,
            'satisfact': 1,
            'satisfi': 1,
            'sell': 1,
            'send': 1,
            'servic': 1,
            'sheet': 1,
            'speak': 1,
            'specialti': 2,
            'start': 1,
            'stationari': 1,
            'support': 1,
            'thank': 2,
            'that\\xe2\\u20ac\\u2122': 1,
            'time': 1,
            'turnaround': 1,
            'type': 1,
            'usual': 1,
            'web': 1,
            'word': 2,
            'work': 4,
            'would': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 2,
            '15': 1,
            'blogger': 1,
            'came': 1,
            'great': 2,
            'hang': 1,
            'hear': 1,
            'old': 1,
            'passion': 1,
            'recent': 1,
            'site': 2,
            'therebi': 1,
            'thought': 1,
            'would': 1,
            'yr': 1}),
  'M'),
 (FreqDist({'ad': 1,
            'administr': 1,
            'classifi': 1,
            'creativ': 1,
            'depend': 1,
            'e-commerc': 1,
            'e-mail': 1,
            'estat': 1,
            'handl': 1,
            'honest': 1,
            'includ': 1,
            'offer': 1,
            'post': 1,
            'real': 1,
            'reliabl': 1,
            'research': 2,
            'servic': 2,
            'support': 2,
            'web': 1}),
  'M'),
 (FreqDist({'bing': 1,
            'design': 1,
            'first': 1,
            'googl': 1,
            'grow': 1,
            'imagin': 1,
            'make': 1,
            'sale': 1,
            'sign-up': 1,
            'togeth': 1,
            'traffic': 1,
            'visitor': 1,
            'web': 1,
            'work': 1,
            'yahoo': 1}),
  'M'),
 (FreqDist({'\\xe2\\u20ac\\u201c': 1,
            'alway': 1,
            'assess': 1,
            'board': 1,
            'civil': 1,
            'colleagu': 1,
            'content': 1,
            'creativ': 1,
            'distanc': 1,
            'educ': 1,
            'elig': 1,
            'employ': 1,
            'evalu': 1,
            'exam': 1,
            'expans': 1,
            'flexibl': 1,
            'graduat': 1,
            'high': 1,
            'investigatori': 1,
            'let': 1,
            'licens': 1,
            'major': 1,
            'manag': 2,
            'master': 1,
            'nation': 1,
            'paper': 1,
            'philippin': 1,
            'polici': 1,
            'posit': 1,
            'prc': 1,
            'profession': 1,
            'program': 1,
            'public': 2,
            'pursu': 1,
            'rate': 1,
            'receiv': 1,
            'research': 1,
            'resourc': 1,
            'school': 1,
            'scienc': 1,
            'servic': 1,
            'student': 1,
            'studi': 1,
            'talent': 1,
            'teach': 2,
            'teacher': 1,
            'train': 1,
            'univers': 1,
            'wise': 1}),
  'F'),
 (FreqDist({"'s": 1,
            'alway': 1,
            'aspect': 2,
            'balanc': 1,
            'busi': 2,
            'client': 1,
            'compani': 1,
            'etc': 1,
            'implement': 1,
            'improv': 2,
            'lean': 1,
            'manag': 4,
            'oper': 2,
            'profit': 1,
            'relat': 1,
            'skill': 3,
            'specialist': 1,
            'strateg': 1,
            'theori': 1,
            'therefor': 1,
            'ultim': 1,
            'work': 1}),
  'M'),
 (FreqDist({'attitud': 1, 'best': 1, 'deadlin': 1, 'orient': 1}), 'M'),
 (FreqDist({'alway': 1,
            'applic': 1,
            'busi': 1,
            'come': 1,
            'databas': 2,
            'develop': 1,
            'everyday': 1,
            'exit': 1,
            'filemak': 1,
            'find': 1,
            'first': 1,
            'great': 1,
            'market': 1,
            'open': 1,
            'passion': 1,
            'peopl': 1,
            'pro': 1,
            'see': 1,
            'sourc': 1,
            'tool': 1,
            'use': 1,
            'work': 1}),
  'M'),
 (FreqDist({'client': 1,
            'corpor': 1,
            'design': 6,
            'develop': 1,
            'graphic': 1,
            'high': 1,
            'ident': 1,
            'layout': 1,
            'media': 2,
            'per': 1,
            'print': 1,
            'provid': 2,
            'qualiti': 1,
            'relat': 1,
            'servic': 1,
            'stationari': 1,
            'web': 2}),
  'M'),
 (FreqDist({'applic': 1,
            'compani': 1,
            'consult': 1,
            'design': 1,
            'develop': 2,
            'india': 1,
            'like': 1,
            'mobil': 1,
            'provid': 2,
            'seo': 1,
            'servic': 4,
            'web': 2}),
  'M'),
 (FreqDist({'...': 1,
            'beij': 1,
            'china': 1,
            'european': 1,
            'japan': 1,
            'locat': 1,
            'programm': 1,
            'team': 1,
            'toward': 1,
            'translat': 1}),
  'M'),
 (FreqDist({'respons': 1, 'simpl': 1, 'worker': 1}), 'M'),
 (FreqDist({'alpha': 2,
            'articl': 4,
            'car': 1,
            'fashion': 1,
            'includ': 1,
            'latest': 4,
            'music': 1,
            'pro': 1,
            'qualif': 1,
            'review': 1,
            'seek': 2}),
  'M'),
 (FreqDist({'...': 1,
            '10': 1,
            '12': 1,
            '2000': 1,
            'also': 1,
            'api': 1,
            'appli': 1,
            'asana': 1,
            'aw': 1,
            'basecamp': 1,
            'cake': 1,
            'code': 1,
            'commerc': 1,
            'complet': 1,
            'cre': 1,
            'cvn': 1,
            'develop': 1,
            'differ': 1,
            'drupal': 1,
            'etc': 1,
            'etc\\xe2\\u20ac\\xa6-': 2,
            'experi': 2,
            'experience.-': 1,
            'framework': 1,
            'git': 1,
            'give': 1,
            'handl': 1,
            'joomla': 1,
            'json': 1,
            'lamp': 1,
            'laravel': 1,
            'lead': 1,
            'like': 3,
            'load': 2,
            'magento': 1,
            'manag': 1,
            'mani': 1,
            'manti': 1,
            'multipl': 1,
            'mysql-': 1,
            'open': 1,
            'os': 1,
            'output': 1,
            'php': 2,
            'press': 1,
            'project': 3,
            'server': 1,
            'servic': 2,
            'setup': 1,
            'size': 1,
            'smarti': 1,
            'sourc': 1,
            'summari': 1,
            'svn': 1,
            'system': 1,
            'team': 2,
            'tool': 1,
            'use': 1,
            'variou': 2,
            'vast': 1,
            'version': 1,
            'web': 2,
            'word': 1,
            'work': 4,
            'yii': 1}),
  'M'),
 (FreqDist({'25': 1,
            'achiev': 1,
            'busi': 1,
            'client': 1,
            'commun': 1,
            'compos': 1,
            'contribut': 1,
            'experi': 2,
            'focu': 1,
            'group': 1,
            'implement': 1,
            'individu': 1,
            'inform': 2,
            'integr': 1,
            'involv': 1,
            'knowledg': 2,
            'led': 1,
            'manag': 2,
            'mr.': 1,
            'object': 1,
            'oper': 1,
            'provid': 2,
            'reason': 1,
            'reliabl': 1,
            'reorgan': 1,
            'resourc': 1,
            'servic': 1,
            'size': 1,
            'solut': 1,
            'team': 1,
            'technolog': 3,
            'util': 1,
            'year': 1}),
  'M'),
 (FreqDist({'12+': 1,
            'asp.net': 1,
            'develop': 1,
            'experi': 1,
            'key': 1,
            'microsoft': 1,
            'skill': 1,
            'technolog': 1,
            'use': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 1,
            'also': 1,
            'bag': 2,
            'beij': 1,
            'compani': 1,
            'especi': 1,
            'etc': 2,
            'experi': 2,
            'fujian': 1,
            'garment': 1,
            'girl': 1,
            'inform': 1,
            'internet': 1,
            'kind': 1,
            'ladi': 1,
            'live': 1,
            'made': 1,
            'major': 1,
            'mani': 2,
            'school': 1,
            'technic': 1,
            'trade': 1,
            'translat': 2,
            'underwear': 1,
            'variou': 1,
            'via': 1,
            'year': 2}),
  'F'),
 (FreqDist({'also': 1,
            'blog': 1,
            'decid': 1,
            'especi': 1,
            'famili': 1,
            'freelanc': 1,
            'love': 1,
            'na': 1,
            'network': 1,
            'plan': 1,
            'secretari': 1,
            'social': 1,
            'spent': 1,
            'time': 1,
            'wan': 1,
            'year': 1}),
  'F'),
 (FreqDist({'4': 1,
            'also': 1,
            'client': 1,
            'damag': 1,
            'edit': 1,
            'enthusiast': 1,
            'exact': 1,
            'experience.i': 1,
            'extrem': 1,
            'involv': 1,
            'learn': 1,
            'like': 1,
            'lookout': 1,
            'mean': 1,
            'new': 1,
            'offer': 1,
            'opportun': 1,
            'passion': 1,
            'perman': 1,
            'process': 1,
            'profession': 1,
            'proofread': 1,
            'qualiti': 1,
            'reflect': 1,
            'servic': 1,
            'specif': 1,
            'style.i': 1,
            'tailor': 1,
            'text': 1,
            'translat': 4,
            'webdesign': 1,
            'without': 1,
            'year': 1}),
  'F'),
 (FreqDist({"'m": 1,
            '15': 1,
            '4': 1,
            'best': 1,
            'develop': 1,
            'evangelist': 1,
            'experi': 1,
            'focu': 1,
            'magento': 2,
            'perform': 1,
            'php': 1,
            'practic': 1,
            'program': 1,
            'scalabl': 1,
            'system': 1,
            'year': 1}),
  'M'),
 (FreqDist({'commit': 1,
            'confid': 1,
            'hardwork': 1,
            'orient': 1,
            'per': 1,
            'person': 1,
            'result': 1,
            'schedul': 1,
            'time': 1,
            'work': 1}),
  'M'),
 (FreqDist({'10': 1,
            '2010': 1,
            '6': 1,
            '8': 1,
            'code': 1,
            'dig': 1,
            'experi': 1,
            'framework': 1,
            'got': 1,
            'html/css': 1,
            'i\\xe2\\u20ac\\u2122v': 2,
            'interest': 1,
            'learn': 1,
            'less': 1,
            'php': 1,
            'rail': 1,
            'rubi': 2,
            'start': 2,
            'technolog': 1,
            'web': 2,
            'year': 3}),
  'M'),
 (FreqDist({"'s": 1,
            '12': 1,
            '2004': 1,
            'age': 1,
            'architectur': 1,
            'back': 1,
            'besid': 1,
            'databas': 1,
            'design': 3,
            'develop': 2,
            'element': 1,
            'explor': 1,
            'first': 1,
            'form': 1,
            'got': 1,
            'hand': 1,
            'import': 1,
            'keep': 1,
            'land': 1,
            'like': 1,
            'look': 1,
            'manag': 1,
            'mostli': 1,
            'never': 1,
            'new': 1,
            'often': 1,
            'one': 1,
            'platform': 1,
            'profession': 2,
            'program': 1,
            'project': 2,
            'rang': 1,
            'sinc': 1,
            'solut': 1,
            'start': 1,
            'technolog': 1,
            'test': 1,
            'though': 1,
            'ui': 1,
            'web': 1,
            'wide': 1,
            'work': 5,
            'year': 1}),
  'M'),
 (FreqDist({'100': 1,
            'alway': 1,
            'australia': 1,
            'canada': 1,
            'client': 2,
            'freelanc': 1,
            'germani': 1,
            'give': 1,
            'india': 1,
            'output': 1,
            'u.k.': 1,
            'u.s.': 1,
            'work': 1}),
  'M'),
 (FreqDist({'1992': 1,
            '500': 1,
            'also': 1,
            'art': 1,
            'book': 1,
            'busi': 3,
            'c++': 1,
            'compani': 1,
            'compliant': 1,
            'creativ': 1,
            'develop': 1,
            'done': 1,
            'fiction': 1,
            'fine': 1,
            'fortun': 1,
            'genr': 1,
            'grant': 1,
            'howev': 1,
            'internet': 1,
            'it.i': 1,
            'littl': 1,
            'look': 1,
            'mani': 1,
            'manuscript': 1,
            'market': 1,
            'master': 1,
            'mfa': 1,
            'mysql': 1,
            'non-fict': 1,
            'offer': 1,
            'other': 1,
            'php': 1,
            'profession': 1,
            'project': 1,
            'publish': 1,
            'qualiti': 1,
            'seo': 1,
            'show': 1,
            'sinc': 1,
            'site': 1,
            'skill': 2,
            'small': 1,
            'technic': 1,
            'vb': 1,
            'web': 1,
            'write': 5}),
  'M'),
 (FreqDist({'achiev': 1,
            'agre': 1,
            'attitud': 1,
            'best': 1,
            'competit': 1,
            'enabl': 1,
            'enhanc': 1,
            'focus': 2,
            'gain': 1,
            'high': 1,
            'individu': 1,
            'inform': 1,
            'knowledg': 2,
            'object': 1,
            'passion': 1,
            'perform': 2,
            'player': 1,
            'practic': 1,
            'right': 1,
            'self-motiv': 1,
            'set': 1,
            'skill': 1,
            'special': 1,
            'standard': 1,
            'team': 1}),
  'M'),
 (FreqDist({'adword': 1,
            'also': 2,
            'anywher': 1,
            'area': 1,
            'automot': 1,
            'best': 3,
            'busi': 4,
            'cart': 1,
            'cloth': 1,
            'complet': 1,
            'contact': 1,
            'current': 1,
            'develop': 1,
            'done': 1,
            'ecommerc': 2,
            'elit': 1,
            'enough': 1,
            'etc': 1,
            'experi': 1,
            'find': 1,
            'follow': 1,
            'furnitur': 1,
            'get': 1,
            'go': 1,
            'good': 1,
            'guid': 2,
            'help': 1,
            'hundr': 1,
            'know': 1,
            'knowledg': 1,
            'last': 1,
            'like': 1,
            'mani': 1,
            'market': 3,
            'marketplac': 1,
            'media': 1,
            'onlin': 2,
            'plan': 1,
            'platforms.i': 1,
            'product': 1,
            'project': 1,
            'research': 1,
            'right': 1,
            'sale': 1,
            'seo': 1,
            'shop': 1,
            'social': 1,
            'sourc': 1,
            'start': 1,
            'start-up': 1,
            'succeed': 1,
            'success': 1,
            'tactic': 1,
            'three': 1,
            'variou': 1,
            'websit': 2,
            'wholesal': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'english': 1,
            'nativ': 1,
            'qualiti': 1,
            'servic': 1,
            'web': 1,
            'writer': 1}),
  'M'),
 (FreqDist({'commun': 1,
            'experi': 1,
            'high': 1,
            'instal': 1,
            'linux': 1,
            'remot': 1,
            'server': 1,
            'servic': 1,
            'support': 2,
            'voip': 1}),
  'M'),
 (FreqDist({'ajax': 1,
            'apach': 1,
            'css': 1,
            'good': 1,
            'javascript': 1,
            'look': 1,
            'mysql': 1,
            'need': 1,
            'offshor': 1,
            'outsourc': 1,
            'partner': 2,
            'php': 1,
            'programm': 1,
            'real': 1,
            'technolog': 1,
            'work': 1}),
  'M'),
 (FreqDist({'10': 1,
            'accentur': 1,
            'client': 1,
            'combin': 1,
            'en': 1,
            'experi': 1,
            'final': 1,
            'freelanc': 1,
            'hp': 1,
            'italian': 1,
            'ite': 1,
            'languag': 1,
            'like': 1,
            'mani': 1,
            'microsoft': 1,
            'other': 1,
            'profession': 2,
            'provid': 1,
            'servic': 1,
            'translat': 2,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'ajax': 1,
            'base': 1,
            'basic': 1,
            'cse': 1,
            'css': 1,
            'design': 2,
            'engin': 1,
            'expert': 1,
            'graphic': 1,
            'html': 1,
            'javascript': 1,
            'knowledg': 1,
            'mysql': 1,
            'photoshop': 1,
            'php': 1,
            'program': 1,
            'use': 1,
            'web': 2}),
  'M'),
 (FreqDist({"'s": 1,
            'also': 2,
            'angel': 1,
            'articl': 1,
            'attend': 1,
            'author': 1,
            'blog': 1,
            'book': 1,
            'broke': 1,
            'cat': 1,
            'colleg': 1,
            'comic': 1,
            'compani': 1,
            'cours': 1,
            'current': 1,
            'establish': 1,
            'famili': 1,
            'featur': 1,
            'first': 1,
            'freelanc': 1,
            'head': 1,
            'home': 1,
            'host': 1,
            'illinoi': 1,
            'independ': 1,
            'jani': 1,
            'magazin': 1,
            'mari': 1,
            'mom': 1,
            'mostli': 1,
            'move': 1,
            'new': 1,
            'one': 1,
            'onlin': 2,
            'person': 1,
            'publish': 2,
            'resid': 1,
            'rock': 1,
            'scene': 1,
            'script': 1,
            'self': 1,
            'singl': 2,
            'site': 2,
            'son': 1,
            'train': 1,
            'upcom': 1,
            'valley': 1,
            'variou': 1,
            'web': 1,
            'websit': 1,
            'well': 1,
            'work': 1,
            'write': 3,
            'writer': 2,
            'young': 1}),
  'F'),
 (FreqDist({'hard': 1, 'person': 1, 'work': 1}), 'M'),
 (FreqDist({'big': 1,
            'compani': 1,
            'done': 1,
            'multin': 1,
            'profession': 1,
            'project': 1,
            'writer': 1}),
  'F'),
 (FreqDist({'also': 1,
            'cool': 1,
            'design': 1,
            'dynam': 1,
            'edit': 1,
            'effect': 1,
            'good': 1,
            'graphic': 1,
            'make': 1,
            'motion': 1,
            'sever': 1,
            'short': 1,
            'univers': 1,
            'videos.i': 1,
            'visual': 1,
            'want': 1}),
  'M'),
 (FreqDist({"''": 1,
            "'ll": 2,
            '``': 1,
            'artist': 1,
            'benefit': 1,
            'budget': 1,
            'busi': 1,
            'choos': 1,
            'compani': 1,
            'creativ': 3,
            'crowd': 1,
            'current': 1,
            'custom': 1,
            'design': 2,
            'differ': 2,
            'dozen': 1,
            'experi': 1,
            'expert': 1,
            'gener': 1,
            'get': 2,
            'graphic': 1,
            'hand': 1,
            'http': 1,
            'hundr': 1,
            'instead': 1,
            'kindli': 1,
            'logo': 1,
            'manufactur': 1,
            'materi': 1,
            'practic': 1,
            'programm': 1,
            'proof': 2,
            'qualiti': 1,
            'reason': 1,
            'see': 1,
            'sourc': 1,
            'team': 1,
            'uniqu': 1,
            'want': 1,
            'websit': 2,
            'work': 2,
            'worldwid': 1}),
  'F'),
 (FreqDist({'.net': 1,
            '15': 1,
            'android': 1,
            'app': 1,
            'asp': 1,
            'develop': 1,
            'differ': 1,
            'experi': 1,
            'industri': 1,
            'mvc': 1,
            'recent': 1,
            'server': 1,
            'softwar': 1,
            'solid': 1,
            'sql': 1,
            'type': 1,
            'version': 1,
            'year': 1}),
  'M'),
 (FreqDist({'5': 1,
            'admin': 1,
            'css': 1,
            'exerienc': 1,
            'html': 1,
            'java': 1,
            'linux': 1,
            'php': 1}),
  'M'),
 (FreqDist({'account': 1,
            'build': 1,
            'comfort': 1,
            'creation': 1,
            'data': 1,
            'deliv': 1,
            'entri': 1,
            'expert': 1,
            'freelanc': 1,
            'hous': 1,
            'india': 1,
            'link': 1,
            'maker': 1,
            'profil': 1,
            'qualiti': 1,
            'small': 1,
            'task': 1,
            'time': 1,
            'variou': 1,
            'work': 2,
            'worker': 1}),
  'F'),
 (FreqDist({"''": 2,
            "'m": 1,
            "'s": 1,
            "'ve": 2,
            '..': 2,
            '...': 1,
            '2008.': 1,
            '2600': 1,
            '3': 1,
            '4': 1,
            '64': 2,
            '``': 2,
            'age': 1,
            'atari': 1,
            'basic': 3,
            'cant': 1,
            'card': 1,
            'come': 1,
            'commodor': 2,
            'complet': 1,
            'comput': 1,
            'conclus': 1,
            'design': 2,
            'develop': 1,
            'dig': 1,
            'earn': 1,
            'easili': 1,
            'enough': 1,
            'enter': 1,
            'everyth': 2,
            'expert': 2,
            'field': 1,
            'first': 2,
            'give': 1,
            'graphic': 3,
            'im': 2,
            'info': 1,
            'instead': 1,
            'know': 3,
            'knowledg': 2,
            'learn': 1,
            'lesson': 1,
            'like': 1,
            'logic': 1,
            'money': 1,
            'need': 1,
            'old': 1,
            'paint': 1,
            'passion': 1,
            'pc': 1,
            'play': 1,
            'player': 1,
            'posit': 1,
            'prefer': 1,
            'problem': 1,
            'project': 2,
            'remind': 1,
            'say': 2,
            'sinc': 1,
            'soccer': 1,
            'softwar': 3,
            'someth': 3,
            'sound': 1,
            'specif': 2,
            'start': 1,
            'tell': 2,
            'tool': 1,
            'use': 1,
            'visual': 1,
            'way': 2,
            'web': 1,
            'without': 2,
            'wonder': 1,
            'word': 1,
            'world': 1,
            'year': 1}),
  'M'),
 (FreqDist({'android': 1,
            'app': 2,
            'applic': 3,
            'cakephp': 1,
            'codeignit': 1,
            'commerc': 1,
            'compon': 1,
            'core': 1,
            'custom': 1,
            'design': 1,
            'develop': 8,
            'e-commerc': 1,
            'expertis': 2,
            'facebook': 1,
            'frame': 1,
            'framework': 1,
            'html5': 1,
            'implement': 1,
            'io': 1,
            'joomla': 2,
            'magento': 1,
            'mobil': 1,
            'modul': 1,
            'offshor': 1,
            'os': 1,
            'phonegap': 1,
            'php': 1,
            'plugin': 1,
            'program': 1,
            'provid': 1,
            'rail': 1,
            'relat': 1,
            'rubi': 1,
            'servic': 1,
            'theme': 1,
            'virtuemart': 1,
            'web': 2,
            'wordpress': 2,
            'work': 1,
            'zend': 1}),
  'M'),
 (FreqDist({'10': 1,
            '11': 1,
            '4': 1,
            'academ': 1,
            'basis.mi': 1,
            'client': 2,
            'commun': 1,
            'complex': 1,
            'contact': 1,
            'content': 1,
            'cost': 1,
            'day': 2,
            'determin': 1,
            'direct': 1,
            'directli': 1,
            'directori': 1,
            'ebook': 1,
            'effect': 1,
            'engin': 1,
            'english': 2,
            'entri': 1,
            'etci': 1,
            'exact': 1,
            'experienc': 1,
            'fluent': 1,
            'focus': 1,
            'forum': 1,
            'highli': 1,
            'hour': 1,
            'interact': 1,
            'monitor': 1,
            'need': 1,
            'nomin': 1,
            'offer': 1,
            'optim': 1,
            'option': 1,
            'oversea': 1,
            'past': 1,
            'payment': 1,
            'per': 2,
            'post': 1,
            'prefer': 1,
            'press': 1,
            'price': 3,
            'product': 1,
            'progress': 1,
            'project': 2,
            'rang': 1,
            'reason': 1,
            'requir': 1,
            'search': 1,
            'seo': 1,
            'short': 1,
            'solut': 1,
            'speak': 1,
            'specif': 2,
            'submiss': 1,
            'suit': 1,
            'typic': 1,
            'variou': 1,
            'web': 1,
            'write': 3,
            'writer': 1,
            'year': 1}),
  'M'),
 (FreqDist({'comput': 1, 'graduat': 1, 'scienc': 1}), 'M'),
 (FreqDist({"'m": 1,
            'capabl': 1,
            'creation': 1,
            'data': 1,
            'enter': 1,
            'microsoft': 1,
            'offic': 1,
            'point': 1,
            'relat': 1,
            'set': 1,
            'work': 1}),
  'M'),
 (FreqDist({'academ': 1,
            'financ': 1,
            'highest': 1,
            'major': 1,
            'manageri': 1,
            'mba': 1,
            'nation': 1,
            'organ': 1,
            'posit': 1,
            'qualif': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 1,
            'africa': 1,
            'app': 1,
            'applic': 1,
            'asp': 1,
            'au': 1,
            'base': 2,
            'build': 1,
            'chang': 1,
            'compani': 2,
            'dashboard': 1,
            'destin': 1,
            'devic': 1,
            'engin': 1,
            'exist': 1,
            'financi': 1,
            'forex': 1,
            'in-hous': 1,
            'increas': 1,
            'industri': 1,
            'inhous': 1,
            'lead': 1,
            'linux': 1,
            'maintain': 1,
            'manag': 2,
            'migrat': 1,
            'mobil': 1,
            'move': 1,
            'mssql': 1,
            'offer': 1,
            'os': 1,
            'php/mysql': 1,
            'port': 1,
            'portal': 1,
            'project': 1,
            'rate': 1,
            'sa': 2,
            'school': 1,
            'server': 2,
            'site': 1,
            'softwar': 1,
            'solut': 1,
            'success': 1,
            'transact': 1,
            'travel': 1,
            'uk': 1,
            'web': 2,
            'websit': 1,
            'window': 1}),
  'M'),
 (FreqDist({'also': 1,
            'applic': 2,
            'base': 1,
            'core': 1,
            'develop': 2,
            'intelig': 1,
            'languag': 1,
            'latest': 1,
            'learn': 1,
            'machin': 1,
            'mysql': 1,
            'php': 1,
            'port': 1,
            'special': 1,
            'techniqu': 1,
            'use': 1}),
  'M'),
 (FreqDist({"'m": 1,
            "'s": 1,
            'api': 1,
            'aw': 1,
            'build': 1,
            'cento': 1,
            'citrix': 1,
            'debian': 1,
            'engin': 1,
            'esxi': 1,
            'experienc': 1,
            'expert': 1,
            'found': 1,
            'googl': 1,
            'greet': 1,
            'js': 1,
            'keyword': 1,
            'kvm': 1,
            'linux': 2,
            'list': 1,
            'love': 1,
            'map': 1,
            'media': 2,
            'nginx': 1,
            'oracl': 1,
            'php': 1,
            'project': 1,
            'relat': 1,
            'rhel': 1,
            'servic': 1,
            'stream': 3,
            'system': 1,
            'ubuntu': 1,
            'vmware': 1,
            'wowza': 1,
            'xenserv': 1}),
  'M'),
 (FreqDist({"'m": 2,
            'ajax': 1,
            'aka': 1,
            'blog': 1,
            'django': 1,
            'dojo': 1,
            'experienc': 1,
            'hi': 1,
            'javascript': 1,
            'jqueri': 1,
            'json': 1,
            'live': 1,
            'mootool': 1,
            'mysql': 1,
            'north': 1,
            'oracle-': 1,
            'prototyp': 1,
            'pylon': 1,
            'python': 1,
            'toolkit': 1,
            'webdevelop': 1,
            'xml': 1}),
  'M'),
 (FreqDist({'10+': 1,
            '6+': 1,
            'advertis': 1,
            'base': 1,
            'design': 1,
            'experi': 2,
            'forward': 1,
            'freelanc': 1,
            'graphic': 1,
            'hong': 1,
            'industri': 1,
            'invit': 1,
            'kong': 1,
            'like': 1,
            'look': 1,
            'market': 1,
            'overal': 1,
            'photography.i': 1,
            'portfolio': 1,
            'request': 1,
            'retail': 1,
            'take': 1,
            'work': 2,
            'would': 1,
            'year': 2}),
  'F'),
 (FreqDist({"'s": 1,
            '...': 2,
            '10+': 1,
            '100': 1,
            '7': 1,
            'accuraci': 1,
            'achiev': 1,
            'add': 1,
            'administr': 1,
            'almost': 1,
            'alway': 1,
            'area': 1,
            'around': 1,
            'articl': 1,
            'asp.net*': 1,
            'assist': 1,
            'best': 3,
            'blog': 1,
            'cart': 1,
            'client': 5,
            'commit': 1,
            'competit': 1,
            'compil': 1,
            'contact': 1,
            'continu': 1,
            'corner': 1,
            'css*': 1,
            'data': 2,
            'deliv': 1,
            'describ': 1,
            'design': 1,
            'detail': 1,
            'develop': 1,
            'devis': 1,
            'directori': 1,
            'entri': 2,
            'erp': 1,
            'etc.web': 1,
            'event': 2,
            'everi': 2,
            'experi': 1,
            'expertis': 1,
            'far': 1,
            'focu': 1,
            'forum': 1,
            'freelanc': 2,
            'give': 1,
            'globe': 1,
            'hospit': 1,
            'hotel': 1,
            'hrm': 1,
            'html*': 1,
            'hubpag': 1,
            'huge': 1,
            'import': 2,
            'industri': 1,
            'inform': 1,
            'job': 2,
            'key': 1,
            'like': 1,
            'link': 1,
            'ltd.': 1,
            'mainli': 1,
            'manag': 2,
            'name': 1,
            'one': 1,
            'onlin': 3,
            'particular': 1,
            'past': 1,
            'payrol': 1,
            'per': 1,
            'percent': 1,
            'person': 1,
            'platform': 1,
            'po': 1,
            'print': 1,
            'process': 1,
            'product': 1,
            'profil': 1,
            'project': 2,
            'provid': 1,
            'qualiti': 1,
            'quick': 1,
            'rate': 1,
            'report': 1,
            'requirement.data': 1,
            'research': 4,
            'sale': 1,
            'satisfi': 1,
            'schedul': 1,
            'serv': 1,
            'servic': 3,
            'set': 1,
            'shop': 1,
            'sinc': 1,
            'site': 2,
            'small': 1,
            'social': 1,
            'softwar': 1,
            'solut': 2,
            'specif': 1,
            'squidoo': 1,
            'start': 1,
            'still': 1,
            'submiss': 2,
            'submission*': 2,
            'success': 1,
            'technolog': 1,
            'tri': 1,
            'turn': 1,
            'updat': 1,
            'upload': 1,
            'us': 1,
            'valuabl': 1,
            'virtual': 1,
            'websit': 1,
            'work': 3,
            'year': 2}),
  'M'),
 (FreqDist({'assist': 1,
            'backbone.j': 1,
            'experi': 1,
            'interest': 1,
            'javascript': 3,
            'jqueri': 1,
            'middl': 1,
            'project': 3,
            'pure': 1,
            'rail': 2,
            'react': 1,
            'rubi': 1,
            'simpli': 1,
            'well': 1,
            'work': 1}),
  'M'),
 (FreqDist({'6': 1,
            'applic': 2,
            'area': 1,
            'associ': 1,
            'bpm': 1,
            'busi': 2,
            'certif': 1,
            'certifi': 3,
            'data': 1,
            'deliveri': 1,
            'deploy': 1,
            'develop': 7,
            'execut': 1,
            'experi': 2,
            'field': 1,
            'hibern': 1,
            'implement': 1,
            'integr': 2,
            'java/j2e': 1,
            'languag': 1,
            'main': 1,
            'manag': 1,
            'platform': 1,
            'post': 1,
            'power': 1,
            'process': 4,
            'product': 3,
            'project': 1,
            'server': 3,
            'servic': 2,
            'soa': 2,
            'softwar': 1,
            'solut': 1,
            'sphere': 4,
            'support': 1,
            'test': 1,
            'unit': 1,
            'web': 5,
            'webspher': 3,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 2,
            'accord': 2,
            'accuraci': 1,
            'achiev': 2,
            'across': 1,
            'allow': 2,
            'alway': 1,
            'applic': 1,
            'approach': 1,
            'apt': 1,
            'bank': 2,
            'benefit': 1,
            'best': 1,
            'bpo': 1,
            'bring': 1,
            'busi': 4,
            'calcul': 1,
            'capit': 1,
            'client': 2,
            'clients.our': 1,
            'collect': 1,
            'compani': 5,
            'competit': 2,
            'comput': 1,
            'consist': 1,
            'consult': 1,
            'content': 1,
            'continu': 1,
            'contract': 1,
            'convert': 4,
            'core': 2,
            'courtesi': 1,
            'creat': 2,
            'custom': 7,
            'daili': 1,
            'data': 1,
            'deliv': 1,
            'deliveri': 2,
            'demand': 1,
            'design': 3,
            'develop': 2,
            'digit': 2,
            'distribut': 1,
            'diver': 3,
            'doc': 3,
            'document': 1,
            'drawn': 1,
            'driver': 1,
            'dynam': 1,
            'edg': 1,
            'edit': 1,
            'electron': 1,
            'emphasi': 1,
            'enabl': 1,
            'ensur': 2,
            'entir': 1,
            'environ': 1,
            'environment.our': 1,
            'excel': 1,
            'experi': 1,
            'expertis': 1,
            'faith': 1,
            'financ': 1,
            'flexibl': 1,
            'format': 1,
            'fund': 1,
            'gif': 2,
            'global': 2,
            'globe': 1,
            'goal': 1,
            'govern': 2,
            'help': 1,
            'highli': 2,
            'imag': 2,
            'implement': 1,
            'improv': 1,
            'includ': 1,
            'industri': 1,
            'inform': 2,
            'innov': 1,
            'insight': 1,
            'insur': 2,
            'integr': 2,
            'intellig': 1,
            'intrins': 1,
            'keen': 1,
            'key': 1,
            'line': 1,
            'log': 4,
            'look': 1,
            'mainten': 1,
            'make': 2,
            'manag': 2,
            'manpow': 1,
            'manufactur': 1,
            'market': 1,
            'meet': 1,
            'member': 1,
            'mind': 1,
            'model': 1,
            'modifi': 1,
            'ms': 1,
            'mutual': 1,
            'need': 1,
            'number': 1,
            'offer': 2,
            'optim': 1,
            'partner': 1,
            'payment': 1,
            'pdf': 1,
            'pool': 1,
            'pride': 1,
            'pro-act': 1,
            'process': 3,
            'processingw': 1,
            'product': 4,
            'profession': 1,
            'provid': 6,
            'qualiti': 2,
            'rang': 1,
            'reflect': 1,
            'relationship': 1,
            'reorgan': 1,
            'resourc': 1,
            'respons': 1,
            'retail': 1,
            'retain': 1,
            'sai': 1,
            'salari': 1,
            'schedul': 2,
            'servic': 8,
            'share': 1,
            'sheet': 1,
            'shop': 1,
            'simpl': 1,
            'skill': 2,
            'softwar': 3,
            'solut': 4,
            'soul': 1,
            'span': 1,
            'spirit': 1,
            'stage': 1,
            'strive': 1,
            'support': 1,
            'sustain': 1,
            'talent': 1,
            'task': 1,
            'team': 2,
            'technolog': 2,
            'technology-bas': 1,
            'time': 2,
            'today': 1,
            'total': 1,
            'track': 1,
            'transform': 1,
            'trend': 1,
            'trust': 1,
            'undertak': 1,
            'us': 1,
            'use': 2,
            'util': 1,
            'valu': 2,
            'variou': 1,
            'vast': 1,
            'vertic': 2,
            'virtualcad': 4,
            'vision': 1,
            'wealth': 1,
            'word': 4,
            'work': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '...': 1,
            '35': 1,
            '78': 1,
            'articl': 1,
            'banner': 1,
            'better': 1,
            'blog': 1,
            'bring': 2,
            'busi': 3,
            'client': 5,
            'collabor': 1,
            'consist': 1,
            'cricket': 1,
            'daili': 1,
            'either': 1,
            'end': 2,
            'energi': 1,
            'entrepreneur': 1,
            'exactli': 1,
            'faster': 1,
            'find': 1,
            'flyer': 1,
            'freelanc': 1,
            'gone': 1,
            'googl': 1,
            'guarante': 1,
            'help': 1,
            'ideal': 1,
            'increas': 1,
            'interest': 1,
            'internet': 1,
            'know': 1,
            'lead': 1,
            'look': 1,
            'make': 2,
            'market': 1,
            'measur': 1,
            'media': 1,
            'money': 1,
            "n't": 1,
            'one': 1,
            'outsid': 1,
            'owner': 1,
            'pleas': 1,
            'post': 1,
            'press': 1,
            'qualifi': 1,
            'releas': 1,
            'remark': 1,
            'result': 2,
            'satisfi': 1,
            'save': 1,
            'search': 2,
            'see': 2,
            'sell': 1,
            'servic': 1,
            'small': 1,
            'social': 1,
            'stori': 1,
            'tell': 1,
            'time': 1,
            'tri': 1,
            'updat': 1,
            'visual': 1,
            'want': 1,
            'websit': 1,
            'work': 3}),
  'F'),
 (FreqDist({'...': 1,
            '9': 1,
            'ajax': 1,
            'angularj': 2,
            'api': 1,
            'applic': 2,
            'assur': 1,
            'avail': 1,
            'bootstrap': 1,
            'button': 1,
            'code': 1,
            'contact': 1,
            'css3': 2,
            'custom': 1,
            'deliv': 1,
            'design': 1,
            'develop': 2,
            'differ': 1,
            'end': 1,
            'experi': 2,
            'expertis': 1,
            'fair': 1,
            'fast': 2,
            'framework': 2,
            'front': 1,
            'get': 1,
            'googl': 1,
            'great': 1,
            'high-qual': 1,
            'hire': 1,
            'html5': 1,
            'ignitor': 1,
            'integr': 1,
            'interact': 1,
            'javascript': 2,
            'lamp': 1,
            'larg': 1,
            'like': 1,
            'manag': 1,
            'map': 1,
            'media': 1,
            'method': 1,
            'mvc': 2,
            'mysql': 1,
            "n't": 1,
            'node.j': 1,
            'offer': 1,
            'payment': 1,
            'perl': 1,
            'php': 1,
            'price': 1,
            'profession': 1,
            'prompt': 1,
            'qualiti': 1,
            'quick': 1,
            'react': 2,
            'reliabl': 1,
            'respons': 1,
            'robust': 1,
            'senior': 1,
            'server': 1,
            'servic': 1,
            'sever': 1,
            'shell': 1,
            'size': 1,
            'social': 1,
            'solutions-': 1,
            'sql': 1,
            'strong': 1,
            'summari': 1,
            'turnaround': 2,
            'web': 4,
            'wo': 1,
            'wordpress': 2,
            'work': 2,
            'would': 1,
            'xml': 1,
            'year': 1}),
  'F'),
 (FreqDist({'10': 1,
            '100': 1,
            'client': 1,
            'develop': 1,
            'drive': 1,
            'experi': 1,
            'fortun': 1,
            'help': 1,
            'implement': 1,
            'mnc': 1,
            'open': 1,
            'passion': 1,
            'provid': 1,
            'scale': 1,
            'sme': 2,
            'solut': 1,
            'sourc': 1,
            'succeed': 1,
            'success': 1,
            'technolog': 1,
            'use': 1,
            'variou': 1,
            'year': 1}),
  'M'),
 (FreqDist({'academ': 1, 'design': 1, 'websit': 1, 'writer': 1}), 'F'),
 (FreqDist({'believ': 1,
            'clariti': 1,
            'clear': 1,
            'commun': 1,
            'content': 1,
            'custom': 1,
            'deliv': 1,
            'engag': 1,
            'english': 1,
            'everi': 1,
            'expect': 1,
            'feedback': 1,
            'give': 1,
            'goal': 1,
            'grammar': 1,
            'high': 1,
            'highli': 1,
            'key': 1,
            'make': 1,
            'nativ': 1,
            'present': 1,
            'profession': 2,
            'project': 2,
            'proper': 1,
            'qualiti': 2,
            'reader': 1,
            'satisfi': 1,
            'speaker': 1,
            'time': 2,
            'us': 1,
            'work': 3,
            'writer': 1}),
  'M'),
 (FreqDist({'5': 1,
            'direct': 1,
            'easier': 1,
            'energi': 1,
            'experienc': 1,
            'flow': 1,
            'focu': 1,
            'found': 1,
            'freelanc': 1,
            'im': 1,
            'internet': 1,
            'like': 1,
            'market': 3,
            'money': 1,
            'net': 1,
            'tradit': 1,
            'year': 2}),
  'M'),
 (FreqDist({'activ': 1,
            'ad': 1,
            'applic': 1,
            'assembl': 1,
            'authent': 1,
            'author': 1,
            'basic': 1,
            'c/c++': 1,
            'com': 1,
            'compon': 1,
            'consol': 1,
            'cryptographi': 1,
            'dcom': 1,
            'delphi': 1,
            'develop': 1,
            'directori': 1,
            'eap': 1,
            'gdi': 1,
            'gui': 1,
            'instrument': 1,
            'interfac': 1,
            'local': 1,
            'manag': 2,
            'microsoft': 1,
            'mmc': 1,
            'netbio': 1,
            'pascal': 1,
            'qt': 1,
            'secur': 1,
            'socket': 1,
            'softwar': 1,
            'system': 2,
            'unix/linux': 1,
            'visual': 1,
            'vpn': 1,
            'window': 4,
            'wmi': 1,
            'x': 1}),
  'M'),
 (FreqDist({"'m": 2,
            'abl': 1,
            'alreadi': 1,
            'attent': 1,
            'bit': 1,
            'bore': 1,
            'chanc': 1,
            'clean': 1,
            'compani': 1,
            'convinc': 1,
            'custom': 2,
            'germani': 1,
            'get': 2,
            'give': 1,
            'given': 1,
            'heavili': 1,
            'implement': 1,
            'known': 2,
            'larg': 1,
            'life': 1,
            'littl': 1,
            'mani': 1,
            'pay': 1,
            'program': 1,
            'user-friendli': 1,
            'usual': 1,
            'varieti': 1,
            'well': 1}),
  'M'),
 (FreqDist({'ad': 1,
            'advantag': 1,
            'assist': 1,
            'base': 1,
            'client': 1,
            'current': 1,
            'done': 1,
            'experi': 1,
            'get': 1,
            'good': 1,
            'hi': 1,
            'industri': 1,
            'job': 1,
            'knowledg': 2,
            'lead': 1,
            'manag': 1,
            'peopl': 1,
            'person': 1,
            'profil': 1,
            'sinc': 1,
            'task': 1,
            'team': 1,
            'us': 1,
            'variou': 1,
            'virtual': 2,
            'work': 3}),
  'M'),
 (FreqDist({'site': 1, 'view': 1, 'work': 1}), 'M'),
 (FreqDist({'access': 2,
            'analyt': 1,
            'applic': 1,
            'area': 1,
            'client': 1,
            'consult': 1,
            'cours': 1,
            'curricula': 1,
            'databas': 2,
            'design': 2,
            'detail-ori': 1,
            'develop': 2,
            'educ': 1,
            'employe': 1,
            'experi': 1,
            'expertis': 1,
            'extens': 1,
            'global': 1,
            'help': 1,
            'highli': 1,
            'includ': 1,
            'independ': 1,
            'internet': 1,
            'leader': 1,
            'ms': 3,
            'offic': 1,
            'organ': 1,
            'provid': 2,
            'rang': 1,
            'school': 1,
            'servic': 1,
            'specif': 1,
            'technolog': 1,
            'train': 1,
            'transform': 1,
            'use': 1}),
  'F'),
 (FreqDist({'b.a': 1,
            'career': 1,
            'continu': 1,
            'grand': 1,
            'look': 1,
            'state': 1,
            'univers': 1,
            'valley': 1,
            'work': 1,
            'write': 2}),
  'M'),
 (FreqDist({'2.5': 1,
            '2010.': 1,
            '3+': 1,
            'abl': 1,
            'api': 2,
            'applic': 1,
            'attent': 1,
            'autom': 3,
            'back': 1,
            'basic': 1,
            'blocker': 1,
            'case': 1,
            'choos': 1,
            'come': 1,
            'decemb': 1,
            'design': 1,
            'detail': 1,
            'develop': 4,
            'differ': 1,
            'discov': 1,
            'done': 1,
            'engin': 3,
            'experienc': 1,
            'extens': 1,
            'extrem': 1,
            'find': 1,
            'framework': 3,
            'freelanc': 1,
            'full': 1,
            'get': 1,
            'got': 1,
            'hire': 1,
            'implement': 1,
            'java': 1,
            'knowledg': 1,
            'last': 1,
            'linkedin': 1,
            'manual': 1,
            'need': 1,
            'one': 1,
            'organ': 1,
            'passion': 3,
            'plan': 1,
            'profil': 1,
            'protocol': 1,
            'qa': 4,
            'qualiti': 1,
            'real': 2,
            'rest': 1,
            'right': 1,
            'script': 1,
            'selenium': 1,
            'senior': 1,
            'setup': 1,
            'side': 2,
            'soap': 1,
            'softwar': 1,
            'spent': 1,
            'strong': 1,
            'switch': 1,
            'test': 5,
            'tester': 1,
            'thing': 1,
            'variou': 1,
            'web': 3,
            'work': 2,
            'year': 3}),
  'M'),
 (FreqDist({'administr': 1,
            'ahm': 1,
            'experienc': 1,
            'hi': 1,
            'server': 1,
            'web': 1}),
  'M'),
 (FreqDist({'analysi': 1,
            'applic': 2,
            'architect': 1,
            'back-offic': 1,
            'client': 1,
            'compani': 2,
            'connect': 1,
            'custom': 1,
            'design': 3,
            'develop': 6,
            'dynam': 1,
            'economi': 1,
            'engin': 1,
            'experi': 2,
            'extens': 1,
            'gener': 1,
            'horizont': 1,
            'implement': 3,
            'integr': 4,
            'internet/intranet': 1,
            'market': 3,
            'new': 1,
            'offer': 2,
            'offshor': 1,
            'optim': 1,
            'part': 1,
            'product': 4,
            'product.w': 1,
            'program': 1,
            'provid': 1,
            'search': 1,
            'sell': 1,
            'seo': 1,
            'servic': 5,
            'services.th': 1,
            'softwar': 3,
            'solut': 4,
            'support': 2,
            'system': 1,
            'take': 1,
            'technic': 1,
            'technolog': 2,
            'test': 1,
            'total': 1,
            'turnkey': 1,
            'user': 1,
            'vertic': 1,
            'web': 1,
            'web-sit': 1,
            'well': 2,
            'work': 1}),
  'M'),
 (FreqDist({"'s": 1,
            'ajax': 1,
            'compon': 1,
            'english': 1,
            'fluent': 1,
            'food': 1,
            'joomla': 1,
            'oop': 1,
            'php': 1,
            'russian': 1,
            'speaker': 1,
            'wonderland': 1,
            'work': 1,
            'xml': 1}),
  'M'),
 (FreqDist({'account': 1, 'expert': 1, 'softwar': 1}), 'M'),
 (FreqDist({'3.5': 1,
            'applic': 1,
            'area': 2,
            'autom': 1,
            'base': 1,
            'ecommerc': 1,
            'experi': 1,
            'exposur': 1,
            'focu': 1,
            'function': 1,
            'major': 1,
            'mobil': 1,
            'process': 1,
            'project': 1,
            'selenium': 1,
            'softwar': 1,
            'system': 1,
            'technic': 1,
            'test': 3,
            'toward': 1,
            'use': 1,
            'web': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'...': 1,
            'adob': 1,
            'bfa': 1,
            'busi': 1,
            'creativ': 2,
            'cut': 1,
            'educ': 1,
            'english': 1,
            'final': 1,
            'microsoft': 1,
            'new': 1,
            'offic': 1,
            'press': 1,
            'quark': 1,
            'small': 1,
            'solut': 1,
            'studio': 1,
            'suit': 1,
            'univers': 1,
            'writingcont': 1,
            'york': 1}),
  'F'),
 (FreqDist({'15': 1,
            'banner': 1,
            'comput': 1,
            'current': 1,
            'degre': 1,
            'design': 3,
            'experi': 1,
            'graphic': 2,
            'master': 1,
            'project': 1,
            'technolog': 1,
            'web': 2,
            'year': 1}),
  'F'),
 (FreqDist({'15': 1,
            '2009.': 1,
            'also': 1,
            'back-end': 1,
            'career': 1,
            'comfort': 1,
            'develop': 1,
            'drupal': 1,
            'encod': 1,
            'feel': 1,
            'front-end': 1,
            'like': 1,
            'magento': 1,
            'modul': 1,
            'profession': 1,
            'project': 1,
            'respons': 1,
            'sinc': 1,
            'start': 1,
            'succeed': 1,
            'symfony2': 1,
            'task': 1,
            'technolog': 1,
            'wordpress': 1}),
  'M'),
 (FreqDist({'18th': 1,
            '1985': 1,
            '1993': 1,
            '1999': 2,
            '2005': 2,
            '2006': 5,
            '2007': 3,
            '2008': 2,
            '2009': 1,
            '22': 1,
            '\\xc3\\u02dc': 32,
            '\\xe2\\u20ac\\u201c': 2,
            'abil': 3,
            'academ': 1,
            'achiev': 1,
            'activ': 1,
            'akinola': 2,
            'akoko': 6,
            'analyt': 1,
            'appreci': 1,
            'architect': 1,
            'architectur': 3,
            'asp': 1,
            'attend': 1,
            'auto': 1,
            'birth': 2,
            'build': 1,
            'cad': 1,
            'career': 1,
            'centr': 1,
            'certif': 3,
            'christian': 1,
            'classic': 1,
            'colleg': 2,
            'command': 1,
            'commun': 1,
            'compet': 1,
            'complex': 1,
            'comput': 4,
            'consist': 1,
            'construct': 2,
            'contribut': 1,
            'correct': 1,
            'curricular': 1,
            'data': 1,
            'date': 1,
            'date\\xc3\\u02dc': 2,
            'deadlin': 1,
            'degre': 1,
            'dept': 1,
            'develop': 1,
            'diploma': 1,
            'display': 1,
            'divers': 1,
            'easili': 1,
            'effect': 1,
            'energi': 1,
            'english': 1,
            'ensur': 1,
            'entrepreneuri': 1,
            'examin': 1,
            'excel': 2,
            'firm': 1,
            'five': 1,
            'form': 1,
            'formerli': 1,
            'giwa': 2,
            'goal': 1,
            'govt': 1,
            'growth': 1,
            'gsm': 1,
            'harmoni': 1,
            'headquart': 1,
            'heritag': 1,
            'high': 1,
            'human': 1,
            'immens': 1,
            'institut': 1,
            'interperson': 1,
            'june': 1,
            'lago': 3,
            'land': 1,
            'landscap': 1,
            'languag': 1,
            'layout': 1,
            'learn': 1,
            'lectur': 1,
            'live': 1,
            'local': 1,
            'maintain': 1,
            'mainten': 1,
            'male': 1,
            'manageri': 1,
            'marit': 1,
            'maven': 1,
            'maxim': 1,
            'meet': 1,
            'minimum': 1,
            'nation': 3,
            'nd': 1,
            'neighborhood': 2,
            'nigeria': 8,
            'nigerian': 1,
            'oba': 4,
            'object': 2,
            'offic': 2,
            'ondo': 9,
            'optim': 1,
            'organiz': 1,
            'organization\\xe2\\u20ac\\u2122': 1,
            'origin': 1,
            'osun': 2,
            'owo': 3,
            'person': 1,
            'place': 2,
            'plan': 2,
            'polic': 2,
            'polytechn': 3,
            'pressur': 1,
            'primari': 1,
            'process': 1,
            'product': 1,
            'profession': 1,
            'project': 2,
            'prospect': 1,
            'public': 2,
            'qualif': 1,
            'quickli': 1,
            'recreat': 1,
            'relat': 2,
            'relax': 1,
            'religi': 1,
            'research': 1,
            'resourc': 1,
            'road': 1,
            'rufu': 2,
            'school': 3,
            'senior': 2,
            'sex': 1,
            'shop': 1,
            'singl': 1,
            'site': 1,
            'skill': 6,
            'solut': 1,
            'south': 1,
            'space': 1,
            'spirit': 1,
            'sport': 1,
            'star': 1,
            'state': 14,
            'statu': 1,
            'step': 1,
            'suit': 1,
            'supervis': 1,
            'system': 1,
            'take': 1,
            'team': 1,
            'tel': 4,
            'three': 1,
            'time': 1,
            'top': 1,
            'toward': 1,
            'town': 1,
            'travel': 1,
            'twenti': 1,
            'use': 1,
            'util': 1,
            'west': 1,
            'work': 6}),
  'M'),
 (FreqDist({"'s": 2,
            '2008': 1,
            'analysi': 1,
            'autom': 1,
            'busi': 1,
            'challeng': 1,
            'code': 1,
            'commun': 2,
            'contribut': 1,
            'critic': 1,
            'customers.i': 1,
            'deploy': 1,
            'drupal': 5,
            'enterpris': 1,
            'expert': 1,
            'grow': 2,
            'help': 1,
            'involv': 1,
            'issu': 1,
            'lead': 1,
            'lot': 1,
            'mnc': 1,
            'organization.i': 1,
            'passion': 1,
            'php': 1,
            'product': 1,
            'provid': 2,
            'sinc': 1,
            'software/web': 1,
            'solut': 2,
            'solv': 1,
            'statist': 1,
            'support': 1,
            'variou': 1,
            'work': 2}),
  'M'),
 (FreqDist({"'m": 2,
            'activ': 1,
            'ajax': 1,
            'also': 2,
            'applic': 1,
            'base': 1,
            'branch': 1,
            'care': 1,
            'cross-brows': 1,
            'design': 1,
            'develop': 1,
            'experi': 1,
            'framework': 1,
            'freelanc': 1,
            'graphic': 1,
            'interact': 1,
            'involv': 1,
            'jqueri': 1,
            'js': 1,
            'like': 1,
            'mani': 1,
            'mysql': 1,
            'php': 1,
            'script': 1,
            'server-sid': 1,
            'templat': 1,
            'web': 1,
            'year': 1}),
  'M'),
 (FreqDist({'acc': 1,
            'excel': 1,
            'ms': 1,
            'offic': 1,
            'project': 1,
            'visio': 1,
            'word': 1}),
  'M'),
 (FreqDist({'agenda': 1,
            'area': 1,
            'articl': 1,
            'behind': 1,
            'better': 1,
            'busi': 1,
            'challeng': 2,
            'client': 2,
            'compromis': 1,
            'continu': 1,
            'daili': 1,
            'date': 1,
            'deadlin': 1,
            'decid': 1,
            'deliv': 1,
            'done': 1,
            'down.thank': 1,
            'ever': 1,
            'experi': 1,
            'experienc': 1,
            'fail': 1,
            'frame': 1,
            'give': 1,
            'great': 1,
            'handl': 1,
            'height': 1,
            'hi': 1,
            'improv': 1,
            'intens': 1,
            'let': 1,
            'look': 1,
            'love': 2,
            'make': 1,
            'mani': 1,
            'moment': 1,
            'never': 1,
            'new': 1,
            'prime': 1,
            'project': 2,
            'provid': 1,
            'qualiti': 2,
            'regard': 1,
            'relat': 1,
            'result': 1,
            'short': 1,
            'sure': 1,
            'take': 1,
            'team': 3,
            'that': 1,
            'tight': 1,
            'till': 1,
            'time': 2,
            'trust': 3,
            'us': 4,
            'well': 1,
            'within': 1,
            'without': 1,
            'work': 4,
            'would': 3,
            'writer': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '3d': 2,
            '9': 1,
            'charact': 1,
            'design': 2,
            'etc..': 1,
            'exactli': 1,
            'experi': 1,
            'expertis': 1,
            'exterior': 1,
            'graphic': 1,
            'hi': 1,
            'illustr': 1,
            'interior': 1,
            'look': 1,
            'max': 1,
            'maya': 1,
            'model': 1,
            'photoshop': 1,
            'potenti': 1,
            'product': 1,
            'profession': 1,
            'project': 1,
            'provid': 1,
            'qualiti': 1,
            'quick': 1,
            'ray': 1,
            'right': 1,
            'skill': 1,
            'start': 1,
            'v': 1,
            'want': 1,
            'well': 1,
            'work': 3,
            'year': 1}),
  'M'),
 (FreqDist({'look': 1, 'qualiti': 1, 'serious': 1, 'work': 2}), 'F'),
 (FreqDist({"'re": 1,
            "'s": 2,
            '1,000': 1,
            'also': 1,
            'appear': 1,
            'becom': 1,
            'brand': 1,
            'browser': 1,
            'care': 2,
            'code': 1,
            'configur': 1,
            'content': 3,
            'creat': 1,
            'css': 1,
            'design': 1,
            'directli': 1,
            'dramat': 1,
            'easili': 1,
            'engin': 2,
            'enjoy': 1,
            'enough': 1,
            'enter': 1,
            'expert': 1,
            'forward': 1,
            'graphic': 1,
            'hand': 1,
            'help': 3,
            'html': 1,
            'import': 1,
            'improv': 1,
            'increas': 2,
            'invis': 1,
            'learn': 1,
            'make': 1,
            'memor': 1,
            'one': 2,
            'onto': 1,
            'optim': 2,
            'percent': 1,
            'posit': 1,
            'privileg': 1,
            'recognit': 1,
            'search': 6,
            'seo': 3,
            'servic': 1,
            'sure': 1,
            'theme': 2,
            'thousand': 1,
            'url': 1,
            'user': 1,
            'visibl': 1,
            'visit': 2,
            'websit': 4,
            'wo': 2,
            'wordpress': 5,
            'work': 1,
            'ye': 1}),
  'M'),
 (FreqDist({'bot': 1,
            'develop': 2,
            'expert': 1,
            'seo': 2,
            'softwar': 1,
            'work': 1}),
  'F'),
 (FreqDist({"'ve": 3,
            'alway': 1,
            'analyst': 1,
            'busi': 1,
            'c': 1,
            'c++': 1,
            'client': 1,
            'code': 3,
            'day': 1,
            'demo': 1,
            'drupal': 1,
            'engin': 1,
            'hobbi': 1,
            'includ': 1,
            'job': 1,
            'joomla': 2,
            'like': 1,
            'mambo': 1,
            'mingl': 1,
            'past': 1,
            'php': 1,
            'provid': 1,
            'quit': 1,
            'receiv': 1,
            'run': 1,
            'school': 1,
            'server': 1,
            'site': 1,
            'solut': 1,
            'student': 1,
            'ten': 1,
            'time': 1,
            'undergrad': 1,
            'univers': 1,
            'vb': 1,
            'want': 1,
            'wordpress': 1,
            'year': 2}),
  'M'),
 (FreqDist({'account': 1,
            'background': 1,
            'book': 1,
            'design': 1,
            'everyth': 1,
            'financi': 1,
            'forward': 1,
            'keep': 1,
            'look': 1,
            'statement': 1,
            'thinker': 1,
            'work': 1}),
  'M'),
 (FreqDist({'articl': 1,
            'broker': 1,
            'captiv': 1,
            'content': 1,
            'deadlin': 1,
            'desk': 1,
            'goal': 1,
            'grammar': 1,
            'handl': 1,
            'keep': 1,
            'last': 1,
            'let': 1,
            'need': 1,
            'perfect': 1,
            'piec': 1,
            'project': 1,
            'punctuat': 1,
            'score': 1,
            'second': 1,
            'style': 1,
            'text': 1,
            'tick': 1,
            'wordsmith': 1,
            'work': 1,
            'write': 1}),
  'M'),
 (FreqDist({'alway': 1,
            'expertis': 1,
            'hard': 1,
            'learn': 1,
            'look': 1,
            'loyal': 1,
            'need': 1,
            'new': 2,
            'one': 1,
            'project': 1,
            'realli': 1,
            'servic': 1,
            'sincer': 1,
            'smart': 1,
            'softwar': 1,
            'technic': 1,
            'thing': 1,
            'want': 1,
            'worker': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '6': 1,
            'clientel': 1,
            'commerci': 1,
            'deadlin': 1,
            'done': 1,
            'effect': 1,
            'equal': 1,
            'experi': 1,
            'film': 1,
            'grow': 1,
            'hope': 1,
            'list': 1,
            'passion': 2,
            'task': 1,
            'televis': 1,
            'tight': 1,
            'varieti': 1,
            'visual': 1,
            'year': 1}),
  'M'),
 (FreqDist({'...': 1,
            'accent': 1,
            'alway': 1,
            'asia': 1,
            'assur': 1,
            'australia': 1,
            'bangladesh': 1,
            'believ': 1,
            'better': 1,
            'bidder': 1,
            'biswa': 2,
            'canada': 1,
            'comfort': 1,
            'custom': 3,
            'deliveri': 1,
            'director': 1,
            'durat': 1,
            'enthusiast': 1,
            'firm': 1,
            'inform': 1,
            'keep': 1,
            'long': 1,
            'loop': 1,
            'manag': 1,
            'one': 2,
            'progress': 1,
            'project': 4,
            'qualiti': 2,
            'realli': 1,
            'relat': 1,
            'relax': 1,
            'rest': 1,
            'satisfact': 1,
            'seriou': 1,
            'servic': 1,
            'technolog': 1,
            'time': 1,
            'uk': 1,
            'usa': 1,
            'work': 2}),
  'M'),
 (FreqDist({'api-': 1,
            'api.-': 1,
            'applic': 1,
            'cakephp': 1,
            'css': 1,
            'databas': 1,
            'develop': 1,
            'facebook': 1,
            'feed': 1,
            'framework': 1,
            'googl': 1,
            'graph': 1,
            'html': 1,
            'html5': 1,
            'integr': 1,
            'javascript': 1,
            'jira': 1,
            'job': 1,
            'jquery/ajax': 1,
            'languag': 1,
            'map': 1,
            'memcach': 1,
            'misc': 1,
            'multi': 1,
            'mvc': 1,
            'mysql.-': 1,
            'netbean': 1,
            'oophp': 1,
            'pdo': 1,
            'php5': 1,
            'rss': 1,
            'search': 1,
            'services.-': 1,
            'svn': 1,
            'web': 3,
            'websites.-': 1,
            'xhtml': 1,
            'xml': 2}),
  'M'),
 (FreqDist({'..': 1,
            'bpo': 1,
            'busi': 1,
            'exp': 1,
            'industri': 1,
            'run': 1,
            'tri': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'*\\thave': 2,
            '*\\tsound': 2,
            '01': 1,
            '10th': 1,
            '17': 1,
            '17th': 2,
            '200': 2,
            '2003': 1,
            '2006': 2,
            '2007': 2,
            '2009': 1,
            '2d': 1,
            '3': 3,
            '3.0': 1,
            '31st': 1,
            '36': 2,
            '3d': 1,
            '4': 1,
            '5': 1,
            '6': 1,
            '600': 1,
            '8': 2,
            '800': 1,
            '94.3': 4,
            '\\xe2\\u20ac\\u0153best': 1,
            '\\xe2\\u20ac\\u201c': 6,
            'abl': 1,
            'achiev': 1,
            'act': 1,
            'add': 1,
            'ahead': 1,
            'aid': 1,
            'airllab': 2,
            'also': 1,
            'among': 1,
            'ampl': 1,
            'anim': 1,
            'associ': 1,
            'audio': 3,
            'bardl': 2,
            'bringer': 2,
            'cdj': 3,
            'certifi': 1,
            'challeng': 1,
            'channel': 3,
            'citi': 2,
            'codec': 1,
            'commun': 1,
            'consol': 1,
            'contain': 1,
            'cut': 1,
            'date': 4,
            'day': 2,
            'design': 1,
            'digit': 3,
            'digital-mix': 2,
            'dil': 2,
            'dj': 1,
            'done': 2,
            'drama': 1,
            'dub': 1,
            'edit': 2,
            'educ': 1,
            'electron': 1,
            'end': 3,
            'engin': 3,
            'english': 1,
            'esteem': 1,
            'etc': 2,
            'etc\\xe2\\u20ac\\xa6': 1,
            'expect': 1,
            'experi': 2,
            'explor': 1,
            'final': 1,
            'fl': 1,
            'fm': 5,
            'forg': 1,
            'freelanc': 1,
            'garag': 1,
            'gave': 1,
            'graphic': 1,
            'hindi': 1,
            'human': 1,
            'india': 1,
            'internet': 1,
            'j': 1,
            'jan': 1,
            'jiyo': 2,
            'knowledg': 1,
            'known\\t': 1,
            'languag': 1,
            'last': 1,
            'level': 2,
            'live': 1,
            'look': 1,
            'marathi': 1,
            'may': 3,
            'mix': 2,
            'mixer': 2,
            'mk2': 2,
            'modul': 1,
            'month': 4,
            'month\\xe2\\u20ac\\u2122': 1,
            'myfm': 2,
            'nagpur': 5,
            'nation': 2,
            'nuendo': 2,
            'object': 1,
            'oct': 2,
            'onair': 2,
            'opportun': 1,
            'organ': 1,
            'pioneer': 3,
            'play': 1,
            'posit': 1,
            'privat': 1,
            'pro': 1,
            'produc': 3,
            'product': 2,
            'profici': 1,
            'promo': 4,
            'provid': 1,
            'qualif': 1,
            'r': 2,
            'raipur': 2,
            'rc': 2,
            'record': 1,
            'region': 1,
            'repeat': 1,
            'right': 1,
            'se': 2,
            'servic': 1,
            'show': 1,
            'sinc': 1,
            'softwar': 3,
            'sound': 5,
            'stage': 1,
            'start': 3,
            'station': 1,
            'storm': 1,
            'studio': 2,
            'technic': 1,
            'techniqu': 1,
            'time': 1,
            'transfer': 1,
            'transmiss': 1,
            'tx': 2,
            'upto': 1,
            'use': 2,
            'user': 1,
            'v2': 1,
            'v3': 2,
            'vega': 1,
            'vers': 1,
            'visual': 1,
            'work': 6,
            'yamaha': 2,
            'year': 1}),
  'M'),
 (FreqDist({'+254': 2,
            '097e-mail': 1,
            '10': 1,
            '10.': 1,
            '100': 2,
            '1986nation': 1,
            '2008-2009': 1,
            '2008/2009': 1,
            '2009': 1,
            '2011': 1,
            '2012': 1,
            '2013.2006-2007': 1,
            '2015.2007-2011': 1,
            '2015\\tmaseno': 1,
            '266': 1,
            '50': 1,
            '595': 1,
            '715': 1,
            '722779914': 1,
            '727': 1,
            '875': 1,
            '9.6': 1,
            '\\t': 1,
            '\\t25th': 1,
            '\\t26457404languag': 1,
            '\\t\\t+254': 1,
            '\\t\\tmaled': 1,
            '\\tacadem': 1,
            '\\tenglish': 1,
            '\\tkenyanid': 1,
            '\\tmaseno': 4,
            '\\tmisori': 1,
            '\\tonyango': 1,
            '\\tresearch': 2,
            '\\tsingletel': 1,
            '\\tst': 1,
            '\\tthe': 2,
            '\\xe2\\u20ac\\u201c': 4,
            'academ': 1,
            'across': 1,
            'address': 1,
            'adult': 1,
            'advanc': 1,
            'africa': 1,
            'african': 3,
            'agenda': 2,
            'ambiti': 1,
            'appetit': 1,
            'appreciation.refereesgeorg': 1,
            'art': 2,
            'articl': 4,
            'articles2012': 1,
            'attend': 2,
            'attract': 1,
            'august': 1,
            'awb': 1,
            'ba': 2,
            'bachelor': 2,
            'background2013': 1,
            'basi': 1,
            'basic': 1,
            'benchmark': 1,
            'big': 1,
            'birth': 1,
            'blog': 3,
            'brief': 2,
            'brought': 1,
            'bureau': 1,
            'busi': 7,
            'career': 3,
            'center': 3,
            'certif': 3,
            'class': 1,
            'colleg': 1,
            'commun': 3,
            'compani': 2,
            'complet': 2,
            'comput': 2,
            'conduct': 3,
            'confer': 1,
            'content': 2,
            'contest': 2,
            'cours': 3,
            'cover': 1,
            'creat': 1,
            'credit.2003-2006': 1,
            'curriculum': 1,
            'custom': 1,
            'deal': 1,
            'defer': 1,
            'department': 1,
            'design': 1,
            'detailsful': 1,
            'director': 1,
            'divis': 1,
            'e.a': 1,
            'east': 4,
            'editingachievements2010-2011': 1,
            'editor': 1,
            'educ': 2,
            'emerg': 1,
            'entri': 1,
            'essay': 1,
            'experi': 1,
            'experience2013': 1,
            'fact': 1,
            'featur': 2,
            'field': 1,
            'finalist': 1,
            'finest': 1,
            'follow': 1,
            'gather': 1,
            'grade.1994-2002': 1,
            'graduat': 2,
            'gruel': 1,
            'guchu': 1,
            'half': 1,
            'high': 2,
            'inform': 4,
            'innov': 1,
            'insati': 1,
            'institut': 1,
            'interest': 1,
            'interview': 2,
            'jacob': 1,
            'joonyango2012': 1,
            'journal': 3,
            'journalist': 1,
            'kcpe': 1,
            'kcse': 1,
            'kenya': 4,
            'kiswahilimarit': 1,
            'kombo': 1,
            'lead': 1,
            'left': 1,
            'leonard': 1,
            'ligisa': 1,
            'limit': 2,
            'link': 1,
            'long': 1,
            'magazine.2008': 1,
            'manag': 2,
            'market': 2,
            'media': 5,
            'microsoft': 1,
            'million': 1,
            'mitc': 1,
            'muc': 1,
            'name': 1,
            'new': 2,
            'next': 1,
            'nose': 1,
            'number': 1,
            'object': 1,
            'objectivejacob': 1,
            'offic': 1,
            'one': 1,
            'opportunities.2008-2009': 1,
            'organ': 1,
            'otienogend': 1,
            'overal': 1,
            'paper': 1,
            'part': 1,
            'part-tim': 1,
            'particip': 1,
            'paul\\xe2\\u20ac\\u2122': 1,
            'photojourn': 1,
            'plu': 3,
            'prefer': 1,
            'present': 2,
            'press': 1,
            'primari': 2,
            'proceed': 1,
            'project': 2,
            'publish': 2,
            'purs': 1,
            'pursu': 3,
            'qualiti': 1,
            'rang': 1,
            'rate': 1,
            'readi': 1,
            'region': 1,
            'research': 4,
            'rwc': 2,
            'sale': 1,
            'sampl': 1,
            'sat': 2,
            'scale': 1,
            'school': 2,
            'school.work': 1,
            'scienc': 2,
            'scoop': 1,
            'score': 1,
            'script': 1,
            'second': 1,
            'secondari': 2,
            'set': 1,
            'skill': 2,
            'skills.oth': 1,
            'skillsbas': 1,
            'social': 2,
            'sponsor': 1,
            'statu': 1,
            'still': 1,
            'stori': 1,
            'straightforward': 1,
            'strong': 1,
            'student': 1,
            'studi': 3,
            'submiss': 1,
            'submit': 2,
            'supervis': 2,
            'task.academ': 1,
            'technolog': 5,
            'tel': 2,
            'ten': 1,
            'time': 4,
            'took': 1,
            'train': 3,
            'univers': 5,
            'upper': 1,
            'use': 1,
            'video': 1,
            'vitaeperson': 1,
            'web': 3,
            'websit': 1,
            'win': 1,
            'world': 1,
            'worth': 1,
            'write': 7,
            'writer': 2,
            'written': 2,
            'year': 2,
            'young': 1}),
  'M'),
 (FreqDist({'10': 1,
            'agenc': 1,
            'compani': 1,
            'design': 1,
            'develop': 1,
            'digit': 2,
            'experi': 1,
            'market': 1,
            'philippin': 1,
            'richard': 1,
            'run': 1,
            'small': 1,
            'web': 2,
            'year': 1}),
  'M'),
 (FreqDist({'applic': 1,
            'develop': 2,
            'experi': 1,
            'experienc': 1,
            'full': 2,
            'lifecycl': 1,
            'oper': 1,
            'stack': 1,
            'web': 2}),
  'M'),
 (FreqDist({'alway': 1,
            'best': 1,
            'client': 1,
            'develop': 2,
            'fl': 1,
            'give': 1,
            'learn': 1,
            'love': 1,
            'newest': 1,
            'php': 1,
            'produc': 1,
            'receiv': 1,
            'rubi': 1,
            'servic': 1,
            'show': 1,
            'tampa': 1,
            'techniqu': 1,
            'web': 1,
            'work': 1}),
  'M'),
 (FreqDist({'11:00': 1,
            '40': 1,
            'avail': 1,
            'easili': 1,
            'gmt': 1,
            'hour': 1,
            'mon': 1,
            'onlin': 1,
            'per': 1,
            'portfolio': 1,
            'promin': 1,
            'reach': 1,
            'sat': 1,
            'site': 1,
            'week': 1}),
  'M'),
 (FreqDist({'amazon': 1,
            'commerc': 1,
            'e': 1,
            'etc': 1,
            'expert.': 1,
            'financi': 1,
            'flipkart': 1,
            'freelanc': 1,
            'hardwar': 1,
            'like': 1,
            'onlin': 1,
            'product': 1,
            'profession': 1,
            'sell': 2,
            'servic': 1,
            'site': 1,
            'snapdeal': 1,
            'variou': 1}),
  'M'),
 (FreqDist({'30': 1,
            'armi': 2,
            'assur': 1,
            'attent': 1,
            'attitud': 1,
            'award': 1,
            'big': 1,
            'bring': 1,
            'dedic': 1,
            'detail': 1,
            'disciplin': 1,
            'ex': 1,
            'futur': 1,
            'hallmark': 1,
            'irrespect': 1,
            'job': 1,
            'offic': 1,
            'posit': 1,
            'provid': 1,
            'regret': 1,
            'servic': 2,
            'small': 1,
            'whether': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'alway': 1,
            'assur': 1,
            'home': 1,
            'job': 1,
            'like': 1,
            'prompt': 1,
            'qualiti': 1,
            'remain': 1}),
  'M'),
 (FreqDist({'2000/2005/2008': 1,
            '5': 1,
            'access': 1,
            'activ': 2,
            'ado/': 1,
            'angularj': 2,
            'citi': 1,
            'compon': 1,
            'crystal': 1,
            'data': 1,
            'databas': 1,
            'db': 1,
            'design': 1,
            'develop': 1,
            'dynam': 1,
            'entiti': 1,
            'excel': 1,
            'file': 1,
            'format': 1,
            'framework': 1,
            'ii': 1,
            'imag': 1,
            'javascript': 1,
            'js': 1,
            'kendo': 1,
            'lead': 1,
            'linq': 1,
            'microsoft': 2,
            'ms': 5,
            'mvc': 1,
            'nunit': 1,
            'odbc': 1,
            'offic': 3,
            'one': 1,
            'outlook': 1,
            'pars': 1,
            'pattern': 1,
            'program': 2,
            'report': 5,
            'server': 1,
            'servic': 1,
            'sql': 1,
            'summari': 1,
            'technic': 1,
            'technolog': 1,
            'tool': 1,
            'ui-': 1,
            'vba': 1,
            'viewer': 1,
            'wcf': 1}),
  'M'),
 (FreqDist({'7': 1,
            'around': 1,
            'data': 1,
            'develop': 1,
            'entri': 1,
            'experi': 1,
            'java': 1,
            'like': 1,
            'project': 1,
            'softwar': 1,
            'technolog': 1,
            'work': 1,
            'would': 1,
            'yr': 1}),
  'M'),
 (FreqDist({"''": 1,
            '``': 1,
            'achiev': 1,
            'adob': 1,
            'among': 1,
            'build': 1,
            'capabl': 1,
            'capac': 1,
            'carrier': 1,
            'commun': 1,
            'comput': 1,
            'coupl': 1,
            'design': 1,
            'domain': 1,
            'engin': 1,
            'excel': 1,
            'experience.i': 1,
            'faculti': 1,
            'field': 1,
            'file': 1,
            'form': 1,
            'graduat': 1,
            'help': 1,
            'knowledg': 1,
            'mani': 1,
            'person': 1,
            'profession': 1,
            'project': 1,
            'realiz': 1,
            'scienc': 1,
            'sinc': 1,
            'special': 1,
            'strong': 2,
            'team': 1,
            'univers': 1,
            'web': 1,
            'wish': 1,
            'work': 1,
            'year': 2}),
  'M'),
 (FreqDist({'3': 1,
            'ajax': 1,
            'also': 1,
            'area': 1,
            'bug': 1,
            'build': 1,
            'busi': 1,
            'compani': 1,
            'compet': 1,
            'complet': 1,
            'core': 1,
            'design': 1,
            'develop': 2,
            'end-end': 1,
            'experi': 1,
            'fix': 1,
            'follow': 1,
            'framework': 1,
            'ground': 1,
            'hmtl': 1,
            'includ': 1,
            'last': 1,
            'lie': 1,
            'manag': 1,
            'mvc': 1,
            'mysql': 1,
            'new': 1,
            'oop': 1,
            'opportun': 1,
            'php': 1,
            'project': 1,
            'rang': 1,
            'seek': 1,
            'site': 1,
            'softwar': 1,
            'sql': 1,
            'startup': 1,
            'test': 1,
            'use': 1,
            'websit': 3,
            'wide': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            'ali': 1,
            'appli': 1,
            'bangladesh': 1,
            'chemic': 1,
            'chemistri': 1,
            'engin': 1,
            'leav': 1,
            'name': 1,
            'rajshahi': 1,
            'student': 1,
            'univers': 1}),
  'M'),
 (FreqDist({'.net': 2,
            '1.6': 1,
            '15': 1,
            '2': 1,
            'agil': 1,
            'ajax': 1,
            'analyt': 1,
            'applic': 2,
            'architect': 1,
            'arm': 1,
            'avid': 1,
            'base': 3,
            'believ': 2,
            'busi': 2,
            'c': 1,
            'capabl': 1,
            'capac': 1,
            'client': 1,
            'coder': 1,
            'comfort': 1,
            'command': 1,
            'complet': 1,
            'convers': 1,
            'cycl': 1,
            'deliveri': 1,
            'develop': 4,
            'domain': 1,
            'driven': 1,
            'earlier': 1,
            'eclips': 1,
            'embed': 1,
            'english': 1,
            'entrepreneur': 1,
            'etc': 1,
            'etc..': 1,
            'experienc': 1,
            'expos': 1,
            'fast': 1,
            'feedback': 1,
            'focu': 1,
            'gui': 1,
            'hand': 1,
            'industri': 1,
            'input': 1,
            'iter': 1,
            'java': 3,
            'junit': 1,
            'launch': 1,
            'lead': 3,
            'learner': 1,
            'manufactur': 1,
            'market': 1,
            'mechan': 1,
            'meet': 1,
            'mortgag': 1,
            'open': 1,
            'particip': 1,
            'person': 1,
            'primarili': 1,
            'project': 6,
            'python': 1,
            'requir': 1,
            'sampl': 1,
            'schedul': 2,
            'server': 1,
            'short': 1,
            'skill': 1,
            'skype': 1,
            'softwar': 2,
            'sourc': 1,
            'specif': 1,
            'stakehold': 1,
            'strong': 2,
            'success': 1,
            'team': 3,
            'technolog': 1,
            'test': 1,
            'tool': 1,
            'translat': 1,
            'turnkey': 1,
            'understand': 1,
            'us': 1,
            'use': 1,
            'varieti': 1,
            'version': 1,
            'voip': 1,
            'web': 2,
            'wide': 1,
            'work': 1,
            'workflow': 1,
            'world': 1,
            'year': 1}),
  'M'),
 (FreqDist({'18': 1,
            'agenc': 1,
            'audienc': 1,
            'busi': 1,
            'compani': 1,
            'design': 2,
            'everyth': 1,
            'experi': 1,
            'extens': 1,
            'forward': 1,
            'govern': 1,
            'graphic': 2,
            'individu': 1,
            'kind': 1,
            'look': 1,
            'organ': 1,
            'product': 2,
            'provid': 1,
            'purpos': 1,
            'sens': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.experienc': 1,
            '2012': 1,
            '4': 1,
            'also': 1,
            'aspect': 1,
            'avaya': 1,
            'ccna': 2,
            'ccnp': 2,
            'collabor': 1,
            'comfort': 1,
            'complet': 1,
            'configur': 1,
            'consult': 1,
            'deep': 1,
            'design': 1,
            'ethernet': 1,
            'experi': 1,
            'hold': 1,
            'implement': 1,
            'instal': 1,
            'ip': 1,
            'junip': 1,
            'knowledg': 1,
            'level': 1,
            'mcse': 1,
            'network': 1,
            'optic': 1,
            'practic': 1,
            'r': 1,
            'secur': 1,
            'sopho': 1,
            'support': 1,
            'technic': 1,
            'telecommun': 1,
            'theoret': 1,
            'train': 2,
            'transmiss': 2,
            'voic': 1,
            'wireless': 1,
            'year': 1}),
  'M'),
 (FreqDist({"''": 1,
            "'ve": 1,
            '``': 1,
            'abl': 1,
            'absolut': 1,
            'account': 3,
            'also': 1,
            'award': 1,
            'collect': 1,
            'convinc': 2,
            'copyright': 1,
            'countri': 1,
            'discuss': 1,
            'easili': 1,
            'editor': 3,
            'english': 1,
            'enough': 1,
            'except': 1,
            'experi': 1,
            'experienc': 1,
            'fake': 1,
            'feedback': 1,
            'find': 2,
            'freelanc': 5,
            'freelancer.com': 1,
            'genuin': 1,
            'googl': 2,
            'inexperienc': 2,
            'inform': 1,
            'intellectu': 1,
            'investig': 1,
            'job': 1,
            'leav': 2,
            'lie': 1,
            'like': 1,
            'line': 1,
            'linguist': 1,
            'live': 1,
            'mani': 2,
            'martin': 1,
            'nativ': 1,
            'often': 1,
            'open': 1,
            'origin': 1,
            'peopl': 1,
            'place': 1,
            'pleas': 1,
            'posit': 1,
            'preserv': 1,
            'profession': 2,
            'profil': 2,
            'project': 2,
            'properti': 1,
            'qualif': 1,
            'rare': 1,
            'regard': 1,
            'requir': 1,
            'sell': 1,
            'side': 1,
            'site': 1,
            'skill': 1,
            'speak': 1,
            'steal': 1,
            'subcontract': 1,
            'translat': 1,
            'tri': 1,
            'unskil': 2,
            'use': 2,
            'user': 1,
            'websit': 1,
            'without': 2,
            'work': 1,
            'would': 2,
            'writer': 3,
            'year': 1}),
  'F'),
 (FreqDist({'background': 1,
            'c': 1,
            'communications*': 1,
            'development*': 1,
            'digit': 1,
            'engin': 1,
            'experi': 1,
            'firmwar': 1,
            'javascript': 1,
            'languag': 1,
            'machin': 1,
            'processing*': 1,
            'python*': 1,
            'senior': 1,
            'signal': 1,
            'strong': 1,
            'system': 1,
            'technolog': 1,
            'visual': 1,
            'web': 1}),
  'M'),
 (FreqDist({"''": 1,
            '\\xd0\\xb2': 2,
            '\\xd0\\xb8': 2,
            '\\xd1\\x81\\xd0\\xbe\\xd1\\u201e\\xd1\\u201a': 2,
            '``': 1,
            'basic': 1,
            'delphi': 1,
            'visual': 1}),
  'M'),
 (FreqDist({'advertis': 1,
            'alway': 1,
            'artist': 1,
            'come': 1,
            'dental': 1,
            'draw': 2,
            'face': 1,
            'find': 1,
            'idea': 2,
            'like': 1,
            'moonlight': 1,
            'observ': 1,
            'process': 1,
            'stimul': 1,
            'surgeon': 1,
            'white': 1,
            'write': 1}),
  'F'),
 (FreqDist({'applic': 2,
            'architectur': 1,
            'automat': 1,
            'best': 1,
            'bot': 1,
            'client/serv': 1,
            'crawl': 1,
            'creat': 1,
            'css': 1,
            'custom': 1,
            'data': 1,
            'deliv': 1,
            'delphi': 1,
            'develop': 1,
            'effici': 1,
            'estat': 1,
            'experi': 3,
            'extract': 1,
            'fast': 1,
            'freelanc': 1,
            'hr': 1,
            'industri': 1,
            'javascript': 1,
            'latest': 1,
            'multi-thread': 1,
            'mysql': 1,
            'nativ': 1,
            'php': 1,
            'post': 1,
            'program': 2,
            'provid': 1,
            'qualiti': 1,
            'scratch': 1,
            'seo': 1,
            'server': 1,
            'servic': 1,
            'small': 1,
            'soap': 1,
            'softwar': 2,
            'team': 1,
            'technolog': 1,
            'templat': 1,
            'train': 1,
            'use': 2,
            'valid': 1,
            'vision': 1,
            'w3c': 1,
            'web': 2,
            'websit': 2,
            'win32': 2,
            'work': 2,
            'xhtml': 1}),
  'M'),
 (FreqDist({'9': 1,
            'account': 1,
            'advertis': 4,
            'agenc': 1,
            'begin': 1,
            'believ': 1,
            'brows': 1,
            'busi': 1,
            'compani': 1,
            'comprehens': 1,
            'concept': 1,
            'creat': 1,
            'creativ': 3,
            'current': 1,
            'day-to-day': 1,
            'design': 1,
            'digit': 1,
            'engag': 1,
            'entertain': 1,
            'exist': 1,
            'expand': 1,
            'experi': 1,
            'field': 1,
            'good': 1,
            'hands-on': 1,
            'includ': 1,
            'insur': 1,
            'intern': 1,
            'kind': 1,
            'look': 1,
            'lot': 1,
            'mainstream': 1,
            'mani': 1,
            'medic': 1,
            'memor': 1,
            'more.if': 1,
            'nation': 1,
            'need': 1,
            'new': 1,
            'pitch': 2,
            'possess': 1,
            'relev': 1,
            'sampl': 1,
            'sell': 1,
            'servic': 1,
            'set': 1,
            'sever': 1,
            'simpli': 1,
            'skill': 1,
            'start': 1,
            'stuff': 1,
            'success': 1,
            'that\\xe2\\u20ac\\u2122': 1,
            'understand': 1,
            'upon': 1,
            'win': 1,
            'work': 1,
            'year': 1,
            'you\\xe2\\u20ac\\u2122r': 1}),
  'M'),
 (FreqDist({'access': 1,
            'arab': 1,
            'busi': 1,
            'corel': 1,
            'cut': 1,
            'databas': 1,
            'draw': 1,
            'etc': 1,
            'excel': 1,
            'experi': 1,
            'laser': 1,
            'line': 1,
            'profici': 1,
            'run': 1,
            'type': 1,
            'urdu': 1,
            'work': 1}),
  'M'),
 (FreqDist({'.net': 4,
            '/2008': 1,
            '2000': 1,
            '2003': 1,
            '4.0': 1,
            '5': 1,
            'abstract': 2,
            'ajax': 1,
            'analysi': 2,
            'appli': 1,
            'applic': 1,
            'applications.\\xe2\\u20ac\\xa2\\tveri': 1,
            'asp.net': 2,
            'c': 1,
            'client-serv': 1,
            'command': 1,
            'concept': 1,
            'control': 2,
            'creat': 1,
            'custom': 1,
            'cycl': 2,
            'design': 4,
            'develop': 6,
            'dhtml': 1,
            'experi': 2,
            'exposur': 1,
            'factori': 1,
            'form': 2,
            'framework': 1,
            'full': 1,
            'good': 2,
            'html': 2,
            'implement': 1,
            'input': 1,
            'java': 1,
            'knowledg': 1,
            'life': 2,
            'like': 4,
            'mvc': 1,
            'object': 1,
            'ooad': 1,
            'oracl': 1,
            'orient': 1,
            'pattern': 2,
            'phase': 1,
            'requir': 1,
            'script': 1,
            'server': 1,
            'servic': 1,
            'singleton': 1,
            'skin': 1,
            'softwar': 1,
            'sql': 1,
            'studio': 1,
            'technolog': 1,
            'test': 1,
            'theme': 1,
            'unit': 1,
            'use': 2,
            'user': 2,
            'valid': 2,
            'vb.net': 1,
            'visual': 1,
            'web': 2,
            'web-bas': 1,
            'win': 1,
            'work': 1,
            'wpf': 1,
            'xml': 1,
            'xpath': 1,
            'xslt': 1,
            'year': 1}),
  'M'),
 (FreqDist({'work': 1}), 'M'),
 (FreqDist({'angularj': 1,
            'cake': 1,
            'codeign': 1,
            'css': 1,
            'databas': 1,
            'design': 1,
            'develop': 1,
            'differ': 1,
            'end': 1,
            'experi': 1,
            'extj': 1,
            'framework': 1,
            'front': 1,
            'good': 1,
            'java': 2,
            'jqueri': 1,
            'jsp': 1,
            'laravel': 1,
            'last': 1,
            'librari': 1,
            'like': 2,
            'oracl': 1,
            'php': 2,
            'platform': 1,
            'script': 1,
            'seven': 1,
            'softwar': 1,
            'use': 1,
            'work': 1,
            'year': 1,
            'zend': 1}),
  'M'),
 (FreqDist({'android': 1,
            'angularj': 1,
            'backbon': 1,
            'develop': 1,
            'expertis': 1,
            'framework': 1,
            'java': 1,
            'javascript': 1,
            'php': 1,
            'ui': 1}),
  'M'),
 (FreqDist({"'m": 1,
            "'ve": 1,
            '3': 1,
            'accord': 1,
            'also': 1,
            'and/or': 1,
            'avid': 1,
            'color': 1,
            'edit': 1,
            'effici': 1,
            'equip': 1,
            'fast': 1,
            'give': 1,
            'grade': 1,
            'industri': 1,
            'long': 1,
            'look': 1,
            'need': 2,
            'peopl': 1,
            'premier': 1,
            'pro': 1,
            'project': 2,
            'time': 1,
            'use': 1,
            'video': 1,
            'work': 3,
            'year': 1}),
  'M'),
 (FreqDist({'4': 1,
            '6': 1,
            'blog': 1,
            'blogger': 1,
            'build': 1,
            'cant': 1,
            'choic': 1,
            'credibl': 1,
            'freelanc': 1,
            'help': 1,
            'industri': 1,
            'last': 2,
            'mani': 1,
            'one': 1,
            'profession': 1,
            'say': 1,
            'seo': 1,
            'start': 1,
            'ultim': 1,
            'well': 1,
            'work': 1,
            'write': 1,
            'year': 2}),
  'M'),
 (FreqDist({'3d': 1,
            '8+': 1,
            'access': 1,
            'allow': 1,
            'applic': 1,
            'arcgi': 1,
            'asp.net': 1,
            'back': 1,
            'base': 1,
            'central': 1,
            'cluster': 1,
            'css': 1,
            'data': 1,
            'databas': 1,
            'degre': 1,
            'deploy': 1,
            'develop': 2,
            'effici': 1,
            'engin': 3,
            'environ': 1,
            'excel': 2,
            'experi': 1,
            'field': 1,
            'geoserv': 2,
            'gi': 3,
            'globe': 1,
            'gp': 1,
            'horizont': 1,
            'html5': 1,
            'involv': 1,
            'javascript': 1,
            'languag': 1,
            'leaflet': 1,
            'manag': 2,
            'ms': 1,
            'mysql': 1,
            'navig': 1,
            'offic': 1,
            'open': 1,
            'openlay': 1,
            'php': 1,
            'powerpoint': 1,
            'project': 3,
            'sector': 2,
            'servic': 1,
            'sever': 1,
            'skill': 1,
            'softwar': 1,
            'sourc': 1,
            'spatial': 1,
            'use': 1,
            'vector': 1,
            'vertic': 1,
            'web': 1,
            'wf': 1,
            'wm': 1,
            'word': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"''": 1,
            '6+': 1,
            '``': 1,
            'also': 2,
            'angularjs*': 1,
            'bootstrap': 1,
            'client': 1,
            'compani': 1,
            'creat': 2,
            'develop': 4,
            'development*': 1,
            'editor': 1,
            'email': 1,
            'enhancement*': 1,
            'ensur': 1,
            'enterpris': 1,
            'etc.skil': 1,
            'experi': 1,
            'expert': 2,
            'extens': 2,
            'feel': 1,
            'free': 1,
            'full': 1,
            'gold': 1,
            'great': 1,
            'hire': 1,
            'html5': 1,
            'hubspot': 2,
            'javascript': 1,
            'jqueri': 1,
            'laravel': 1,
            'larg': 1,
            'like': 3,
            'magento': 1,
            'mainten': 1,
            'manag': 1,
            'mani': 1,
            'modif': 1,
            'partner': 1,
            'plugin': 3,
            'project': 2,
            'provid': 2,
            'qualiti': 1,
            'rang': 1,
            'servic': 1,
            'sm': 1,
            'small': 1,
            'startup': 1,
            'support*': 1,
            'web': 1,
            'websit': 1,
            'wordpress': 2,
            'work': 2,
            'world': 1,
            'year': 1}),
  'M'),
 (FreqDist({'5': 1,
            'exp': 1,
            'manag': 1,
            'market': 2,
            'onlin': 2,
            'project': 1,
            'qualiti': 1,
            'sem': 2,
            'seo': 2,
            'smm': 1,
            'smo': 1,
            'team': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'1997': 1,
            '1st': 1,
            '24': 1,
            '25': 2,
            '4': 1,
            '5.3': 1,
            'a2bil': 2,
            'access': 1,
            'ad': 1,
            'admin': 1,
            'age': 1,
            'allow': 2,
            'apach': 1,
            'applic': 1,
            'area': 1,
            'around': 2,
            'asterisk': 1,
            'bbb': 1,
            'begin': 1,
            'better': 1,
            'bulk': 1,
            'bureau': 1,
            'busi': 3,
            'call': 4,
            'card': 2,
            'cent': 2,
            'cento': 1,
            'charg': 1,
            'client': 2,
            'code': 1,
            'comcard': 4,
            'compani': 5,
            'compet': 1,
            'complain': 1,
            'complaint': 1,
            'complet': 1,
            'contact': 1,
            'convers': 1,
            'custom': 1,
            'data': 2,
            'delet': 1,
            'detail': 1,
            'develop': 1,
            'entri': 1,
            'expand': 1,
            'find': 1,
            'flat': 1,
            'forc': 1,
            'form': 1,
            'freepbx': 1,
            'give': 1,
            'good': 2,
            'happi': 1,
            'howev': 1,
            'hundr': 1,
            'indiana': 2,
            'integr': 1,
            'intern': 1,
            'issu': 1,
            'januari': 1,
            'kentucki': 1,
            'line': 1,
            'littl': 1,
            'llc': 1,
            'local': 6,
            'look': 1,
            'loos': 1,
            'louisvil': 1,
            'mail': 1,
            'meet': 1,
            'member': 1,
            'microsoft': 1,
            'month': 1,
            'mysql': 1,
            'need': 1,
            'numer': 1,
            'offer': 2,
            'one': 1,
            'openvz': 1,
            'opportun': 1,
            'pend': 1,
            'per': 1,
            'permiss': 1,
            'phone': 3,
            'php-': 1,
            'platform': 1,
            'primari': 2,
            'proud': 1,
            'provid': 1,
            'qmail': 1,
            'rate': 1,
            'regist': 1,
            'regular': 1,
            'reliabl': 1,
            'renam': 1,
            'report': 1,
            'request': 1,
            'retail': 1,
            'rout': 1,
            'seamlessli': 1,
            'seen': 1,
            'sent': 1,
            'shop': 1,
            'short': 1,
            'shut': 2,
            'softwar': 1,
            'solut': 1,
            'start': 1,
            'state': 3,
            'su': 1,
            'switch': 1,
            'telephoni': 1,
            'termin': 2,
            'time': 3,
            'updat': 1,
            'use': 2,
            'voip': 2,
            'webmin': 1,
            'wholesal': 1,
            'within': 1,
            'word': 1,
            'work': 2,
            'zero': 1,
            'zip': 1}),
  'M'),
 (FreqDist({'cloud': 1,
            'compani': 1,
            'develop': 2,
            'django': 1,
            'familiar': 1,
            'openstack': 1,
            'platform': 1,
            'python': 1,
            'tornado': 1,
            'work': 1}),
  'M'),
 (FreqDist({'abil': 1,
            'automot': 1,
            'bachelor': 1,
            'compani': 1,
            'freelanc': 1,
            'home': 1,
            'job': 1,
            'look': 1,
            'managementwork': 1,
            'market': 1,
            'minimum': 1,
            'right': 1,
            'skill': 1,
            'suit': 1,
            'supervis': 1,
            'work': 1}),
  'F'),
 (FreqDist({'bangalor': 1,
            'engin': 1,
            'softwar': 1,
            'technolog': 1,
            'woke': 1}),
  'M'),
 (FreqDist({'7': 1,
            'academ': 1,
            'advanc': 1,
            'background': 1,
            'brazil': 1,
            'corpor': 1,
            'depart': 1,
            'develop': 2,
            'experi': 1,
            'gi': 1,
            'govern': 1,
            'inform': 1,
            'internet': 2,
            'profession': 1,
            'system': 2,
            'technolog': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'...': 3,
            '2006': 1,
            'also': 1,
            'back': 1,
            'bought': 1,
            'came': 1,
            'cheap': 1,
            'chief': 1,
            'compani': 1,
            'day': 1,
            'design': 2,
            'etc': 1,
            'everybodi': 1,
            'execut': 1,
            'go': 1,
            'googl': 1,
            'group': 1,
            'import': 2,
            'later': 1,
            'like': 1,
            'major': 1,
            'moscow': 1,
            'russian': 1,
            'senior': 2,
            'site': 1,
            'skill': 1,
            'split': 1,
            'studio': 1,
            'team': 1,
            'url': 1,
            'work': 2}),
  'M'),
 (FreqDist({"'s": 2,
            '.our': 1,
            '10': 1,
            '11': 1,
            '12': 1,
            '2': 1,
            '3': 1,
            '4': 1,
            '5': 2,
            '6': 1,
            '7': 1,
            '8': 1,
            '9': 1,
            'abstract': 1,
            'access': 1,
            'accomplish': 1,
            'account': 1,
            'achiev': 3,
            'activ': 1,
            'afford': 1,
            'aim': 2,
            'also': 1,
            'approach': 2,
            'attitud': 1,
            'balancing-': 1,
            'banner-': 1,
            'batter': 3,
            'believ': 1,
            'best': 2,
            'blog': 1,
            'bottom': 1,
            'brain': 1,
            'built': 1,
            'busi': 4,
            'card': 2,
            'cards-': 1,
            'challeng': 1,
            'chang': 1,
            'choic': 1,
            'client': 3,
            'collabor': 2,
            'collect': 2,
            'color': 1,
            'combin': 1,
            'commit': 2,
            'commun': 2,
            'compani': 3,
            'concept': 1,
            'consist': 1,
            'constantli': 1,
            'consult': 4,
            'consum': 1,
            'contact': 1,
            'control': 2,
            'convert': 1,
            'cost': 2,
            'creat': 1,
            'creation': 1,
            'current': 1,
            'custom': 4,
            'cut': 1,
            'daili': 1,
            'data': 2,
            'deal': 1,
            'defin': 1,
            'deliveri': 1,
            'depend': 1,
            'design': 3,
            'design-': 2,
            'develop': 2,
            'differ': 1,
            'directori': 1,
            'dn': 1,
            'domain': 6,
            'done': 1,
            'dvr': 2,
            'dynam': 2,
            'economi': 1,
            'edit': 1,
            'editing/proofread': 1,
            'effect': 1,
            'effici': 1,
            'email': 3,
            'enabl': 1,
            'ensur': 2,
            'entri': 1,
            'environ': 1,
            'even': 1,
            'everi': 1,
            'excel-': 1,
            'expertis': 1,
            'express': 1,
            'file': 1,
            'find': 1,
            'fit': 1,
            'ftp': 1,
            'fundament': 1,
            'futur': 1,
            'gener': 1,
            'get': 2,
            'give': 1,
            'global': 2,
            'gmail': 1,
            'goal': 3,
            'growth': 1,
            'help': 2,
            'high': 2,
            'highest': 1,
            'highli': 1,
            'icon': 1,
            'idea': 1,
            'imag': 1,
            'individu': 1,
            'inform': 1,
            'initi': 1,
            'innov': 2,
            'instal': 3,
            'intern': 1,
            'job': 1,
            'kind': 1,
            'king': 1,
            'knowledg': 1,
            'last': 1,
            'leader': 1,
            'leadership': 3,
            'level': 3,
            'limit': 1,
            'line': 1,
            'link': 1,
            'list': 1,
            'listen': 1,
            'local': 1,
            'logo': 1,
            'low': 1,
            'mail': 1,
            'make': 3,
            'making-': 1,
            'manag': 2,
            'mani': 1,
            'market': 4,
            'matter': 1,
            'me.i': 1,
            'media': 1,
            'meet': 1,
            'menu': 1,
            'min': 1,
            'mind': 1,
            'modern': 1,
            'money': 1,
            'monitor': 4,
            'must': 1,
            'network': 1,
            'never': 1,
            'offlin': 1,
            'option': 1,
            'organ': 3,
            'outstand': 1,
            'paypal': 2,
            'peopl': 1,
            'platon': 1,
            'polici': 2,
            'pr': 1,
            'practic': 2,
            'premis': 1,
            'price': 1,
            'prime': 1,
            'principl': 1,
            'process': 2,
            'processing-': 1,
            'produc': 2,
            'product': 2,
            'profil': 1,
            'project': 2,
            'promot': 1,
            'provid': 7,
            'purchas': 3,
            'qm': 1,
            'qualiti': 3,
            'remot': 1,
            'requir': 2,
            'research-': 1,
            'result': 1,
            'results-driven': 1,
            'retouch': 1,
            'right': 2,
            'run': 1,
            'sale': 1,
            'sampl': 1,
            'satisfact': 2,
            'schedul': 1,
            'search-': 1,
            'secur': 2,
            'see': 1,
            'self': 1,
            'servic': 8,
            'shortag': 1,
            'show': 1,
            'signific': 1,
            'sinc': 1,
            'skill': 1,
            'sky': 1,
            'sm': 1,
            'smaller': 2,
            'social': 1,
            'softwar': 1,
            'solut': 3,
            'special': 1,
            'specif': 2,
            'startup': 1,
            'strateg': 2,
            'strategi': 2,
            'strive': 1,
            'sub': 1,
            'surveil': 1,
            'system': 2,
            'talent': 1,
            'task': 2,
            'te': 1,
            'team': 2,
            'teamwork': 2,
            'technic': 1,
            'technolog': 1,
            'templat': 1,
            'think': 3,
            'though': 1,
            'thought': 1,
            'time': 1,
            'tip': 1,
            'today': 1,
            'togeth': 1,
            'tool': 1,
            'transfer': 1,
            'tutori': 1,
            'uniqu': 1,
            'updat': 1,
            'upload': 1,
            'us': 2,
            'use': 1,
            'verif': 1,
            'versatil': 1,
            'video': 3,
            'vision': 3,
            'way': 1,
            'web': 4,
            'websit': 1,
            'work': 6,
            'world-class': 1,
            'would': 1}),
  'M'),
 (FreqDist({'.i': 1,
            '5': 1,
            'check': 1,
            'compani': 1,
            'css': 1,
            'employ': 1,
            'experi': 1,
            'finish': 1,
            'freelanc': 1,
            'html': 1,
            'interest': 1,
            'javascript': 1,
            'like': 1,
            'master': 1,
            'me.you': 1,
            'mysql': 1,
            'person': 1,
            'php': 1,
            'portfolio': 1,
            'satisfi': 1,
            'sure': 1,
            'technic': 1,
            'univers': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'2': 1,
            'also': 4,
            'applic': 1,
            'articl': 1,
            'blog': 1,
            'comput': 1,
            'data': 1,
            'databas': 2,
            'degre': 1,
            'develop': 1,
            'diploma': 1,
            'econom': 2,
            'effici': 1,
            'enter': 1,
            'financ': 1,
            'given': 1,
            'graduat': 1,
            'internet': 1,
            'larg': 1,
            'maintain': 3,
            'manag': 1,
            'perform': 1,
            'post': 1,
            'product': 1,
            'program': 1,
            'research': 1,
            'review': 1,
            'static': 1,
            'topic': 1,
            'websit': 1,
            'write': 1,
            'year': 1}),
  'F'),
 (FreqDist({'abl': 1,
            'academi': 1,
            'advertis': 1,
            'also': 2,
            'analyt': 1,
            'art': 3,
            'assign': 1,
            'book': 1,
            'broaden': 1,
            'build': 1,
            'busi': 1,
            'cartoon': 1,
            'charact': 1,
            'comic': 1,
            'commun': 1,
            'concept': 1,
            'creativ': 1,
            'degre': 1,
            'design': 1,
            'editori': 1,
            'effect': 1,
            'endeavor': 1,
            'exhibit': 1,
            'final': 1,
            'futur': 1,
            'good': 1,
            'graduat': 2,
            'graphic': 1,
            'houston': 1,
            'illustr': 2,
            'initi': 1,
            'institut': 1,
            'level': 1,
            'logo': 1,
            'mauric': 1,
            'network': 1,
            'object': 1,
            'press': 1,
            'problem': 1,
            'provid': 1,
            'relat': 1,
            'show': 1,
            'skill': 1,
            'solid': 1,
            'solv': 1,
            'special': 1,
            'stellar': 1,
            'studi': 1,
            'system': 1,
            't-shirt': 1,
            'texa': 1,
            'trade': 1,
            'univers': 2,
            'use': 1,
            'view': 1}),
  'M'),
 (FreqDist({'5': 1,
            'abl': 1,
            'across': 1,
            'analysi': 1,
            'analyst': 1,
            'bank': 1,
            'big': 1,
            'busi': 4,
            'challeng': 1,
            'current': 1,
            'deliv': 1,
            'design': 1,
            'develop': 1,
            'domain': 2,
            'environ': 1,
            'function': 1,
            'intern': 1,
            'job': 1,
            'last': 1,
            'major': 1,
            'manag': 1,
            'project': 1,
            'role': 3,
            'sem': 1,
            'skill': 1,
            'strategi': 2,
            'variou': 1,
            'web': 1,
            'work': 6,
            'year': 1}),
  'M'),
 (FreqDist({'.net': 1,
            '3+': 1,
            '7': 1,
            'apex': 1,
            'c': 1,
            'combin': 1,
            'experi': 1,
            'experienc': 1,
            'head': 1,
            'highli': 1,
            'includ': 1,
            'javascript': 1,
            'jqueri': 1,
            'mysql': 1,
            'oracl': 2,
            'per': 1,
            'perl': 1,
            'php': 1,
            'pl/sql': 1,
            'programm': 1,
            'set': 1,
            'skill': 2,
            'team': 1,
            'unix': 1,
            'year': 2}),
  'F'),
 (FreqDist({'advisor': 1,
            'app': 1,
            'design': 1,
            'edit': 1,
            'insur': 1,
            'keep': 1,
            'like': 1,
            'make': 1,
            'market': 1,
            'movi': 1,
            'project': 1,
            'softwar': 1,
            'web': 1}),
  'M'),
 (FreqDist({"''": 1,
            "'m": 2,
            "'ve": 4,
            '``': 1,
            'account': 3,
            'acquir': 1,
            'alway': 3,
            'anoth': 1,
            'answer': 1,
            'ask': 1,
            'assign': 1,
            'buyer': 2,
            'capabl': 1,
            'cours': 1,
            'creation': 1,
            'data': 2,
            'differ': 1,
            'effort': 1,
            'email': 1,
            'entri': 1,
            'etc': 1,
            'execut': 1,
            'experi': 2,
            'familiar': 1,
            'far': 1,
            'field': 1,
            'flexibl': 1,
            'freelanc': 1,
            'give': 1,
            'go': 1,
            'hand': 1,
            'includ': 1,
            'indic': 1,
            'learn': 2,
            'like': 1,
            'long': 1,
            'love': 1,
            'make': 1,
            'mani': 1,
            'much': 1,
            "n't": 1,
            'narrat': 1,
            'network': 1,
            'object': 1,
            'often': 1,
            'one': 1,
            'onlin': 1,
            'previou': 1,
            'primari': 1,
            'probabl': 1,
            'profession': 1,
            'proof': 1,
            'relat': 1,
            'relationship': 1,
            'respons': 1,
            'role': 1,
            'similar': 1,
            'skill': 2,
            'social': 1,
            'task': 1,
            'thing': 2,
            'thu': 1,
            'titl': 1,
            'wit': 1,
            'wo': 1,
            'work': 3,
            'would': 1}),
  'M'),
 (FreqDist({'7': 1,
            'achiev': 1,
            'adob': 1,
            'ajax': 1,
            'android': 3,
            'angular': 1,
            'apach': 1,
            'applic': 3,
            'back-end': 1,
            'best': 1,
            'bootstrap': 1,
            'build': 1,
            'businesses.mi': 1,
            'client': 1,
            'core': 1,
            'creativ': 1,
            'css3': 1,
            'design': 2,
            'develop': 2,
            'eclips': 1,
            'experi': 1,
            'expertis': 1,
            'extens': 1,
            'forward': 1,
            'front-end': 1,
            'glassfish': 1,
            'ground': 1,
            'hi': 1,
            'html5': 1,
            'io': 2,
            'java': 2,
            'javascript': 1,
            'jqueri': 1,
            'js': 1,
            'jsp': 1,
            'knowledg': 1,
            'look': 1,
            'mobil': 3,
            'mysql': 1,
            'netbean': 1,
            'onpag': 1,
            'opportun': 1,
            'oracl': 1,
            'output': 1,
            'php': 2,
            'possibl': 1,
            'seek': 1,
            'seo': 1,
            'skill': 2,
            'spring': 2,
            'sql': 1,
            'sqlite': 1,
            'strut': 1,
            'studio': 1,
            'suit': 1,
            'suite.i': 1,
            'swift': 2,
            'technic': 1,
            'tomcat': 1,
            'tool': 1,
            'uml': 1,
            'use': 1,
            'web': 3,
            'wordpress': 2,
            'xcode': 1,
            'xml': 1,
            'year': 1}),
  'M'),
 (FreqDist({'13': 1,
            'administr': 1,
            'data': 1,
            'develop': 1,
            'entri': 1,
            'etc': 1,
            'experi': 1,
            'firm': 1,
            'larg': 1,
            'offic': 1,
            'philippin': 1,
            'skill': 1,
            'work': 1,
            'year': 1}),
  'F'),
 (FreqDist({'artist': 1, 'design': 1, 'musician': 1, 'web': 1, 'writer': 1}),
  'M'),
 (FreqDist({'edit': 1, 'experi': 1, 'ihav': 1, 'network': 1, 'photo': 1}),
  'M'),
 (FreqDist({'6': 1,
            'angularj': 1,
            'asp': 1,
            'c': 1,
            'experi': 1,
            'languag': 1,
            'like': 1,
            'mssql': 1,
            'mvc': 1,
            'mysql': 1,
            'nodej': 1,
            'php': 1,
            'postgresql': 1,
            'program': 1,
            'variou': 1,
            'year': 1}),
  'M'),
 (FreqDist({'...': 3,
            'complet': 1,
            'hi': 1,
            'im': 1,
            'project': 1,
            'u': 1,
            'ur': 1}),
  'M'),
 (FreqDist({'15': 1,
            '6': 1,
            'advertis': 1,
            'appli': 1,
            'aspect': 1,
            'colleg': 1,
            'content': 1,
            'copywrit': 1,
            'cover': 1,
            'day': 2,
            'develop': 1,
            'digit': 1,
            'embrac': 1,
            'experi': 1,
            'extens': 1,
            'graduat': 1,
            'includ': 2,
            'industri': 1,
            'internet': 1,
            'knowledg': 1,
            'last': 1,
            'lifestyl': 1,
            'london': 1,
            'market': 2,
            'print': 1,
            'publish': 2,
            'run': 1,
            'scratch': 1,
            'seo': 2,
            'solut': 2,
            'specialis': 1,
            'spent': 1,
            'trade': 1,
            'travel': 2,
            'web': 1,
            'websit': 2,
            'well': 1,
            'world': 1,
            'year': 2}),
  'F'),
 (FreqDist({"'m": 1,
            "'ve": 2,
            'abl': 1,
            'addit': 1,
            'advertis': 2,
            'also': 2,
            'career': 1,
            'challeng': 1,
            'client': 2,
            'creativ': 1,
            'english': 1,
            'english-spanish': 1,
            'fast': 1,
            'fun': 1,
            'mainli': 1,
            'mani': 1,
            'market': 1,
            'mexico': 1,
            'pressur': 1,
            'realli': 1,
            'relax': 1,
            'spanish': 1,
            'thank': 1,
            'translat': 1,
            'u.s.': 1,
            'work': 3,
            'world': 1,
            'write': 2}),
  'M'),
 (FreqDist({'11': 1,
            '2': 1,
            '35.': 1,
            '6': 2,
            '8': 1,
            'ad': 1,
            'also': 1,
            'analysi': 1,
            'app': 1,
            'aspect': 1,
            'believ': 1,
            'bid': 2,
            'ci': 1,
            'cm': 1,
            'complet': 1,
            'complex': 1,
            'confid': 1,
            'cover': 1,
            'develop': 2,
            'differ': 1,
            'drupal': 1,
            'estat': 1,
            'experi': 1,
            'expertis': 1,
            'high': 1,
            'i.e': 1,
            'increas': 1,
            'joomla': 1,
            'kind': 1,
            'laravel': 3,
            'last': 2,
            'like': 1,
            'magento': 2,
            'main': 1,
            'mani': 1,
            'mobil': 2,
            'motto': 1,
            'mysql': 1,
            "n't": 1,
            'nativ': 1,
            'network': 1,
            'php': 1,
            'platform': 1,
            'project': 5,
            'rate': 1,
            'real': 1,
            'requir': 1,
            'seo': 1,
            'size': 1,
            'social': 1,
            'team': 2,
            'technolog': 1,
            'websit': 3,
            'well': 1,
            'wordpress': 1,
            'work': 2,
            'year': 4}),
  'M'),
 (FreqDist({'8': 1,
            'applic': 1,
            'area': 1,
            'desktop': 1,
            'development.w': 1,
            'experi': 1,
            'inc': 1,
            'mobil': 1,
            'pioneer': 1,
            'web': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'consult': 1, 'list': 1, 'offici': 1, 'wordpress': 1}), 'M'),
 (FreqDist({'100': 1,
            '20': 1,
            'analys': 1,
            'analysis.i': 1,
            'articl': 3,
            'believ': 1,
            'comment': 1,
            'five': 1,
            'gener': 1,
            'good': 1,
            'govern': 1,
            'imag': 2,
            'includ': 1,
            'interest': 1,
            'like': 2,
            'make': 1,
            "n't": 1,
            'natur': 1,
            'need': 1,
            'organ': 1,
            'passion': 1,
            'possess': 1,
            'profession': 2,
            'provid': 1,
            'qualifi': 1,
            'qualiti': 1,
            'quantiti': 1,
            'rather': 1,
            'report': 1,
            'review': 1,
            'satellit': 1,
            'sens': 1,
            'skill': 1,
            'softwar': 1,
            'topic': 1,
            'work': 2,
            'would': 1,
            'write': 5,
            'written': 1,
            'year': 1}),
  'F'),
 (FreqDist({'6': 1,
            'access': 1,
            'administr': 2,
            'ajax': 1,
            'also': 3,
            'area': 1,
            'asterisk': 1,
            'auto': 1,
            'basic': 1,
            'boonex': 1,
            'build': 1,
            'busi': 1,
            'call': 6,
            'cart': 5,
            'center': 3,
            'cento': 1,
            'clipshar': 1,
            'cm': 2,
            'compani': 1,
            'compet': 1,
            'complet': 1,
            'configur': 1,
            'core': 1,
            'cpanel': 1,
            'crm': 2,
            'css': 2,
            'design': 2,
            'develop': 3,
            'dial': 1,
            'dialer': 3,
            'dolphin': 1,
            'domain': 1,
            'e-commerc': 1,
            'ecommerc': 2,
            'elastix': 2,
            'end-end': 1,
            'engin': 2,
            'etc': 3,
            'experi': 2,
            'ffmpeg': 1,
            'flash': 1,
            'follow': 1,
            'gateway': 1,
            'ground': 1,
            'host': 1,
            'hour': 1,
            'html': 1,
            'implement': 1,
            'inbound': 1,
            'includ': 2,
            'instal': 1,
            'integr': 1,
            'interspir': 1,
            'issu': 1,
            'java': 2,
            'javascript': 1,
            'joomla': 2,
            'jsp': 1,
            'kind': 2,
            'last': 1,
            'lie': 1,
            'linux': 2,
            'list': 1,
            'lot': 1,
            'magento': 2,
            'maintain': 3,
            'make': 2,
            'mambo': 1,
            'manag': 3,
            'market': 1,
            'media': 2,
            'migrat': 2,
            'minut': 1,
            'multimedia': 1,
            'mysql': 2,
            'name': 1,
            'network': 3,
            'new': 1,
            'offic': 1,
            'oop': 1,
            'open': 1,
            'opencart': 1,
            'opportun': 1,
            'optim': 1,
            'oscommerc': 2,
            'outbound': 1,
            'payment': 1,
            'per': 1,
            'php': 2,
            'phpbb': 1,
            'phpfox': 1,
            'plan': 1,
            'plesk': 1,
            'portal': 1,
            'predict': 2,
            'prestashop': 1,
            'problem': 1,
            'program': 1,
            'project': 1,
            'rang': 2,
            'red5': 1,
            'relat': 1,
            'script': 3,
            'search': 1,
            'second': 1,
            'seek': 1,
            'server': 10,
            'setup': 3,
            'share': 1,
            'shop': 2,
            'site': 1,
            'small': 1,
            'social': 2,
            'softwar': 2,
            'special': 1,
            'speed': 1,
            'sql': 1,
            'start': 1,
            'support': 1,
            'system': 1,
            'technic': 1,
            'test': 1,
            'tomcat': 1,
            'transfer': 1,
            'troubleshoot': 3,
            'upload': 1,
            'use': 1,
            'vbulletin': 1,
            'video': 1,
            'visual': 1,
            'voip': 1,
            'web': 1,
            'websit': 6,
            'whmc': 1,
            'wide': 2,
            'wordpress': 2,
            'year': 1,
            'zen': 2}),
  'M'),
 (FreqDist({'complet': 1,
            'design': 2,
            'done': 1,
            'experi': 1,
            'govern': 1,
            'graphic': 2,
            'india': 1,
            'mani': 1,
            'project': 2,
            'recent': 1,
            'web': 2}),
  'F'),
 (FreqDist({'25': 1,
            'affair': 1,
            'current': 1,
            'entertain': 1,
            'experienc': 1,
            'fleet': 1,
            'journal': 1,
            'much': 1,
            'news': 1,
            'polit': 1,
            'report': 2,
            'specialis': 1,
            'sport': 1,
            'street': 1,
            'write': 1,
            'year': 1}),
  'M'),
 (FreqDist({'admin': 1,
            'background': 1,
            'broadcast': 1,
            'collect': 1,
            'commun': 1,
            'compani': 1,
            'convers': 1,
            'crop': 1,
            'data': 3,
            'document': 1,
            'edit': 1,
            'enjoy': 1,
            'entri': 1,
            'excel': 1,
            'freelanc': 1,
            'full-tim': 1,
            'gmail': 1,
            'im': 1,
            'info': 1,
            'internet': 1,
            'job': 1,
            'known': 1,
            'limit': 1,
            'msn': 1,
            'organ': 1,
            'part-tim': 1,
            'passion': 1,
            'pdf': 1,
            'peopl': 1,
            'photo': 1,
            'photoshop': 1,
            'product': 1,
            'provid': 3,
            'remov': 1,
            'satisfi': 1,
            'servic': 1,
            'skype': 1,
            'submit': 1,
            'upload': 1,
            'websiteso': 2,
            'well': 1,
            'word': 1,
            'work': 1,
            'work.i': 1,
            'yahoo': 1}),
  'M'),
 (FreqDist({'*develop': 2,
            '.net': 1,
            '2008.': 1,
            'applic': 4,
            'base': 1,
            'c': 1,
            'cart': 1,
            'develop': 1,
            'differ': 1,
            'durat': 1,
            'experi': 2,
            'facebook': 1,
            'field': 1,
            'good': 1,
            'joomla': 1,
            'languag': 1,
            'like': 1,
            'mani': 3,
            'media': 2,
            'open': 2,
            'passion': 1,
            'php/mysql': 1,
            'platform': 1,
            'profound': 1,
            'program': 2,
            'sinc': 1,
            'social': 2,
            'sourc': 1,
            'use': 2,
            'websit': 2,
            'window': 1,
            'wordpress': 1,
            'work': 2}),
  'M'),
 (FreqDist({'10': 1,
            '25': 1,
            '7': 1,
            '\\xe2\\u20ac\\xa2\\t': 1,
            'also': 2,
            'certifi': 1,
            'commit': 1,
            'constantli': 1,
            'coordin': 1,
            'cours': 1,
            'day': 1,
            'deadlin': 2,
            'depend': 1,
            'edit': 1,
            'en': 2,
            'enabl': 1,
            'english': 1,
            'fast': 1,
            'field': 1,
            'freelanc': 1,
            'fulli': 1,
            'given': 1,
            'hard': 1,
            'ie': 1,
            'languag': 2,
            'latest': 1,
            'like': 1,
            'load': 1,
            'nativ': 1,
            'nuanc': 1,
            'opportun': 1,
            'person': 1,
            'pressur': 1,
            'profession': 1,
            'project': 1,
            'proofread': 1,
            'skill': 1,
            'spanish': 2,
            'teacher': 1,
            'team': 1,
            'text': 1,
            'tight': 1,
            'translat': 2,
            'trend': 1,
            'updat': 1,
            'usual': 1,
            'week': 1,
            'well': 1,
            'work': 4,
            'written': 1,
            'year': 2}),
  'F'),
 (FreqDist({'alway': 1,
            'creativ': 1,
            'improv': 1,
            'look': 1,
            'project': 2,
            'skill': 1,
            'type': 1,
            'variou': 1,
            'work': 2}),
  'M'),
 (FreqDist({"'m": 2,
            "'s": 1,
            'accept': 1,
            'access': 1,
            'actual': 1,
            'analysi': 1,
            'architect': 1,
            'around': 1,
            'australia': 2,
            'base': 1,
            'beat': 1,
            'best': 2,
            'busi': 2,
            'canada': 2,
            'citi': 1,
            'compani': 1,
            'competitor': 2,
            'construct': 1,
            'contain': 1,
            'demo': 1,
            'design': 1,
            'detail': 1,
            'europ': 2,
            'exactli': 1,
            'googl': 3,
            'group': 1,
            'gun': 1,
            'industri': 1,
            'interior': 1,
            'internet': 2,
            'know': 1,
            'latest': 1,
            'leav': 1,
            'limit': 1,
            'local': 1,
            'market': 3,
            'me.i': 1,
            'money': 1,
            'one': 1,
            'part': 1,
            'place': 1,
            'project': 1,
            'proof': 1,
            'provid': 1,
            'reach': 1,
            'remodel': 1,
            'right': 1,
            'search': 1,
            'see': 1,
            'send': 1,
            'seo': 3,
            'show': 1,
            'small': 1,
            'special': 1,
            'state': 1,
            'surgeon': 1,
            'tabl': 1,
            'target': 1,
            'technolog': 1,
            'top': 1,
            'u.': 2,
            'video': 2,
            'want': 1,
            'websit': 1,
            'work': 1,
            'world': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '...': 1,
            'algorithm': 1,
            'alway': 2,
            'ampl': 1,
            'articl': 2,
            'bs': 1,
            'client': 3,
            'comput': 1,
            'copi': 1,
            'data': 1,
            'differ': 1,
            'domain': 1,
            'done': 1,
            'electr': 2,
            'engin': 2,
            'entri': 1,
            'field': 1,
            'first': 1,
            'follow': 1,
            'get': 1,
            'guy': 1,
            'happi': 1,
            'hard': 1,
            'help': 1,
            'latex': 1,
            'limit': 1,
            'linear': 2,
            'make': 1,
            'mathemat': 1,
            'matlab': 1,
            'ms': 1,
            'much': 1,
            'network': 1,
            'non': 1,
            'optim': 1,
            'present': 1,
            'prioriti': 1,
            'program': 1,
            'project': 1,
            'proofread': 1,
            'push': 1,
            'rewrit': 1,
            'satisfact': 1,
            'sever': 1,
            'telecommun': 2,
            'transcript': 1,
            'type': 1,
            'variou': 1,
            'want': 1,
            'work': 2,
            'write': 1}),
  'M'),
 (FreqDist({'10': 1,
            'android': 1,
            'develop': 1,
            'freelanc': 1,
            'io': 1,
            'look': 1,
            'mac': 1,
            'someth': 1,
            'start': 1,
            'year': 1}),
  'M'),
 (FreqDist({'15': 1,
            'assign': 1,
            'broadband': 1,
            'comput': 1,
            'connect': 1,
            'experi': 1,
            'fast': 1,
            'given': 1,
            'home': 1,
            'internet': 1,
            'neat': 1,
            'new': 1,
            'time': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'alter': 1,
            'contest': 1,
            'creat': 1,
            'ear': 1,
            'idea': 1,
            'individu': 2,
            'manifest': 1,
            'mention': 1,
            'nation': 1,
            'new': 1,
            'power': 2,
            'right': 2,
            'societi': 1,
            'someth': 1,
            'spoken': 1,
            'total': 1,
            'word': 3,
            'write': 1}),
  'M'),
 (FreqDist({'9': 1,
            'advertis': 1,
            'also': 1,
            'analyt': 4,
            'analyz': 1,
            'around': 1,
            'behavior': 1,
            'busi': 2,
            'businesses.i': 1,
            'categori': 1,
            'client': 1,
            'code': 1,
            'countri': 1,
            'differ': 3,
            'engin': 1,
            'experi': 2,
            'expert': 1,
            'goal': 1,
            'help': 1,
            'implement': 1,
            'improv': 2,
            'insight': 1,
            'market': 1,
            'paid': 1,
            'perform': 2,
            'provid': 1,
            'reach': 1,
            'report': 1,
            'search': 2,
            'use': 1,
            'web': 3,
            'websit': 2,
            'work': 3,
            'year': 1}),
  'M'),
 (FreqDist({"''": 1,
            "'m": 1,
            '--': 1,
            '100': 1,
            '2003': 1,
            '2004.': 1,
            '``': 1,
            'abstract': 1,
            'academ': 1,
            'accur': 1,
            'along': 1,
            'amazon': 1,
            'approach': 1,
            'audienc': 1,
            'author': 1,
            'background': 1,
            'broke': 1,
            'busi': 1,
            'commun': 1,
            'concept': 1,
            'consist': 1,
            'critic': 1,
            'current': 1,
            'degre': 1,
            'develop': 1,
            'document': 1,
            'easi': 1,
            'english': 1,
            'enrol': 1,
            'essenti': 2,
            'establish': 1,
            'focus': 1,
            'found': 1,
            'fun': 1,
            'goal': 1,
            'ground': 1,
            'guid': 2,
            'highli': 1,
            'inform': 1,
            'intellectu': 1,
            'languag': 1,
            'lay': 1,
            'learn': 1,
            'level': 1,
            'lifelong': 1,
            'logic': 1,
            'look': 1,
            'make': 1,
            'master': 1,
            'materi': 1,
            'move': 1,
            'need': 1,
            'new': 1,
            'novemb': 1,
            'one': 1,
            'perfectli': 1,
            'person': 1,
            'philosophi': 3,
            'pitch': 1,
            'prais': 1,
            'present': 1,
            'product': 1,
            'project': 1,
            'publish': 1,
            'pursu': 1,
            'quest': 1,
            'reach': 1,
            'review': 3,
            'said': 1,
            'scienc': 1,
            'serious': 1,
            'sinc': 1,
            'subject': 1,
            'subsequ': 1,
            'success': 1,
            'take': 1,
            'teach': 1,
            'teacher': 1,
            'technic': 2,
            'think': 1,
            'thinker': 2,
            'understand': 1,
            'univers': 2,
            'user': 1,
            'well': 1,
            'work': 1,
            'write': 3,
            'yet': 1}),
  'M'),
 (FreqDist({'dedic': 1, 'hardwork': 1, 'person': 1}), 'M'),
 (FreqDist({"'s": 1, 'busi': 1, 'let': 1}), 'M'),
 (FreqDist({"'m": 1,
            '.net': 1,
            '10': 1,
            '2012': 1,
            '700': 1,
            'administr': 1,
            'also': 1,
            'applic': 1,
            'asp.net': 1,
            'build': 1,
            'c': 1,
            'center': 1,
            'cm': 1,
            'compani': 2,
            'configur': 1,
            'creat': 1,
            'daili': 1,
            'dhcp': 1,
            'directori': 1,
            'dn': 1,
            'drupal': 1,
            'engin': 1,
            'etc': 1,
            'etc.': 1,
            'expert': 1,
            'gpo': 1,
            'hr': 1,
            'ii': 1,
            'inventori': 1,
            'job': 2,
            'joomla': 1,
            'manag': 1,
            'mani': 1,
            'platform': 1,
            'seo': 1,
            'server': 1,
            'site': 1,
            'system': 2,
            'use': 1,
            'web': 1,
            'wide': 1,
            'window': 4,
            'wordpress': 1,
            'work': 2,
            'workstat': 1,
            'world': 1,
            'year': 1,
            'years.i': 1}),
  'M'),
 (FreqDist({'chanc': 1,
            'dazzl': 1,
            'end': 1,
            'excel.i': 1,
            'give': 1,
            'lowest': 1,
            'price': 1,
            'short': 1,
            'start': 1,
            'thing': 1,
            'time': 1,
            'work': 1}),
  'M'),
 (FreqDist({'clean': 1,
            'creat': 1,
            'design': 2,
            'georg': 1,
            'i`m': 1,
            'last': 1,
            'love': 1,
            'modern': 1,
            'name': 1,
            'technolog': 1,
            'theme': 1,
            'use': 1,
            'web': 1}),
  'M'),
 (FreqDist({'/html5': 1,
            '20': 1,
            'also': 1,
            'art': 1,
            'certifi': 1,
            'cluj-napoca': 1,
            'concept': 1,
            'css3': 1,
            'design': 3,
            'develop': 1,
            'eu': 1,
            'experi': 1,
            'graphic': 2,
            'guarante': 1,
            'high': 1,
            'host': 1,
            'locat': 1,
            'multimedia': 1,
            'offer': 1,
            'print': 1,
            'profession': 2,
            'provid': 1,
            'qualiti': 1,
            'region': 1,
            'respons': 1,
            'romania': 1,
            'servic': 1,
            'technolog': 1,
            'transylvania': 1,
            'web': 2,
            'webdesign': 1,
            'websit': 1,
            'year': 1}),
  'M'),
 (FreqDist({'14': 1,
            'abil': 1,
            'adult': 1,
            'blog': 1,
            'bottom': 1,
            'ca': 1,
            'content': 1,
            'creat': 3,
            'design': 1,
            'develop': 1,
            'ecommerc': 1,
            'edit': 1,
            'everi': 1,
            'exist': 2,
            'graphic': 1,
            'imagin': 2,
            'includ': 1,
            'limit': 1,
            'match': 1,
            "n't": 1,
            'noth': 1,
            'pleas': 1,
            'power': 1,
            'program': 1,
            'site': 3,
            'special': 1,
            'top': 1,
            'turn': 1,
            'type': 1,
            'video': 1,
            'web': 1,
            'websit': 3,
            'wordpress': 2,
            'year': 1}),
  'F'),
 (FreqDist({'articl': 1,
            'editor': 1,
            'english': 1,
            'job': 1,
            'languag': 1,
            'mani': 1,
            'origin': 1,
            'proofread': 1,
            'seo': 1,
            'site': 1,
            'specialist': 1,
            'teacher': 1,
            'translat': 1,
            'work': 1,
            'writer': 1}),
  'F'),
 (FreqDist({'basi': 1,
            'done': 1,
            'get': 1,
            'group': 1,
            'peopl': 1,
            'project': 3,
            'talent': 1,
            'work': 1}),
  'M'),
 (FreqDist({'bootstrap': 1,
            'css': 1,
            'joomla': 1,
            'less': 1,
            'photoshop': 1,
            'sass': 1,
            'wordpress': 1}),
  'M'),
 (FreqDist({'5': 1,
            'also': 1,
            'bi': 1,
            'creat': 1,
            'data': 1,
            'develop': 1,
            'engin': 1,
            'excel': 1,
            'experi': 1,
            'hand': 1,
            'informatica': 1,
            'macro': 1,
            'ms': 1,
            'softwar': 1,
            'technolog': 1,
            'tool': 1,
            'warehous': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 1,
            '10': 1,
            'advertis': 1,
            'client': 2,
            'commerci': 1,
            'director': 1,
            'experi': 1,
            'film': 1,
            'group': 1,
            'intern': 1,
            'local': 1,
            'mani': 1,
            'market': 2,
            'nation': 1,
            'offer': 2,
            'one': 2,
            'pleasur': 1,
            'produc': 1,
            'product': 3,
            'qualiti': 1,
            'radio': 2,
            'seen': 1,
            'servic': 1,
            'skill': 1,
            'success': 1,
            'televis': 1,
            'thousand': 1,
            'use': 1,
            'web': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"''": 1,
            '3': 1,
            '7': 1,
            '``': 1,
            'adeel': 2,
            'ahm': 1,
            'base': 1,
            'compani': 2,
            'complex': 1,
            'databas': 1,
            'develop': 2,
            'differ': 1,
            'dubai': 1,
            'give': 1,
            'hi': 1,
            'huge': 1,
            'idea': 1,
            'kingdom': 1,
            'last': 2,
            'life': 1,
            'link': 1,
            'mysql': 1,
            'name': 1,
            'offshor': 1,
            'pakistan': 1,
            'project': 2,
            'sinc': 2,
            'think': 1,
            'unit': 1,
            'websit': 2,
            'work': 3,
            'year': 2}),
  'M'),
 (FreqDist({'.net': 1,
            '7': 1,
            '9': 2,
            'experi': 1,
            'good': 1,
            'html5': 1,
            'jqueri': 1,
            'reactj': 1,
            'redux': 1,
            'usa': 1,
            'work': 1,
            'year': 3}),
  'M'),
 (FreqDist({"''": 1,
            '4.5': 1,
            '``': 1,
            'afford': 1,
            'bangladesh.i': 1,
            'believ': 1,
            'click': 1,
            'data': 1,
            'depart': 1,
            'entri': 1,
            'hire': 1,
            'job': 2,
            'last': 1,
            'make': 1,
            'manag': 1,
            'onlin': 1,
            'pharmacist': 1,
            'prefer': 1,
            'price': 1,
            'product': 1,
            'profile.i': 1,
            'qualiti': 1,
            'readi': 1,
            'thank': 1,
            'time': 1,
            'visit': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'...': 1,
            '10': 1,
            '15': 2,
            '20': 1,
            '3d': 1,
            '5': 1,
            'app': 1,
            'build': 1,
            'c/c++': 1,
            'canada': 1,
            'china': 1,
            'compani': 1,
            'complet': 1,
            'consist': 1,
            'design': 1,
            'desktop': 1,
            'detail': 1,
            'develop': 1,
            'engin': 1,
            'experienc': 1,
            'finish': 1,
            'flash/flex': 1,
            'follow': 1,
            'french': 1,
            'give': 1,
            'japan': 1,
            'java': 1,
            'korea': 1,
            'lot': 1,
            'mobil': 1,
            'new': 1,
            'ocr': 1,
            'order': 1,
            'person': 2,
            'project': 2,
            'revers': 1,
            'team': 2,
            'translat': 1,
            'u.s.': 1,
            'web': 1,
            'websit': 1,
            'year': 1}),
  'M'),
 (FreqDist({'addit': 1,
            'base': 1,
            'basic': 2,
            'best': 1,
            'code': 1,
            'content': 1,
            'corpor': 1,
            'design': 7,
            'develop': 2,
            'drupal': 1,
            'e-commerc': 1,
            'expert': 1,
            'famili': 1,
            'flash': 1,
            'freelanc': 2,
            'friend': 1,
            'graphic': 2,
            'handl': 1,
            'home': 1,
            'html/css': 1,
            'ident': 1,
            'joomla': 1,
            'manag': 1,
            'offer': 1,
            'offic': 1,
            'photoshop': 1,
            'php': 1,
            'portfolio': 1,
            'relat': 1,
            'servic': 2,
            'small': 1,
            'stationari': 1,
            'team': 3,
            'technolog': 1,
            'view': 1,
            'web': 1,
            'websit': 4,
            'wordpress': 1,
            'work': 1}),
  'M'),
 (FreqDist({'also': 1,
            'applic': 1,
            'base': 1,
            'code': 1,
            'css': 1,
            'data': 1,
            'develop': 1,
            'experi': 1,
            'framework': 1,
            'freelanc': 1,
            'fulltim': 1,
            'gimp': 1,
            'ignit': 1,
            'includ': 1,
            'indonesia': 1,
            'jakarta': 1,
            'java': 1,
            'know': 1,
            'learn': 1,
            'machin': 1,
            'mine': 1,
            'name': 1,
            'php': 1,
            'progress': 1,
            'projects.i': 1,
            'script': 1,
            'skill': 1,
            'web': 3,
            'xhtml': 1}),
  'M'),
 (FreqDist({'15+': 1,
            'ad': 1,
            'ajax': 1,
            'appropri': 1,
            'asp': 1,
            'asp.net': 1,
            'averag': 1,
            'backend': 1,
            'base': 1,
            'busi': 1,
            'c': 1,
            'client': 1,
            'css': 1,
            'custom': 1,
            'deliveri': 1,
            'dhtml': 1,
            'expand': 1,
            'experi': 1,
            'expert': 1,
            'expertis': 1,
            'full': 1,
            'give': 1,
            'group': 1,
            'help': 1,
            'high': 3,
            'html': 1,
            'includ': 1,
            'industri': 3,
            'innov': 1,
            'javascript': 1,
            'like': 2,
            'local': 1,
            'mainli': 1,
            'make': 1,
            'mani': 1,
            'microsoft': 1,
            'money': 1,
            'motto': 1,
            'mysql': 1,
            'need': 1,
            'offer': 2,
            'primari': 1,
            'program': 1,
            'proof': 1,
            'qualiti': 3,
            'reput': 1,
            'requir': 1,
            'satisfi': 1,
            'scope': 1,
            'server': 1,
            'servic': 1,
            'skill': 1,
            'solut': 2,
            'sql': 1,
            'support': 1,
            'technic': 1,
            'technolog': 2,
            'time': 1,
            'use': 1,
            'valu': 1,
            'vb': 1,
            'vb.net': 1,
            'vba': 1,
            'vbscript': 1,
            'within': 2,
            'worth': 1,
            'xml': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.net': 1,
            '4': 1,
            'differ': 1,
            'experi': 1,
            'field': 1,
            'freelanc': 1,
            'home': 1,
            'prefer': 1,
            'synchron': 1,
            'web': 1,
            'work': 2,
            'year': 1}),
  'F'),
 (FreqDist({'android': 1,
            'applic': 3,
            'bank': 1,
            'base': 3,
            'biggest': 1,
            'central': 1,
            'databas': 1,
            'develop': 2,
            'dm': 1,
            'documentum': 1,
            'europ': 1,
            'flex': 1,
            'framework': 1,
            'howev': 1,
            'job': 1,
            'look': 1,
            'one': 1,
            'oracl': 1,
            'past': 1,
            'posit': 2,
            'senior': 1,
            'server': 1,
            'specialist': 1,
            'system': 1,
            'use': 1,
            'weblog': 1,
            'websit': 1,
            'well': 1,
            'work': 1}),
  'M'),
 (FreqDist({'6': 1,
            'compani': 1,
            'corpor': 1,
            'creation': 1,
            'experi': 1,
            'style': 1,
            'uniqu': 1,
            'year': 1}),
  'F'),
 (FreqDist({'call': 1, 'creation': 1, 'firm': 1, 'see': 1, 'work': 1}), 'M'),
 (FreqDist({'10': 1,
            '2.0': 4,
            '6': 1,
            '7': 1,
            '8': 1,
            '9': 1,
            '\\xc2\\xbb': 2,
            'action': 4,
            'adob': 4,
            'cs3': 4,
            'domain': 4,
            'flash': 12,
            'html/dhtml': 4,
            'http': 4,
            'javascript': 4,
            'ms-dot': 4,
            'net': 4,
            'player': 4,
            'script': 4,
            'server\\xc2\\xbbtechnolog': 3,
            'sql': 4,
            'technolog': 4,
            'use': 4,
            'xml': 4}),
  'M'),
 (FreqDist({'+6': 1,
            '100': 1,
            '3rd': 2,
            '4': 1,
            '5': 1,
            '\\ti': 1,
            'along': 1,
            'alway': 1,
            'aptitud': 1,
            'articl': 1,
            'asian': 1,
            'assur': 1,
            'bangladesh': 1,
            'batch': 1,
            'bba': 1,
            'best': 1,
            'boast': 1,
            'capabl': 1,
            'career': 1,
            'cgpa': 2,
            'choos': 1,
            'client': 1,
            'command': 1,
            'complet': 1,
            'countri': 1,
            'dead': 1,
            'driven': 1,
            'enough': 1,
            'ensur': 1,
            'excel': 1,
            'experi': 1,
            'experienc': 1,
            'express': 1,
            'financ': 1,
            'glanc': 1,
            'import': 1,
            'in-tim': 1,
            'includ': 1,
            'line': 1,
            'lowest': 1,
            'made': 1,
            'major': 1,
            'mba': 3,
            'mohammad': 1,
            'much': 1,
            'name': 1,
            'never': 1,
            'new': 1,
            'obtain': 1,
            'place': 2,
            'price': 1,
            'provid': 1,
            'qualiti': 3,
            'reason': 1,
            'scienc': 1,
            'seriou': 1,
            'servic': 1,
            'show': 1,
            'skill': 2,
            'south': 1,
            'submiss': 2,
            'talent': 1,
            'technic': 1,
            'technolog': 1,
            'uniqu': 1,
            'univers': 1,
            'verbal': 1,
            'want': 1,
            'work': 1,
            'write': 3,
            'written': 1,
            'zone': 1}),
  'M'),
 (FreqDist({'best': 1,
            'come': 1,
            'detail': 1,
            'done': 1,
            'easi': 1,
            'effici': 1,
            'english': 1,
            'excel': 1,
            'fast': 2,
            'good': 1,
            'grammar': 1,
            'honest': 1,
            'improv': 1,
            'initi': 1,
            'keen': 1,
            'much': 1,
            'new': 1,
            'onlin': 1,
            'possibl': 1,
            'project': 2,
            'reason': 1,
            'sens': 1,
            'skill': 1,
            'softwar': 1,
            'solut': 1,
            'take': 1,
            'want': 1,
            'way': 1,
            'work': 1,
            'worker': 1,
            'yet': 1}),
  'M'),
 (FreqDist({"'m": 1,
            'client': 1,
            'css': 1,
            'design': 1,
            'develop': 1,
            'done': 1,
            'familiar': 1,
            'html': 2,
            'joomla': 1,
            'mani': 1,
            'name': 1,
            'past': 1,
            'photoshop': 1,
            'php': 1,
            'project': 1,
            'psd': 1,
            'raj': 1,
            'ravi': 1,
            'sharma': 1,
            'two': 1,
            'web': 1,
            'wordpress': 1,
            'xhtml': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'s": 1, 'link': 1, 'resum': 1}), 'F'),
 (FreqDist({'30': 1,
            'administr': 1,
            'also': 2,
            'artist': 1,
            'beka': 1,
            'bibl': 1,
            'book': 1,
            'card': 1,
            'cashless': 1,
            'certain': 1,
            'children': 2,
            'combin': 1,
            'compani': 1,
            'conflict': 1,
            'develop': 2,
            'doman': 1,
            'earn': 1,
            'educ': 2,
            'english': 1,
            'experi': 2,
            'extract': 1,
            'featur': 1,
            'field': 1,
            'glen': 1,
            'government': 1,
            'health': 1,
            'help': 1,
            'herbal': 1,
            'hospit': 1,
            'illustr': 1,
            'immedi': 1,
            'includ': 2,
            'india': 1,
            'indian': 1,
            'indigen': 1,
            'individu': 1,
            'insur': 1,
            'involv': 1,
            'latter': 1,
            'level': 1,
            'may': 1,
            'medic': 4,
            'medium': 1,
            'method': 1,
            'missionari': 1,
            'modern': 1,
            'montessori': 1,
            'name': 1,
            'network': 2,
            'newslett': 1,
            'non': 1,
            'organ': 2,
            'organizations.at': 1,
            'parti': 1,
            'photographi': 1,
            'present': 1,
            'profession': 1,
            'professor': 1,
            'project': 1,
            'provid': 2,
            'research': 1,
            'retir': 1,
            'rule': 1,
            'sale': 1,
            'school': 1,
            'slum': 1,
            'sponsor': 1,
            'studi': 1,
            'teach': 1,
            'team': 1,
            'third': 1,
            'three': 1,
            'transcript': 1,
            'treatment': 1,
            'univers': 1,
            'use': 2,
            'variou': 2,
            'visit': 1,
            'way': 1,
            'work': 5,
            'write': 1,
            'written': 1,
            'year': 1}),
  'M'),
 (FreqDist({"''": 1,
            "'s": 1,
            '``': 1,
            'alway': 2,
            'best': 2,
            'carri': 1,
            'everi': 2,
            'give': 3,
            'impact': 1,
            'job': 3,
            'last': 1,
            'posit': 1,
            'realli': 1,
            'shot': 1,
            'take': 1,
            'think': 1,
            'want': 1}),
  'F'),
 (FreqDist({'--': 14,
            'aim': 1,
            'art': 1,
            'background': 1,
            'best': 1,
            'blog': 1,
            'creativ': 1,
            'design': 3,
            'dreami': 1,
            'effect': 1,
            'graphic': 1,
            'high': 2,
            'imag': 1,
            'inspir': 1,
            'logo': 1,
            'manipul': 1,
            'object': 1,
            'photo': 2,
            'photoshop': 1,
            'poster': 1,
            'profession': 1,
            'provid': 2,
            'qualiti': 2,
            'remov': 1,
            'resourc': 1,
            'retouch': 1,
            'servic': 1,
            'stock': 1,
            'tutori': 2,
            'writer': 1}),
  'F'),
 (FreqDist({'4': 1,
            'academ': 1,
            'accept': 1,
            'articles\\xc2\\xb7': 1,
            'blogs\\xc2\\xb7': 1,
            'complet': 1,
            'content': 4,
            'copyscap': 1,
            'deliv': 1,
            'differ': 1,
            'enhanc': 1,
            'fast': 1,
            'field': 1,
            'follow': 1,
            'freelanc': 1,
            'genuin': 1,
            'get': 1,
            'goal': 1,
            'graduat': 1,
            'group': 1,
            'high': 1,
            'hire': 1,
            'huge': 1,
            'industri': 1,
            'last': 1,
            'main': 1,
            'mani': 1,
            'moneybook': 1,
            'offer': 1,
            'origin': 1,
            'pass': 1,
            'payment': 1,
            'paypal': 1,
            'privileg': 1,
            'profession': 1,
            'qualiti': 2,
            'quantiti': 1,
            'review': 1,
            'seo': 1,
            'servic': 1,
            'special': 1,
            'strive': 1,
            'studi': 1,
            'subject': 1,
            'time': 1,
            'turnaround': 1,
            'us': 1,
            'variou': 1,
            'via': 1,
            'work': 1,
            'writer': 3,
            'year': 1}),
  'M'),
 (FreqDist({'2008': 1,
            '2012': 1,
            '7': 1,
            'angularj': 1,
            'api': 1,
            'applic': 1,
            'asp.net': 2,
            'c': 1,
            'crm': 1,
            'develop': 2,
            'domain': 1,
            'entiti': 1,
            'erp': 1,
            'experi': 1,
            'experience.i': 1,
            'expertis': 1,
            'hello': 1,
            'includ': 1,
            'inventori': 1,
            'javascript': 1,
            'jqueri': 1,
            'larg': 1,
            'like': 1,
            'ms-sql': 1,
            'mvc': 2,
            'server': 1,
            'ssr': 1,
            'technolog': 2,
            'variou': 1,
            'web': 1,
            'year': 1}),
  'M'),
 (FreqDist({'expert': 1, 'lamp': 1}), 'M'),
 (FreqDist({'design': 1, 'java': 1, 'php': 1, 'programm': 1, 'web': 1}), 'M'),
 (FreqDist({'adob': 1,
            'also': 2,
            'area': 1,
            'articl': 1,
            'blog': 1,
            'bookmark': 1,
            'code': 1,
            'comment': 1,
            'corel': 1,
            'design': 1,
            'directori': 1,
            'draw': 1,
            'excel': 1,
            'experi': 1,
            'facebook': 1,
            'follow': 1,
            'forum': 1,
            'good': 1,
            'great': 1,
            'like': 1,
            'microsoft': 3,
            'network': 1,
            'photoshop': 1,
            'post': 1,
            'powerpoint': 1,
            'site': 1,
            'social': 2,
            'speed': 1,
            'submiss': 2,
            'test': 1,
            'twitter': 1,
            'type': 1,
            'word': 1,
            'wpm': 1}),
  'M'),
 (FreqDist({'afford': 1,
            'also': 1,
            'app': 1,
            'awar': 1,
            'best': 2,
            'brand': 1,
            'busi': 1,
            'clear': 1,
            'client': 1,
            'commun': 1,
            'creat': 1,
            'deliv': 1,
            'deliveri': 1,
            'ensur': 1,
            'everi': 2,
            'excel': 1,
            'firm': 1,
            'fit': 1,
            'focu': 1,
            'follow': 1,
            'gener': 1,
            'guarante': 1,
            'hire': 1,
            'includ': 1,
            'individu': 1,
            'innov': 1,
            'know': 1,
            'lead': 1,
            'make': 1,
            'market': 1,
            'onsit': 1,
            'orient': 1,
            'outstand': 1,
            'prefer': 1,
            'pride': 1,
            'propos': 1,
            'receiv': 1,
            'requir': 1,
            'sale': 1,
            'softwar': 1,
            'staff': 1,
            'strive': 1,
            'support': 1,
            'take': 1,
            'technic': 1,
            'time': 2,
            'train': 1,
            'uniqu': 1,
            'within': 1}),
  'M'),
 (FreqDist({'9': 1,
            'anim': 1,
            'corpor': 1,
            'experi': 1,
            'explain': 1,
            'graphic': 1,
            'medic': 1,
            'motion': 1,
            'video': 1,
            'year': 1}),
  'F'),
 (FreqDist({'analyst': 1,
            'busi': 1,
            'current': 1,
            'deliveri': 1,
            'e2e': 1,
            'good': 1,
            'indian': 1,
            'interperson': 1,
            'mnc': 1,
            'project': 1,
            'respons': 1,
            'skill': 1,
            'sr.': 1,
            'technic': 1,
            'well': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '100': 1,
            '4': 1,
            'build': 1,
            'busi': 1,
            'client': 1,
            'current': 1,
            'experi': 1,
            'i\\\\': 1,
            'knowledg': 1,
            'last': 1,
            'opportun': 1,
            'provid': 1,
            'satisfact': 1,
            'seek': 1,
            'servic': 1,
            'year': 1}),
  'M'),
 (FreqDist({'high': 1, 'math': 1, 'school': 1, 'teacher': 1}), 'M'),
 (FreqDist({'2.0': 1,
            '2003': 1,
            '30': 1,
            '5': 1,
            'abil': 1,
            'abl': 1,
            'actionscript': 1,
            'almost': 1,
            'alway': 1,
            'ambiti': 1,
            'as3.0': 2,
            'base': 2,
            'big': 1,
            'biggest': 1,
            'chat': 1,
            'code': 1,
            'commun': 1,
            'compani': 1,
            'constant': 1,
            'contract': 1,
            'design': 1,
            'develop': 2,
            'either': 1,
            'facebook': 1,
            'firm': 1,
            'flash': 2,
            'flash/flex': 1,
            'freelanc': 1,
            'get': 1,
            'good': 1,
            'hi': 1,
            'independ': 1,
            'job': 1,
            'know': 1,
            'look': 1,
            'mail': 1,
            'may': 1,
            'min': 2,
            'passion': 2,
            'photoshop': 1,
            'port': 1,
            'profil': 1,
            'program': 1,
            'programm': 1,
            'project': 2,
            'provid': 1,
            'rate': 1,
            'repli': 1,
            'requir': 1,
            'robotleg': 1,
            'sens': 1,
            'servic': 1,
            'sinc': 1,
            'small': 1,
            'smartfox': 1,
            'start': 1,
            'strength': 1,
            'suffici': 1,
            'take': 1,
            'use': 1,
            'via': 1,
            'within': 1,
            'work': 2}),
  'M'),
 (FreqDist({"'m": 2,
            "'s": 2,
            '.i': 1,
            '2': 1,
            '2009': 1,
            '3': 2,
            '5': 1,
            'actual': 1,
            'address': 1,
            'art': 1,
            'background': 1,
            'base': 1,
            'best': 1,
            'blog': 1,
            'broken': 1,
            'challeng': 1,
            'christoph': 2,
            'client': 1,
            'code': 2,
            'commun': 1,
            'concept': 1,
            'contribut': 1,
            'creativ': 1,
            'css': 1,
            'css2': 1,
            'current': 1,
            'day': 1,
            'degrad': 1,
            'design': 2,
            'director': 1,
            'domain': 1,
            'feedback': 1,
            'follow': 1,
            'forum': 1,
            'franc': 1,
            'freelanc': 1,
            'geek': 1,
            'grace': 1,
            'hello': 1,
            'html': 1,
            'jacob': 1,
            'launch': 1,
            'lectur': 1,
            'link': 1,
            'love': 1,
            'market': 3,
            'meet': 1,
            'miss': 1,
            'name': 2,
            'new': 1,
            'onlin': 1,
            'pari': 2,
            'peer': 1,
            'portfolio': 2,
            'rank': 1,
            'read': 1,
            'recent': 1,
            'recogn': 1,
            'regard': 1,
            'renew': 1,
            'resum': 1,
            'revers': 1,
            'sinc': 1,
            'skill': 1,
            'special': 1,
            'url': 1,
            'usabl': 1,
            'view': 1,
            'visual': 1,
            'watch': 1,
            'web': 2,
            'webdesign': 2,
            'websit': 1,
            'zlobinski-furmaniak': 2}),
  'M'),
 (FreqDist({'5': 1,
            'bargain': 1,
            'becom': 1,
            'bs': 1,
            'coe': 1,
            'compani': 1,
            'consult': 1,
            'decid': 1,
            'employe': 1,
            'everi': 1,
            'go': 1,
            'graduat': 1,
            'independ': 1,
            'individu': 1,
            'knowledg': 1,
            'need': 1,
            'never': 1,
            'servic': 1,
            'skill': 1,
            'time': 1,
            'want': 1,
            'webmast': 1,
            'work': 1,
            'wrong': 1,
            'yr': 1}),
  'M'),
 (FreqDist({'articl': 2,
            'client': 1,
            'give': 1,
            'intend': 1,
            'meet': 1,
            'need': 1,
            'qualiti': 1,
            'readi': 1,
            'requir': 1,
            'serv': 1,
            'subject': 1,
            'varieti': 1,
            'wide': 1}),
  'M'),
 (FreqDist({'5': 1,
            'area': 1,
            'cm': 1,
            'codeignit': 1,
            'compani': 1,
            'creat': 1,
            'css': 1,
            'develop': 1,
            'differ': 1,
            'experi': 1,
            'expertis': 1,
            'framework': 2,
            'ground': 1,
            'html': 1,
            'joomla': 1,
            'lamp': 1,
            'medium': 1,
            'mysql': 1,
            'php': 1,
            'program': 1,
            'project': 1,
            'side': 1,
            'small': 1,
            'work': 2,
            'year': 1,
            'yii': 1,
            'zend': 1}),
  'M'),
 (FreqDist({"'ll": 2,
            '1.': 1,
            'account': 1,
            'achiev': 2,
            'ad': 1,
            'afford': 1,
            'analysi': 2,
            'announc': 1,
            'attract': 1,
            'b2b': 1,
            'banner': 1,
            'blog': 4,
            'book': 1,
            'brochur': 1,
            'build': 2,
            'built': 1,
            'busi': 1,
            'cm': 1,
            'competit': 2,
            'competitor': 1,
            'consum': 1,
            'cover': 1,
            'creat': 2,
            'custom': 1,
            'defin': 1,
            'design': 3,
            'develop': 1,
            'exist': 1,
            'experi': 1,
            'ghost': 1,
            'help': 3,
            'industri': 1,
            'inform': 1,
            'joomla': 1,
            'leader': 1,
            'link': 2,
            'manag': 2,
            'market': 2,
            'match': 1,
            'media': 1,
            'monitor': 2,
            'need': 1,
            'network': 1,
            'offer': 1,
            'ongo': 1,
            'page': 1,
            'player': 1,
            'press': 1,
            'product': 1,
            'profil': 1,
            'project': 1,
            'provid': 2,
            'report': 1,
            'simpl': 1,
            'skill': 1,
            'social': 1,
            'strategi': 3,
            'system': 1,
            'target': 1,
            'thought': 1,
            'time': 1,
            'trend': 1,
            'twitter': 3,
            'util': 1,
            'vertic': 1,
            'web': 1,
            'websit': 3,
            'whether': 2,
            'wordpress': 1,
            'write': 1}),
  'F'),
 (FreqDist({'100+': 1,
            'alam': 1,
            'almost': 1,
            'applic': 1,
            'beauti': 1,
            'codeignit': 1,
            'design': 2,
            'develop': 3,
            'dhaka': 1,
            'dynam': 1,
            'framework': 1,
            'hi': 1,
            'khan': 1,
            'live': 1,
            'md': 1,
            'open': 1,
            'past': 1,
            'php': 1,
            'portfolio': 1,
            'prefer': 1,
            'sourc': 1,
            'uniqu': 1,
            'use': 1,
            'valid': 1,
            'w3c': 1,
            'web': 1,
            'websit': 4,
            'welcom': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.net': 1,
            'also': 1,
            'applic': 1,
            'around': 1,
            'base': 1,
            'client': 1,
            'compani': 1,
            'deploy': 1,
            'develop': 1,
            'exampl': 1,
            'intern': 1,
            'like': 1,
            'mani': 1,
            'opportun': 1,
            'pleas': 1,
            'request': 1,
            'see': 1,
            'servic': 1,
            'site': 1,
            'small': 1,
            'softwar': 1,
            'technolog': 1,
            'vers': 1,
            'visit': 1,
            'web': 2,
            'welcom': 1,
            'well': 1,
            'window': 1,
            'work': 2,
            'world': 1,
            'write': 1}),
  'M'),
 (FreqDist({'...': 1,
            '4': 1,
            'build': 1,
            'comput': 1,
            'convers': 1,
            'data': 4,
            'entri': 1,
            'etc': 1,
            'experi': 1,
            'format': 1,
            'graduat': 1,
            'internet': 2,
            'link': 1,
            'market': 1,
            'post': 1,
            'process': 1,
            'research': 1,
            'scienc': 1,
            'seo': 1,
            'year': 1}),
  'M'),
 (FreqDist({'2014.': 1,
            '28': 1,
            '5': 1,
            'call': 1,
            'canada': 1,
            'center': 1,
            'contractor': 1,
            'custom': 1,
            'expand': 1,
            'experi': 1,
            'flexibl': 1,
            'hi': 1,
            'includ': 1,
            'independ': 1,
            'look': 1,
            'name': 1,
            'old': 1,
            'onlin': 1,
            'project': 1,
            'retail': 1,
            'schedul': 1,
            'septemb': 1,
            'servic': 1,
            'sinc': 1,
            'variou': 1,
            'work': 1,
            'year': 2}),
  'F'),
 (FreqDist({"'s": 1,
            "'ve": 1,
            'back': 1,
            'best': 1,
            'busi': 1,
            'care': 1,
            'choic': 1,
            'configur': 1,
            'cost-effect': 1,
            'design': 1,
            'detail': 1,
            'eight': 1,
            'get': 1,
            'joomla': 1,
            'mainten': 2,
            'one-stop': 1,
            'profession': 1,
            'run': 1,
            'site': 1,
            'specialis': 1,
            'staff': 1,
            'take': 1,
            'web': 1,
            'websit': 1,
            'year': 1}),
  'M'),
 (FreqDist({'applic': 1,
            'busi': 2,
            'compani': 1,
            'cost': 1,
            'design': 1,
            'designing-': 1,
            'develop': 1,
            'dynam': 1,
            'etc': 1,
            'evolv': 1,
            'galaxi': 1,
            'help': 1,
            'hosting-': 1,
            'info': 1,
            'low': 1,
            'process': 1,
            'programming-': 1,
            'provid': 1,
            'qualiti': 1,
            'rang': 1,
            'servic': 4,
            'software-': 1,
            'solut': 1,
            'special': 1,
            'strateg': 1,
            'system': 1,
            'web': 5,
            'web-bas': 1}),
  'M'),
 (FreqDist({'14': 1,
            'afford': 1,
            'agenc': 1,
            'aim': 1,
            'art': 1,
            'attent': 1,
            'attract': 1,
            'bid': 1,
            'busi': 1,
            'clear': 1,
            'commun': 2,
            'compet': 1,
            'core': 1,
            'creativ': 1,
            'crisp': 1,
            'cultur': 1,
            'custom': 2,
            'design': 3,
            'detail': 1,
            'director': 1,
            'effici': 1,
            'favor': 1,
            'freelanc': 1,
            'futur': 1,
            'go': 1,
            'highest': 1,
            'hire': 1,
            'ident': 1,
            'industry-standard': 1,
            'interfac': 1,
            'intern': 1,
            'job': 1,
            'last': 1,
            'layout': 1,
            'level': 1,
            'lie': 1,
            'local': 1,
            'logo': 1,
            'look': 1,
            'loyalti': 1,
            'market': 2,
            'master': 1,
            'maximum': 2,
            'may': 1,
            'perfect': 1,
            'perform': 1,
            'portfolio': 1,
            'possibl': 2,
            'print': 1,
            'prior': 1,
            'produc': 1,
            'prove': 1,
            'qualiti': 1,
            'save': 1,
            'section': 1,
            'servic': 1,
            'smallest': 1,
            'start': 1,
            'sure': 1,
            'task': 1,
            'technic': 1,
            'think': 1,
            'tool': 1,
            'use': 1,
            'vibrant': 1,
            'web': 1,
            'year': 1}),
  'M'),
 (FreqDist({'also': 1,
            'articl': 1,
            'blog': 1,
            'bulk': 1,
            'competit': 2,
            'content': 1,
            'highli': 1,
            'notch': 1,
            'offer': 1,
            'provid': 1,
            'qualiti': 1,
            'rate': 2,
            'reason': 1,
            'time': 1,
            'top': 1,
            'turnaround': 1,
            'web': 1,
            'work': 1}),
  'F'),
 (FreqDist({'abil': 1,
            'abl': 1,
            'also': 1,
            'analysi': 1,
            'applic': 1,
            'assist': 1,
            'b2b': 1,
            'busi': 2,
            'cm': 1,
            'commerci': 1,
            'common': 1,
            'data': 2,
            'databas': 1,
            'decis': 1,
            'dedic': 1,
            'depth': 1,
            'dn': 1,
            'drupal': 1,
            'emerg': 1,
            'environ': 1,
            'excel': 1,
            'flexibl': 1,
            'ftp': 1,
            'hard': 1,
            'hardwar': 1,
            'henc': 1,
            'host': 1,
            'individu': 1,
            'instal': 1,
            'joomla': 1,
            'knowledg': 1,
            'make': 1,
            'manag': 2,
            'market': 2,
            'ms': 1,
            'mysql': 1,
            'network': 1,
            'offic': 1,
            'php': 1,
            'press': 1,
            'profici': 1,
            'relat': 1,
            'resel': 1,
            'resourc': 1,
            'self-motiv': 1,
            'sens': 1,
            'server': 1,
            'share': 1,
            'social': 1,
            'softwar': 1,
            'sql': 1,
            'support': 1,
            'technic': 1,
            'technolog': 1,
            'understand': 1,
            'virtual': 1,
            'vp': 1,
            'whm/cpanel': 1,
            'word': 1,
            'work': 2}),
  'M'),
 (FreqDist({'area': 1,
            'bring': 1,
            'complex': 1,
            'continu': 1,
            'creativ': 1,
            'databas': 1,
            'degre': 1,
            'design': 1,
            'desir': 1,
            'develop': 1,
            'differ': 1,
            'effect': 1,
            'engin': 1,
            'excel': 1,
            'experi': 1,
            'growth': 1,
            'high': 1,
            'ingenu': 1,
            'market': 1,
            'medium': 1,
            'perform': 1,
            'person': 1,
            'proactiv': 1,
            'profession': 3,
            'project': 1,
            'provid': 1,
            'qualiti': 1,
            'relat': 1,
            'requir': 1,
            'research': 1,
            'sector': 1,
            'six': 1,
            'small': 1,
            'softwar': 2,
            'solut': 1,
            'spirit': 1,
            'system': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'2013': 1,
            '7': 1,
            'acrobat': 1,
            'apps.i': 1,
            'clean': 1,
            'convers': 1,
            'creat': 2,
            'creation': 1,
            'cycl': 1,
            'data': 2,
            'deal': 1,
            'excel': 2,
            'form': 2,
            'freelanc': 1,
            'full': 1,
            'hundr': 1,
            'includ': 1,
            'issu': 1,
            'job': 1,
            'last': 1,
            'live': 1,
            'mani': 1,
            'offic': 1,
            'pdf': 3,
            'perform': 2,
            'pro': 1,
            'research': 1,
            'setup': 1,
            'skill': 1,
            'solut': 1,
            'spreadsheet': 1,
            'technic': 1,
            'xi': 1,
            'year': 1}),
  'M'),
 (FreqDist({'6+': 1,
            'accord': 1,
            'complex': 1,
            'custom': 2,
            'design': 1,
            'develop': 2,
            'experi': 1,
            'fulli': 1,
            'hard': 1,
            'number': 1,
            'paid': 1,
            'plugin': 1,
            'project': 1,
            'requir': 1,
            'set': 1,
            'skill': 1,
            'theme': 2,
            'web': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'15': 1,
            'access': 1,
            'basic': 1,
            'develop': 2,
            'experi': 1,
            'ms': 1,
            'profession': 1,
            'special': 1,
            'sql': 1,
            'visual': 1,
            'year': 1}),
  'M'),
 (FreqDist({'...': 1,
            '25': 1,
            'english': 1,
            'experi': 3,
            'graphic': 1,
            'level': 1,
            'need': 1,
            'outdoor': 1,
            'portugues': 1,
            'profession': 1,
            'romanc': 1,
            'tell': 1,
            'translat': 1,
            'variou': 1,
            'word': 1,
            'year': 3}),
  'M'),
 (FreqDist({'cool': 1,
            'like': 2,
            'manual': 1,
            'person': 1,
            'similar': 1,
            'test': 1,
            'tester': 1,
            'websit': 1,
            'work': 3,
            'would': 1}),
  'M'),
 (FreqDist({"''": 2,
            "'m": 1,
            "'ve": 1,
            '10+': 1,
            '2.0': 2,
            '``': 2,
            'ajax': 1,
            'app': 1,
            'applic': 1,
            'around': 1,
            'avail': 1,
            'back-end': 1,
            'basi': 1,
            'check': 1,
            'chrome': 1,
            'curl': 1,
            'current': 1,
            'daili': 1,
            'desktop': 1,
            'detail': 1,
            'done': 1,
            'experi': 1,
            'extens': 1,
            'fast': 1,
            'filipino': 1,
            'freelanc': 2,
            'front-end': 1,
            'go': 1,
            'guarante': 1,
            'high': 1,
            'internet': 1,
            'jqueri': 1,
            'known': 1,
            'lot': 1,
            'love': 1,
            'one': 1,
            'phonegap': 1,
            'php': 1,
            'previou': 1,
            'qualiti': 1,
            'request': 1,
            'review': 1,
            'stay': 1,
            'super': 2,
            'sure': 1,
            'tri': 1,
            'use': 1,
            'web': 2,
            'websit': 1,
            'work': 4,
            'year': 1}),
  'M'),
 (FreqDist({'admin': 1,
            'avail': 1,
            'busi': 2,
            'cleric': 1,
            'creativ': 1,
            'data': 1,
            'entri': 1,
            'experi': 1,
            'extens': 1,
            'extra': 1,
            'gener': 1,
            'immedi': 1,
            'incom': 1,
            'new': 1,
            'offic': 1,
            'owner': 1,
            'profession': 1,
            'project': 2,
            'provid': 1,
            'seek': 1,
            'short': 1,
            'small': 1,
            'take': 1,
            'term': 1,
            'write': 1}),
  'F'),
 (FreqDist({'accuraci': 1,
            'achiev': 1,
            'also': 1,
            'correct': 1,
            'electron': 1,
            'enthusiast': 1,
            'fast': 1,
            'freelanc': 1,
            'goal': 1,
            'good': 1,
            'grammar': 1,
            'help': 1,
            'hour': 1,
            'keep': 1,
            'latest': 1,
            'lest': 1,
            'like': 1,
            'look': 1,
            'new': 1,
            'opportun': 1,
            'part': 1,
            'per': 1,
            'plan': 1,
            'tech': 1,
            'technolog': 1,
            'time': 1,
            'transcript': 1,
            'type': 1,
            'updat': 1,
            'week': 1,
            'work': 2}),
  'M'),
 (FreqDist({'4': 1,
            'articl': 1,
            'assess': 1,
            'basic': 1,
            'blog': 1,
            'engin': 1,
            'freelanc': 1,
            'glad': 1,
            'help': 1,
            'passion': 1,
            'past': 1,
            'project': 2,
            'sever': 1,
            'structur': 1,
            'take': 1,
            'websit': 1,
            'work': 1,
            'write': 1,
            'written': 1,
            'year': 1}),
  'M'),
 (FreqDist({'1.': 1,
            '2.': 1,
            'area4': 1,
            'art': 1,
            'careful': 1,
            'chines': 1,
            'command': 1,
            'editor': 1,
            'educ': 1,
            'english': 1,
            'english3': 1,
            'excel': 1,
            'experi': 1,
            'good': 1,
            'half': 1,
            'honest': 1,
            'languages-english': 1,
            'major': 1,
            'master': 1,
            'one': 1,
            'patient': 1,
            'perfom': 1,
            'person': 1,
            'respons': 1,
            'trait': 1,
            'two': 1,
            'work': 1,
            'year': 1}),
  'F'),
 (FreqDist({"'m": 1,
            "'ve": 1,
            'abl': 1,
            'academ': 1,
            'avail': 1,
            'background': 1,
            'bring': 1,
            'cheer': 1,
            'choos': 1,
            'clariti': 1,
            'commun': 1,
            'consider': 1,
            'craft': 1,
            'dedic': 1,
            'deliveri': 1,
            'esoter': 1,
            'excel': 1,
            'expect': 1,
            'extens': 1,
            'fierc': 1,
            'fresh': 2,
            'friendli': 1,
            'greet': 1,
            'health': 1,
            'interest': 1,
            'involv': 1,
            'maintain': 1,
            'mechan': 1,
            'meet': 1,
            'person': 1,
            'piec': 1,
            'pm': 1,
            'profession': 1,
            'prompt': 1,
            'qualiti': 1,
            'reader': 1,
            'resum': 1,
            'review': 1,
            'sampl': 1,
            'season': 1,
            'specif': 1,
            'strong': 1,
            'swift': 1,
            'thank': 1,
            'time': 1,
            'turnaround': 1,
            'via': 1,
            'voic': 1,
            'well': 1,
            'work': 1,
            'write': 1,
            'writer': 1,
            'written': 1}),
  'F'),
 (FreqDist({"'m": 3,
            "'s": 1,
            '.net': 2,
            '2004': 1,
            '2005': 1,
            '4': 1,
            'administr': 1,
            'adob': 1,
            'alon': 1,
            'analys': 1,
            'applic': 2,
            'architect': 1,
            'architectur': 1,
            'asp': 2,
            'attract': 1,
            'c': 1,
            'certifi': 1,
            'classic': 1,
            'code': 1,
            'comput': 1,
            'css': 1,
            'custom': 1,
            'databas': 1,
            'degre': 1,
            'design': 2,
            'develop': 3,
            'dream': 1,
            'e-commerc': 1,
            'experi': 1,
            'experienc': 1,
            'express': 1,
            'focus': 1,
            'form': 1,
            'got': 1,
            'hello': 1,
            'high': 1,
            'html': 1,
            'inform': 1,
            'interfac': 1,
            'level': 1,
            'make': 1,
            'manag': 2,
            'microsoft': 4,
            'moham': 1,
            'orient': 1,
            'produc': 1,
            'profession': 1,
            'project': 1,
            'recent': 1,
            'relat': 2,
            'rich': 1,
            'say': 1,
            'scienc': 1,
            'senior': 1,
            'servic': 2,
            'sever': 1,
            'sinc': 1,
            'skill': 1,
            'softwar': 1,
            'special': 1,
            'specialist': 1,
            'studio': 1,
            'system': 2,
            'talent': 1,
            'technolog': 2,
            'usabl': 1,
            'use': 2,
            'user': 2,
            'visual': 1,
            'weaver': 1,
            'web': 5,
            'window': 1,
            'xml': 1,
            'year': 2}),
  'M'),
 (FreqDist({"'ll": 1,
            "'m": 1,
            '8+': 1,
            'aleksandar': 1,
            'applic': 1,
            'contact': 1,
            'design': 2,
            'devic': 1,
            'experi': 1,
            'freelanc': 1,
            'gladli': 1,
            'graphic': 1,
            'hello': 1,
            'mobil': 1,
            'name': 1,
            'project': 1,
            'special': 1,
            'web': 1,
            'well': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 4,
            '4': 1,
            'account': 1,
            'adob': 1,
            'also': 2,
            'anyth': 1,
            'bath': 1,
            'behind': 1,
            'class': 1,
            'comput': 1,
            'coupl': 1,
            'creativ': 1,
            'design': 2,
            'ebay': 1,
            'facebook': 1,
            'feedback': 1,
            'flexibl': 1,
            'great': 1,
            'hardwork': 1,
            'help': 1,
            'kitchen': 1,
            'like': 1,
            'lot': 1,
            'mainli': 1,
            'myspac': 1,
            'new': 1,
            'past': 1,
            'photoshop': 1,
            'process': 1,
            'project': 1,
            'prove': 1,
            'skill': 2,
            'student': 1,
            'suit': 1,
            'take': 1,
            'thrown': 1,
            'twitter': 1,
            'valid': 1,
            'way': 1,
            'websit': 1,
            'would': 1,
            'year': 1}),
  'M'),
 (FreqDist({'achiev': 1,
            'effort': 1,
            'everi': 1,
            'grate': 1,
            'make': 1,
            'opportun': 1,
            'take': 1,
            'wish': 1}),
  'M'),
 (FreqDist({'17': 1,
            '4th': 1,
            'address': 1,
            'birth': 1,
            'estat': 1,
            'feder': 1,
            'hous': 1,
            'imo': 2,
            'malenation': 1,
            'new': 1,
            'origin': 1,
            'road': 1,
            'sept': 1,
            'state': 1}),
  'M'),
 (FreqDist({'50': 1,
            'assist': 2,
            'automot': 1,
            'consult': 1,
            'corpor': 1,
            'dmv': 1,
            'everi': 1,
            'except': 1,
            'firm': 2,
            'gener': 1,
            'goal': 1,
            'harder': 1,
            'industri': 1,
            'larger': 1,
            'mantra': 1,
            'offer': 1,
            'oper': 1,
            'outsourc': 1,
            'person': 1,
            'process': 1,
            'project': 1,
            'result': 1,
            'servic': 1,
            'set': 1,
            'skill': 1,
            'smarter': 1,
            'state': 1,
            'take': 1,
            'us': 1,
            'view': 1,
            'virtual': 1,
            'work': 1}),
  'F'),
 (FreqDist({'dedic': 1,
            'hard': 1,
            'output': 1,
            'satisfi': 1,
            'undergradu': 1,
            'worker': 1}),
  'M'),
 (FreqDist({"'m": 3,
            '14': 1,
            'access': 1,
            'administration.i': 1,
            'also': 1,
            'arab': 1,
            'c': 1,
            'c/c++': 1,
            'databas': 1,
            'design': 1,
            'develop': 1,
            'document': 1,
            'engin': 1,
            'english': 1,
            'experi': 1,
            'experience.i': 1,
            'expert': 1,
            'follow': 1,
            'french': 1,
            'hello': 1,
            'java/j2e': 1,
            'languag': 1,
            'ms': 1,
            'mysql': 1,
            'non-techn': 1,
            'oracl': 1,
            'pl/sql': 1,
            'senior': 1,
            'server': 1,
            'softwar': 1,
            'sql': 2,
            'stock': 1,
            'technic': 1,
            'translat': 2,
            'year': 1}),
  'M'),
 (FreqDist({'academ': 1,
            'agenc': 1,
            'american': 1,
            'degre': 1,
            'edit': 1,
            'english': 2,
            'excel': 1,
            'experi': 2,
            'extens': 1,
            'foreign': 1,
            'hello': 1,
            'includ': 2,
            'intern': 1,
            'interpret': 1,
            'job': 1,
            'knowledg': 1,
            'limit': 1,
            'linguist': 1,
            'name': 1,
            'obtain': 1,
            'oral': 1,
            'organ': 1,
            'proofread': 1,
            'russian': 2,
            'sinc': 1,
            'special': 1,
            'state': 1,
            'translat': 1,
            'univers': 3,
            'write': 2,
            'written': 1}),
  'F'),
 (FreqDist({'10': 1,
            'afford': 1,
            'attract': 1,
            'compliant': 1,
            'databas': 1,
            'design': 2,
            'develop': 3,
            'driven': 1,
            'experi': 1,
            'freelanc': 1,
            'friendly.i': 1,
            'front-end': 1,
            'graphic': 1,
            'html/css': 1,
            'larger': 1,
            'love': 1,
            'profession': 1,
            'project': 1,
            'site': 1,
            'special': 1,
            'standard': 1,
            'tackl': 1,
            'user': 1,
            'web': 2,
            'year': 1}),
  'M'),
 (FreqDist({'accord': 1,
            'blog': 1,
            'complet': 1,
            'custom': 1,
            'designbann': 1,
            'designcr': 1,
            'exist': 1,
            'integr': 1,
            'offer': 1,
            'power': 2,
            'servic': 1,
            'theme': 2,
            'websit': 1,
            'websitewordpress': 1,
            'wordpress': 3}),
  'F'),
 (FreqDist({'8': 1,
            '90': 1,
            'account': 1,
            'assist': 1,
            'background': 1,
            'call': 1,
            'center': 1,
            'custom': 1,
            'data': 1,
            'deadlin': 1,
            'deliv': 1,
            'english': 1,
            'entry.i': 1,
            'experi': 1,
            'fast': 1,
            'given': 1,
            'handl': 1,
            'industri': 1,
            'minut': 1,
            'outcom': 1,
            'per': 1,
            'possibl': 1,
            'proactiv': 1,
            'project': 1,
            'servic': 1,
            'solid': 1,
            'support': 1,
            'task': 1,
            'technic': 1,
            'time': 1,
            'type': 1,
            'virtual': 1,
            'word': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            '...': 1,
            'also': 1,
            'back': 1,
            'basic': 1,
            'c++': 1,
            'cours': 1,
            'css': 1,
            'discov': 1,
            'etc': 1,
            'fairli': 1,
            'flavor': 1,
            'forward': 1,
            'gain': 1,
            'get': 1,
            'go': 1,
            'hat': 1,
            'html': 1,
            'involv': 1,
            'issu': 1,
            'javascript': 1,
            'legal': 1,
            'move': 1,
            'much': 1,
            'mysql': 1,
            'page': 1,
            'perl': 1,
            'php': 1,
            'pretti': 1,
            'profici': 1,
            'seo': 1,
            'simpler': 1,
            'skill': 1,
            'start': 2,
            'straight': 1,
            'techniqu': 1,
            'thing': 1,
            'tri': 1,
            'variou': 1,
            'way': 1,
            'white': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.\\xe2\\u20ac\\xa2\\tdesign': 1,
            '1': 1,
            '10': 2,
            '10+': 1,
            '15': 2,
            '2': 2,
            '2000': 4,
            '2001': 2,
            '2002': 4,
            '2002-': 2,
            '2003': 1,
            '2004': 2,
            '2005': 2,
            '2007': 2,
            '2008': 2,
            '3': 3,
            '3-tier': 2,
            '30': 1,
            '36': 1,
            '4': 2,
            '5': 1,
            '5.0': 1,
            '6': 3,
            '6.x': 1,
            '7': 1,
            '8+': 1,
            '8.1': 1,
            '9+': 1,
            '90': 1,
            '93': 2,
            '94': 1,
            '95/nt': 3,
            '98': 3,
            '9i/10g': 1,
            '\\teyelit': 2,
            '\\tjava': 1,
            '\\tlanguag': 2,
            '\\toctob': 1,
            '\\ttechnic': 1,
            '\\xe2\\u20ac\\u201c': 7,
            '\\xe2\\u20ac\\xa2\\tanalysi': 1,
            '\\xe2\\u20ac\\xa2\\tarchitect': 2,
            '\\xe2\\u20ac\\xa2\\tcod': 2,
            '\\xe2\\u20ac\\xa2\\tdesign': 5,
            '\\xe2\\u20ac\\xa2\\tdevelop': 2,
            '\\xe2\\u20ac\\xa2\\tprovid': 1,
            'abil': 1,
            'access': 4,
            'accomplish': 1,
            'account': 1,
            'accur': 1,
            'achiev': 3,
            'across': 2,
            'act': 1,
            'action': 1,
            'activ': 1,
            'ad': 1,
            'adapt': 1,
            'address': 1,
            'administr': 1,
            'advis': 1,
            'agent': 1,
            'aggreg': 1,
            'agil': 5,
            'aka': 1,
            'analysi': 6,
            'angel': 1,
            'ant': 1,
            'apach': 1,
            'applic': 15,
            'approxim': 1,
            'april': 4,
            'architect': 12,
            'architectur': 9,
            'around': 1,
            'assign': 1,
            'audienc': 2,
            'autom': 2,
            'award': 1,
            'b2b': 3,
            'b2c': 3,
            'back': 2,
            'balanc': 1,
            'banner': 1,
            'base': 9,
            'basic': 2,
            'bea': 3,
            'behavior': 3,
            'best': 1,
            'bid': 1,
            'blueprint': 1,
            'bom': 1,
            'bonu': 1,
            'borland': 2,
            'bu': 2,
            'build': 1,
            'busi': 7,
            'c': 1,
            'c++': 2,
            'c/c++': 8,
            'calcul': 1,
            'campaign': 5,
            'capabl': 6,
            'captur': 1,
            'care': 1,
            'case': 4,
            'central': 1,
            'chairman': 1,
            'chang': 1,
            'chief': 1,
            'chosen': 1,
            'claim': 1,
            'class': 3,
            'client': 7,
            'client\\xe2\\u20ac\\u2122': 1,
            'clipper': 2,
            'cluster': 2,
            'coach': 2,
            'code': 10,
            'codebas': 4,
            'coher': 2,
            'collect': 1,
            'collector': 8,
            'command': 4,
            'commun': 3,
            'compani': 3,
            'complet': 1,
            'complic': 1,
            'compon': 9,
            'composit': 1,
            'concept': 2,
            'condit': 1,
            'configur': 1,
            'connect': 2,
            'consist': 2,
            'construct': 3,
            'consult': 2,
            'contact': 1,
            'contain': 1,
            'continu': 1,
            'contract': 18,
            'control': 1,
            'corba': 2,
            'core': 1,
            'corpor': 2,
            'cost': 2,
            'creat': 2,
            'critic': 1,
            'crm': 1,
            'current': 3,
            'custom': 9,
            'customiz': 1,
            'd.o.o.softwar': 2,
            'dao': 1,
            'data': 11,
            'databas': 7,
            'date': 1,
            'day': 1,
            'db2': 1,
            'dbase': 1,
            'dbm': 1,
            'dbms\\xe2\\u20ac\\xa2\\tdesign': 2,
            'dec': 1,
            'decemb': 1,
            'deep': 1,
            'defin': 1,
            'deliv': 4,
            'deliver': 1,
            'deliveri': 1,
            'deploy': 2,
            'describ': 1,
            'design': 20,
            'detail': 4,
            'develop': 23,
            'diagram': 3,
            'differ': 1,
            'disloc': 2,
            'distribut': 3,
            'divis': 4,
            'do': 1,
            'document': 6,
            'dom': 1,
            'domain': 2,
            'done': 2,
            'driven': 2,
            'driver': 1,
            'dtd': 1,
            'dynam': 1,
            'e-commerc': 2,
            'ejb': 9,
            'enabl': 2,
            'end': 4,
            'enforc': 1,
            'engin': 6,
            'enterpris': 3,
            'entiti': 1,
            'entri': 1,
            'environ': 2,
            'equip': 6,
            'erwin': 1,
            'event': 3,
            'excel': 1,
            'execut': 2,
            'experi': 1,
            'express': 1,
            'fab': 1,
            'facil': 2,
            'factori': 2,
            'financi': 2,
            'first': 1,
            'flavor': 1,
            'flex': 1,
            'flexibl': 4,
            'flow': 1,
            'follow': 1,
            'form': 2,
            'formula': 1,
            'framework': 7,
            'front': 2,
            'futur': 1,
            'ga': 1,
            'game': 2,
            'gather': 1,
            'gener': 3,
            'goal': 1,
            'gof': 2,
            'gold': 1,
            'graph': 1,
            'greatest': 1,
            'grid': 3,
            'ground': 2,
            'group': 1,
            'group\\tsenior': 2,
            'group\\ttechn': 3,
            'gui': 4,
            'handheld': 1,
            'handler': 1,
            'hardwar': 1,
            'health': 1,
            'help': 1,
            'high': 3,
            'high-level': 1,
            'highli': 2,
            'hoc': 1,
            'horizont': 1,
            'hour': 1,
            'hp-ux': 2,
            'html': 1,
            'http': 1,
            'ibm': 1,
            'ii': 1,
            'ilog/jrul': 2,
            'implement': 7,
            'ina': 1,
            'inc.': 3,
            'includ': 1,
            'inform': 1,
            'initi': 1,
            'instal': 2,
            'integr': 6,
            'interact': 2,
            'interfac': 4,
            'internet': 4,
            'introduc': 1,
            'invest': 1,
            'involv': 1,
            'issu': 3,
            'j2ee': 5,
            'januari': 1,
            'java': 21,
            'jm': 4,
            'jsp': 2,
            'juli': 2,
            'june': 3,
            'junit': 1,
            'knowledg': 1,
            'lan': 2,
            'languag': 7,
            'lantast': 3,
            'layer': 2,
            'lead': 2,
            'leader': 2,
            'legaci': 6,
            'light': 1,
            'line': 2,
            'linux': 3,
            'lo': 1,
            'logic': 2,
            'loyalti': 5,
            'mainfram': 2,
            'manag': 7,
            'manufactur': 1,
            'map': 1,
            'march': 1,
            'market': 4,
            'materi': 1,
            'maven': 1,
            'maxim': 1,
            'maximum': 1,
            'may': 2,
            'me': 2,
            'member': 1,
            'mentor': 2,
            'messag': 8,
            'meta': 1,
            'methodolog': 5,
            'middl': 1,
            'middlewar': 1,
            'migrat': 2,
            'million': 4,
            'mine': 1,
            'mission': 1,
            'mississauga': 2,
            'mmo': 1,
            'mo': 2,
            'model': 7,
            'modem': 1,
            'modul': 1,
            'modular': 1,
            'monitor': 1,
            'mq': 2,
            'multi': 2,
            'multilingu': 1,
            'multipl': 1,
            'mvc': 2,
            'mysql': 1,
            'nation': 1,
            'new': 3,
            'no': 1,
            'non': 1,
            'novel': 1,
            'object': 3,
            'octob': 2,
            'oil': 3,
            'omniorb': 2,
            'onlin': 1,
            'oo': 1,
            'oper': 3,
            'oracl': 4,
            'order': 4,
            'owner': 1,
            'p2p': 2,
            'page': 2,
            'pair': 2,
            'pars': 1,
            'part': 5,
            'partner': 1,
            'path': 1,
            'pattern': 4,
            'per': 3,
            'perform': 2,
            'perman': 1,
            'phase': 2,
            'pilot': 1,
            'plan': 2,
            'plotter': 2,
            'plug-in': 2,
            'po': 1,
            'possibl': 1,
            'practic': 1,
            'prefer': 1,
            'prepar': 1,
            'present': 5,
            'previou': 1,
            'pri': 2,
            'primari': 1,
            'process': 5,
            'product': 11,
            'profil': 1,
            'program': 3,
            'progress': 3,
            'project': 7,
            'promot': 1,
            'proper': 3,
            'protocol': 3,
            'provid': 6,
            'proxi': 4,
            'publish': 1,
            'ration': 10,
            'real': 1,
            'record': 1,
            'red': 1,
            'refineri': 1,
            'regard': 1,
            'relev': 1,
            'rendezv': 6,
            'report': 1,
            'repres': 1,
            'requir': 6,
            'resourc': 1,
            'respons': 2,
            'rest': 1,
            'reus': 1,
            'reusabl': 1,
            'review': 2,
            'reward': 4,
            'right': 1,
            'rmi': 1,
            'roi': 1,
            'role': 1,
            'rose': 9,
            'rule': 1,
            'run': 1,
            'rup': 1,
            'rv': 1,
            'scalabl': 3,
            'schedul': 1,
            'scope': 1,
            'score': 1,
            'script': 1,
            'scrum': 1,
            'sdk': 1,
            'sdlc': 1,
            'search': 1,
            'secur': 1,
            'segment': 1,
            'self': 1,
            'semiconductor': 4,
            'send': 1,
            'septemb': 1,
            'sequenc': 2,
            'serv': 1,
            'server': 11,
            'servic': 4,
            'servlet': 2,
            'session': 1,
            'set': 1,
            'shorten': 1,
            'side': 3,
            'site': 2,
            'soa': 7,
            'socket': 2,
            'softwar': 9,
            'solut': 18,
            'sophist': 1,
            'sourc': 1,
            'specif': 2,
            'spi': 1,
            'spring': 2,
            'stage': 1,
            'standard': 1,
            'starteam': 1,
            'state': 3,
            'statement': 2,
            'static': 1,
            'station': 2,
            'statu': 1,
            'stori': 2,
            'strateg': 1,
            'structur': 3,
            'strut': 3,
            'studio': 2,
            'subject': 1,
            'subscrib': 1,
            'success': 2,
            'suffici': 1,
            'support': 2,
            'swing': 1,
            'synchron': 1,
            'system': 15,
            'tactic': 1,
            'talk': 1,
            'target': 2,
            'task': 2,
            'tcp/ip': 4,
            'tdd': 3,
            'teach': 1,
            'team': 5,
            'technic': 2,
            'technolog': 4,
            'telecommut': 1,
            'thin': 2,
            'tibco': 4,
            'tie': 1,
            'tier': 7,
            'tight': 1,
            'time': 4,
            'tomcat': 1,
            'tool': 1,
            'topic': 1,
            'track': 2,
            'tracker': 1,
            'traffic': 2,
            'transact': 2,
            'transfer': 2,
            'transit': 1,
            'translat': 1,
            'transport': 2,
            'two': 1,
            'tx': 1,
            'uml': 7,
            'underli': 1,
            'unit': 2,
            'unix': 1,
            'upgrad': 1,
            'upper': 1,
            'us': 1,
            'usag': 1,
            'usd': 1,
            'use': 21,
            'user': 4,
            'util': 3,
            'variou': 3,
            'vendor': 1,
            'version': 1,
            'vertic': 1,
            'via': 4,
            'visual': 4,
            'vm': 2,
            'warehous': 1,
            'web': 2,
            'weblog': 5,
            'webmethod': 3,
            'webspher': 1,
            'week': 1,
            'window': 3,
            'winner': 1,
            'without': 1,
            'work': 1,
            'workflow': 4,
            'write': 1,
            'www': 1,
            'xml': 12,
            'xp': 1,
            'xsd': 2,
            'xsl': 3,
            'xslt': 1,
            'year': 2,
            'yr.': 14}),
  'M'),
 (FreqDist({'10': 1,
            'also': 1,
            'design': 1,
            'freelanc': 1,
            'job': 1,
            'last': 1,
            'photograph': 1,
            'sincer': 1,
            'still': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'30': 1,
            '8-10': 1,
            'also': 1,
            'approv': 1,
            'around': 1,
            'asset': 1,
            'australia': 1,
            'case': 1,
            'chang': 1,
            'client': 3,
            'cliental': 1,
            'commerci': 3,
            'compani': 1,
            'deliver': 1,
            'depend': 1,
            'dvd': 2,
            'either': 1,
            'etc': 1,
            'file': 2,
            'ftp': 1,
            'hour': 1,
            'kept': 1,
            'loop': 1,
            'may': 1,
            'music': 1,
            'outsourc': 1,
            'oversea': 1,
            'prepar': 1,
            'product': 1,
            'project': 1,
            'receiv': 1,
            'requir': 1,
            'script': 1,
            'sec': 1,
            'send': 1,
            'sent': 1,
            'short': 1,
            'skype': 1,
            'specialis': 1,
            'tape': 1,
            'televis': 1,
            'throughout': 1,
            'turn': 1,
            'upload': 1,
            'use': 1,
            'variou': 1,
            'view': 1,
            'vo': 1,
            'whole': 1,
            'work': 1}),
  'M'),
 (FreqDist({'13': 1,
            'also': 2,
            'armi': 1,
            'art': 2,
            'b.f.a': 1,
            'background': 1,
            'banner': 1,
            'brochur': 1,
            'busi': 1,
            'card': 1,
            'combat': 1,
            'craft': 1,
            'current': 1,
            'data': 1,
            'design': 3,
            'digit': 1,
            'earn': 1,
            'ebay': 1,
            'edit': 1,
            'enhanc': 1,
            'entri': 1,
            'etc..': 2,
            'extra': 1,
            'fine': 1,
            'full': 1,
            'graphic': 1,
            'i.e': 1,
            'includ': 1,
            'inform': 1,
            'logo': 1,
            'manipul': 1,
            'photo': 2,
            'photographi': 2,
            'poster': 1,
            'remov': 1,
            'sale': 1,
            'skill': 2,
            'spare': 1,
            'special': 1,
            'specialist': 1,
            'take': 1,
            'time': 2,
            'type': 1,
            'veteran': 1,
            'visual': 1,
            'web': 1,
            'will': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({"''": 2,
            "'s": 2,
            '-creat': 1,
            '-email': 2,
            '-familiar': 2,
            '-manag': 1,
            '1.': 2,
            '2.': 3,
            '3.': 2,
            '4.': 1,
            '5': 1,
            '6.': 1,
            '\\\\': 1,
            'account': 2,
            'achiev': 1,
            'also': 2,
            'alway': 2,
            'assist': 1,
            'attempt': 1,
            'award': 1,
            'ba': 1,
            'basic': 1,
            'behalf': 1,
            'best': 1,
            'blood': 1,
            'bpo': 1,
            'busi': 2,
            'cabl': 1,
            'card': 1,
            'chat': 1,
            'chess': 1,
            'chimp': 1,
            'client': 2,
            'comcast': 1,
            'compani': 1,
            'contact': 1,
            'continu': 1,
            'cover': 1,
            'creation': 2,
            'custom': 4,
            'data': 2,
            'decid': 1,
            'doc': 1,
            'document': 1,
            'dsl': 1,
            'ebay': 1,
            'ebook': 1,
            'email': 7,
            'employ': 2,
            'engin': 1,
            'english': 1,
            'etc': 1,
            'excel': 3,
            'experi': 1,
            'express': 1,
            'fast': 1,
            'feedback': 1,
            'folder': 1,
            'follow': 1,
            'forward': 1,
            'found': 1,
            'gather': 1,
            'give': 1,
            'goal': 1,
            'googl': 1,
            'graciela': 2,
            'great': 2,
            'handl': 1,
            'happi': 1,
            'hard': 1,
            'help': 1,
            'igor': 1,
            'import': 1,
            'inbox': 1,
            'industri': 1,
            'inform': 1,
            'infus': 1,
            'internet': 2,
            'ipad': 1,
            'live': 2,
            'look': 1,
            'mac': 1,
            'mail': 1,
            'mailchimp': 1,
            'make': 1,
            'manag': 1,
            'manila': 1,
            'market': 1,
            'materi': 1,
            'maxworkout': 2,
            'may': 1,
            'microsoft': 1,
            'month': 1,
            'offer': 1,
            'offic': 1,
            'one': 1,
            'opportun': 1,
            'paypal': 1,
            'pdf': 1,
            'pleas': 1,
            'powerpoint': 1,
            'process': 2,
            'profession': 1,
            'project': 1,
            'prospect': 1,
            'qualif': 1,
            'recommend': 1,
            'remark': 1,
            'repres': 1,
            'research': 3,
            'respons': 1,
            'review': 1,
            'scan': 1,
            'see': 1,
            'servic': 4,
            'smirnov': 1,
            'social': 1,
            'sociolog': 1,
            'softwar': 1,
            'sort': 1,
            'spreadsheet': 1,
            'stream': 1,
            'strive': 1,
            'strongli': 1,
            'suit': 1,
            'support': 11,
            'susan': 1,
            'technic': 1,
            'thunderbird': 1,
            'top': 1,
            'troubleshoot': 1,
            'truli': 1,
            'uk': 1,
            'univers': 1,
            'unwant': 1,
            'verizon': 1,
            'virtual': 1,
            'web': 1,
            'word': 1,
            'work': 5,
            'world': 1,
            'written': 1,
            'year': 1,
            'youtub': 1}),
  'F'),
 (FreqDist({"'m": 1,
            "'ve": 1,
            '--': 1,
            '1984.': 1,
            '2005': 1,
            'activ': 1,
            'also': 1,
            'anticip': 1,
            'applic': 1,
            'bank': 1,
            'bill': 1,
            'busi': 2,
            'came': 1,
            'client': 3,
            'convers': 1,
            'data': 1,
            'databas': 1,
            'db': 1,
            'dbm': 1,
            'develop': 2,
            'donat': 1,
            'educ': 1,
            'engin': 1,
            'estat': 1,
            'even': 1,
            'event': 1,
            'exist': 1,
            'experi': 1,
            'filemak': 2,
            'food': 1,
            'full': 1,
            'go': 1,
            'good': 1,
            'health': 1,
            'host': 1,
            'human': 1,
            'includ': 1,
            'inform': 1,
            'insur': 1,
            'ipad': 1,
            'iphon': 1,
            'link': 1,
            'manag': 2,
            'market': 1,
            'migrat': 1,
            'need': 1,
            'network': 1,
            'new': 1,
            'odbc': 1,
            'plu': 1,
            'pretti': 1,
            'rang': 1,
            'real': 1,
            'redesign': 1,
            'remot': 1,
            'repair': 1,
            'resourc': 1,
            'scratch': 1,
            'self-mad': 1,
            'sinc': 2,
            'small': 1,
            'sql': 1,
            'stand-alon': 1,
            'student': 1,
            'system': 3,
            'thing': 1,
            'thought': 1,
            'time': 1,
            'track': 1,
            'troubleshoot': 1,
            'upgrad': 2,
            'work': 2,
            'world': 1}),
  'M'),
 (FreqDist({'apach': 1,
            'bind': 1,
            'build': 1,
            'cisco': 2,
            'cpanel': 1,
            'dhcp': 2,
            'environ': 1,
            'equip': 1,
            'exim': 1,
            'experi': 1,
            'firewal': 1,
            'hewlett-packard': 1,
            'hp': 1,
            'ibm': 1,
            'iproute2': 1,
            'iptabl': 1,
            'kernel': 1,
            'linux': 1,
            'mainten': 1,
            'mysql': 1,
            'network': 1,
            'offic': 1,
            'oop': 1,
            'open': 1,
            'openvpn': 1,
            'pix': 1,
            'plesk': 1,
            'postfix': 1,
            'ppp': 1,
            'pptp': 1,
            'procurv': 1,
            'raid': 2,
            'samba': 1,
            'sendmail': 1,
            'soft': 1,
            'ssh': 1,
            'switch': 1,
            'technolog': 1,
            'vlan': 1,
            'vpn': 1,
            'webspher': 1,
            'whm': 1,
            'wifi': 1}),
  'M'),
 (FreqDist({"''": 2,
            '.now': 1,
            '``': 2,
            'assur': 1,
            'base': 1,
            'engin': 1,
            'inform': 1,
            'largest': 1,
            'master': 1,
            'multin': 1,
            'name': 1,
            'norway': 1,
            'organ': 1,
            'pakistan': 1,
            'punjab': 1,
            'qualiti': 1,
            'softwar': 1,
            'technolog': 1,
            'univers': 2,
            'work': 1}),
  'M'),
 (FreqDist({'apart': 1,
            'attest': 1,
            'collabor': 1,
            'commun': 1,
            'cooper': 1,
            'design': 1,
            'freelanc': 1,
            'graphic': 1,
            'great': 1,
            'high': 1,
            'person': 1,
            'pride': 1,
            'provid': 1,
            'qualiti': 1,
            'rang': 1,
            'review': 1,
            'servic': 1,
            'set': 1,
            'skill': 1,
            'take': 1,
            'transcript': 1,
            'work': 1,
            'write': 1}),
  'F'),
 (FreqDist({'carrier': 1,
            'case': 1,
            'comput': 1,
            'consid': 1,
            'debug': 1,
            'explor': 1,
            'flow': 1,
            'give': 1,
            'help': 1,
            'inspir': 1,
            'interest': 1,
            'knowledg': 1,
            'network': 1,
            'new': 1,
            'optim': 1,
            'possibl': 1,
            'process': 1,
            'program': 1,
            'skill': 1}),
  'F'),
 (FreqDist({'6': 1,
            'brochur': 1,
            'busi': 1,
            'calendar': 1,
            'card': 1,
            'dealt': 1,
            'design': 2,
            'etc': 1,
            'graphic': 1,
            'includ': 1,
            'logo': 1,
            'menu': 1,
            'project': 1,
            'variou': 1,
            'work': 1,
            'year': 1}),
  'F'),
 (FreqDist({"'m": 3,
            'advanc': 1,
            'aim': 1,
            'attent': 1,
            'attitud': 1,
            'comfort': 1,
            'creation': 1,
            'cross': 1,
            'css': 1,
            'design': 2,
            'desir': 1,
            'detail': 1,
            'develop': 1,
            'developer.i': 1,
            'developmenti': 1,
            'dive': 1,
            'exist': 1,
            'experienc': 1,
            'eye': 1,
            'featur': 1,
            'focu': 2,
            'freelanc': 3,
            'front-end': 2,
            'grow': 1,
            'highli': 1,
            'html': 1,
            'implement': 1,
            'interfac': 1,
            'javascript': 1,
            'keen': 1,
            'latest': 1,
            'learn': 1,
            'locat': 1,
            'look': 2,
            'new': 1,
            'onlin': 1,
            'opportun': 1,
            'part': 1,
            'passion': 1,
            'platform': 1,
            'posit': 1,
            'profici': 1,
            'respons': 1,
            'scss': 1,
            'special': 1,
            'stack': 1,
            'sweden': 1,
            'team-play': 1,
            'technolog': 2,
            'ui': 1,
            'ui-': 1,
            'user': 2,
            'web': 3,
            'work': 3}),
  'F'),
 (FreqDist({'lot': 1, 'time': 1, 'work': 1}), 'M'),
 (FreqDist({'30-40': 1,
            'data': 1,
            'entri': 1,
            'experi': 1,
            'job': 1,
            'speed': 1,
            'two': 1,
            'wpm.i': 1,
            'year': 1}),
  'F'),
 (FreqDist({'alway': 1,
            'design': 1,
            'field': 1,
            'handl': 1,
            'new': 1,
            'passion': 1,
            'relat': 1,
            'softwar': 1,
            'things.i': 1,
            'tri': 2,
            'type': 1,
            'websit': 1,
            'whether': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'m": 1,
            "'re": 1,
            "'s": 2,
            '24': 1,
            'american': 2,
            'born': 1,
            'charg': 1,
            'deal': 1,
            'depend': 1,
            'difficult': 1,
            'english': 1,
            'everyth': 1,
            'get': 1,
            'go': 1,
            'hour': 1,
            'journalist': 1,
            'littl': 1,
            'nativ': 2,
            'pay': 1,
            'perfect': 1,
            'project': 1,
            'promis': 1,
            'seo': 1,
            'server': 1,
            'speaker': 1,
            'turnaround': 1,
            'work': 2,
            'writer': 1}),
  'M'),
 (FreqDist({'10': 1,
            'build': 1,
            'engin': 1,
            'etc': 1,
            'experi': 1,
            'link': 1,
            'manag': 1,
            'market': 1,
            'ppc': 1,
            'relat': 1,
            'search': 1,
            'seo': 1,
            'submiss': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'10': 1,
            'comput': 3,
            'data': 1,
            'design': 1,
            'done': 2,
            'entri': 1,
            'last': 1,
            'oper': 1,
            'relat': 1,
            'small': 1,
            'work': 3,
            'year': 1}),
  'M'),
 (FreqDist({"'ve": 1,
            '...': 1,
            '8': 1,
            'artist': 1,
            'capabl': 1,
            'commonli': 1,
            'custom': 1,
            'design': 1,
            'experienc': 1,
            'finish': 2,
            'fun': 1,
            'graphic': 1,
            'handl': 1,
            'help': 1,
            'job': 1,
            'lot': 1,
            'nice': 1,
            'past': 1,
            'per': 1,
            'pressur': 1,
            'provid': 1,
            'reason': 1,
            'task': 1,
            'that': 1,
            'thing': 1,
            'togeth': 1,
            'use': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'copywrit': 1,
            'develop': 1,
            'internet': 1,
            'love': 1,
            'music': 1,
            'web': 1}),
  'M'),
 (FreqDist({'comput': 1, 'graduat': 1, 'scienc': 1}), 'F'),
 (FreqDist({'4': 1, 'seo': 1, 'year': 1}), 'M'),
 (FreqDist({'15': 1,
            'base': 1,
            'comput': 1,
            'expertis': 1,
            'mysql': 1,
            'professor': 1,
            'scienc': 1,
            'sql': 1,
            'web': 1,
            'year': 1}),
  'M'),
 (FreqDist({'50': 1,
            'activ': 2,
            'anim': 1,
            'book': 1,
            'cartoon': 1,
            'classic': 1,
            'comic': 1,
            'custom': 1,
            'design': 1,
            'digit': 1,
            'done': 1,
            'edit': 1,
            'especi': 1,
            'fast': 1,
            'graphic': 1,
            'illustr': 1,
            'job': 1,
            'manag': 1,
            'music': 1,
            'need': 1,
            'parallel': 1,
            'photo': 1,
            'possibl': 1,
            'princip': 1,
            'publish': 1,
            'rel': 1,
            'sever': 1,
            'soon': 1,
            'strip': 1,
            'techniqu': 1,
            'use': 1,
            'video': 1,
            'work': 2}),
  'M'),
 (FreqDist({'everyon': 1,
            'hello': 1,
            'k': 1,
            'onlin': 1,
            'p': 1,
            'servic': 1,
            'support': 1,
            'tri': 1,
            'via': 1,
            'welcom': 1}),
  'M'),
 (FreqDist({'7': 1,
            'abl': 1,
            'accord': 1,
            'advanc': 1,
            'agil': 1,
            'ajax': 1,
            'angular': 2,
            'api': 1,
            'approach': 1,
            'avail': 1,
            'best': 1,
            'bootstrap': 1,
            'broad': 1,
            'budget': 1,
            'busi': 3,
            'client': 1,
            'code': 1,
            'codeignit': 1,
            'complex': 1,
            'css': 1,
            'design': 1,
            'develop': 4,
            'discuss': 1,
            'ebay': 1,
            'etc': 1,
            'experi': 1,
            'fb': 1,
            'feel': 1,
            'free': 1,
            'gambl': 1,
            'good': 1,
            'googl': 1,
            'grow': 1,
            'handi': 1,
            'help': 2,
            'hi': 1,
            'html': 1,
            'integr': 2,
            'ionic': 1,
            'javascript': 1,
            'job': 1,
            'joomla': 1,
            'jqueri': 1,
            'js': 2,
            'like': 1,
            'magento': 1,
            'mobil': 2,
            'mysql': 1,
            "n't": 1,
            'need': 1,
            'network': 1,
            'offer': 1,
            'opencart': 1,
            'paypal': 1,
            'phonegap': 1,
            'php': 1,
            'provid': 2,
            'servic': 2,
            'shoaib': 1,
            'shop': 1,
            'solut': 1,
            'solv': 1,
            'technolog': 1,
            'type': 2,
            'web': 2,
            'websit': 1,
            'wordpress': 1,
            'year': 1,
            'yii': 1,
            'yii2': 1,
            'zencart': 1}),
  'M'),
 (FreqDist({'5,000': 1,
            'attent': 2,
            'attract': 1,
            'audienc': 1,
            'blog': 1,
            'client': 3,
            'come': 1,
            'compani': 1,
            'consist': 1,
            'establish': 2,
            'forward': 1,
            'found': 1,
            'freelanc': 1,
            'full-tim': 1,
            'getafreelanc': 2,
            'grab': 1,
            'help': 1,
            'high': 1,
            'impact': 1,
            'inc.': 1,
            'individu': 1,
            'industri': 1,
            'interest': 1,
            'involv': 1,
            'kind': 1,
            'know': 1,
            'long-term': 1,
            'look': 1,
            'major': 1,
            'market': 1,
            'name': 1,
            'new': 2,
            'onlin': 2,
            'past': 1,
            'qualiti': 1,
            'relationship': 1,
            'reliabl': 1,
            'reput': 1,
            'retain': 1,
            'sampl': 1,
            'see': 1,
            'take': 1,
            'target': 1,
            'three': 2,
            'use': 1,
            'varieti': 1,
            'web': 1,
            'websit': 1,
            'wide': 1,
            'work': 3,
            'writer': 2,
            'year': 1}),
  'M'),
 (FreqDist({'5': 1,
            'almost': 1,
            'also': 1,
            'alway': 1,
            'bootstrap': 1,
            'browser': 1,
            'capabl': 1,
            'code': 1,
            'content': 1,
            'css3': 1,
            'design': 1,
            'develop': 3,
            'differ': 1,
            'excel': 1,
            'experi': 1,
            'factor': 1,
            'focus': 1,
            'html': 1,
            'independ': 1,
            'jqueri': 1,
            'keep': 1,
            'mind': 1,
            'php': 1,
            'product': 1,
            'refere': 1,
            'speak': 1,
            'standard': 2,
            'tool': 1,
            'w3c': 1,
            'web': 2,
            'websit': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'applic': 1,
            'are:1.': 1,
            'area': 1,
            'campu': 1,
            'data': 1,
            'development3': 1,
            'etl': 1,
            'expertis': 1,
            'peoplesoft': 1,
            'solut': 1,
            'websit': 1}),
  'M'),
 (FreqDist({'actual': 1,
            'also': 1,
            'android': 1,
            'command': 1,
            'expertis': 1,
            'good': 1,
            'hello': 1,
            'implement': 1,
            'iphon': 1,
            'job': 1,
            'jqueri': 1,
            'knowledg': 1,
            'learn': 2,
            'libgdx': 1,
            'like': 1,
            'mamun': 1,
            'mysql': 1,
            'phonegap': 1,
            'photoshop': 1,
            'php': 1,
            'program': 1,
            'want': 1}),
  'M'),
 (FreqDist({'2': 1,
            '4': 1,
            'around': 1,
            'develop': 1,
            'experi': 1,
            'framework': 1,
            'hibern': 1,
            'java': 1,
            'jsf': 1,
            'knowledg': 1,
            'like': 1,
            'spring': 1,
            'strut': 1,
            'web': 2,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            "'s": 1,
            '5': 1,
            'area': 2,
            'around': 1,
            'compani': 3,
            'contribut': 1,
            'develop': 1,
            'employ': 2,
            'experi': 1,
            'expertis': 1,
            'field': 1,
            'great': 1,
            'hello': 1,
            'hire': 1,
            'increas': 1,
            'knowledg': 1,
            'mani': 1,
            'profession': 1,
            'profit': 1,
            'provid': 1,
            'readi': 1,
            'skill': 1,
            'substanti': 1,
            'today': 1,
            'web': 1,
            'work': 1,
            'world': 1,
            'year': 1}),
  'M'),
 (FreqDist({'2017': 3,
            'also': 1,
            'architect': 1,
            'basic': 1,
            'calcul': 1,
            'conceptu': 1,
            'design': 3,
            'detail': 1,
            'engin': 1,
            'friend': 1,
            'hello': 1,
            'inventor': 1,
            'kind': 1,
            'knowledg': 1,
            'name': 1,
            'naval': 1,
            'need': 1,
            'pro': 1,
            'profession': 1,
            'provid': 1,
            'rhino': 1,
            'servic': 1,
            'simul': 1,
            'sketch': 1,
            'softwar': 1,
            'solidwork': 1,
            'start': 1}),
  'M'),
 (FreqDist({"'m": 3,
            "'ve": 1,
            'account': 1,
            'activ': 1,
            'advertis': 1,
            'ago': 2,
            'anyth': 1,
            'area': 1,
            'australia': 1,
            'built': 1,
            'channel': 1,
            'cheer': 1,
            'contact': 1,
            'creation': 1,
            'creativ': 1,
            'deadlin': 1,
            'design': 1,
            'detail': 2,
            'differ': 1,
            'english': 1,
            'experi': 1,
            'extens': 1,
            'field': 1,
            'film': 2,
            'freelanc': 2,
            'gussysound': 2,
            'happi': 1,
            'hello': 1,
            'includ': 1,
            'love': 1,
            'made': 1,
            'main': 1,
            'mean': 1,
            'mix': 1,
            'music': 2,
            "n't": 2,
            'need': 1,
            'new': 2,
            'pleas': 1,
            'post': 1,
            'pressur': 1,
            'product': 2,
            'project': 1,
            'quiet': 1,
            'radio': 1,
            'record': 1,
            'sampl': 1,
            'screen': 1,
            'show': 1,
            'small': 1,
            'sound': 5,
            'specialis': 1,
            'still': 1,
            'studio': 2,
            'tv': 2,
            'voiceov': 1,
            'web': 1,
            'work': 3,
            'would': 1,
            'year': 2}),
  'F'),
 (FreqDist({'2010': 1,
            '3d': 1,
            'agreement': 1,
            'client': 1,
            'compens': 1,
            'complet': 1,
            'convert': 1,
            'deposit': 1,
            'design': 2,
            'desktop': 2,
            'document': 1,
            'domain': 1,
            'experi': 1,
            'flash': 1,
            'govern': 1,
            'graphic': 2,
            'half': 1,
            'hardwar': 1,
            'host': 1,
            'intro': 1,
            'mike': 1,
            'model': 1,
            'name': 1,
            'offer': 1,
            'paypal': 1,
            'privat': 1,
            'project': 1,
            'provid': 1,
            'publish': 2,
            'requir': 1,
            'sector': 1,
            'softwar': 1,
            'support': 1,
            'ten': 1,
            'total': 1,
            'train': 1,
            'web': 2,
            'websit': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 1,
            "'ve": 2,
            'bangladesh': 1,
            'complet': 1,
            'comput': 1,
            'degre': 1,
            'freelanc': 1,
            'good': 1,
            'graduat': 1,
            'hi': 1,
            'honest': 1,
            'knowledg': 1,
            'mr.': 1,
            'post': 1,
            'want': 1}),
  'M'),
 (FreqDist({'advoc': 2,
            'aim': 1,
            'benefit': 1,
            'client': 1,
            'elev': 1,
            'enjoy': 1,
            'get': 1,
            'greater': 1,
            'institut': 1,
            'invest': 1,
            'joy': 1,
            'make': 1,
            'peopl': 1,
            'profession': 1,
            'see': 1,
            'sure': 1,
            'valu': 2,
            'work': 1,
            'write': 2,
            'writer': 1,
            'written': 1}),
  'M'),
 (FreqDist({'access': 1,
            'arm': 1,
            'attend': 1,
            'control': 1,
            'detector': 1,
            'develop': 1,
            'dsp': 1,
            'etc': 1,
            'ga': 1,
            'lock': 1,
            'microcontrol': 1,
            'msp430': 1,
            'platform': 1,
            'program': 1,
            'safe': 1,
            'time': 1,
            'use': 1}),
  'M'),
 (FreqDist({'administr': 2,
            'applic': 2,
            'area': 1,
            'base': 1,
            'comput': 1,
            'databas': 1,
            'ibm': 1,
            'internet': 1,
            'like': 1,
            'linux': 2,
            'network': 2,
            'offic': 1,
            'oracl': 1,
            'relat': 1,
            'server': 3,
            'skill': 1,
            'storag': 1,
            'system': 1,
            'troubleshoot': 1,
            'window': 1}),
  'M'),
 (FreqDist({'4': 1,
            '9': 1,
            'across': 1,
            'adword': 1,
            'also': 1,
            'bing': 1,
            'busi': 1,
            'campaign': 1,
            'client': 1,
            'clients.i': 1,
            'close': 1,
            'ecommerc': 1,
            'facebook': 1,
            'googl': 1,
            'manag': 1,
            'mani': 1,
            'market': 1,
            'media': 1,
            'ppc': 1,
            'self': 1,
            'sem': 1,
            'seo': 1,
            'shopifi': 1,
            'sinc': 2,
            'social': 1,
            'starter': 1,
            'success': 1,
            'work': 2,
            'world': 1,
            'year': 2}),
  'F'),
 (FreqDist({"'s": 1,
            'hobbi': 1,
            'love': 1,
            'passion': 1,
            'photoshop': 1,
            'profess': 1,
            'work': 1}),
  'F'),
 (FreqDist({'2008': 1,
            'ajax': 1,
            'align': 1,
            'also': 1,
            'angularj': 1,
            'api': 2,
            'applic': 2,
            'backbonej': 1,
            'base': 2,
            'bitbucket': 1,
            'build': 1,
            'c': 1,
            'c++': 1,
            'cakephp': 1,
            'challeng': 1,
            'clean': 1,
            'cloud': 1,
            'code': 2,
            'codeignit': 1,
            'compet': 1,
            'concentr': 1,
            'core': 1,
            'css3': 1,
            'databas': 1,
            'demonstr': 1,
            'desktop': 1,
            'develop': 4,
            'effici': 1,
            'emberj': 1,
            'end': 1,
            'enthusiast': 1,
            'execut': 1,
            'experi': 1,
            'experienc': 1,
            'familiar': 1,
            'fluent': 1,
            'framework': 1,
            'front': 1,
            'git': 1,
            'googl': 1,
            'hobbi': 1,
            'html5': 1,
            'implement': 1,
            'includ': 1,
            'integr': 1,
            'interact': 1,
            'interest': 1,
            'java': 1,
            'jqueri': 1,
            'languag': 2,
            'larg': 1,
            'love': 1,
            'manag': 2,
            'mobil': 1,
            'mssql': 1,
            'mvc': 1,
            'mysql': 1,
            'new': 1,
            'nodej': 1,
            'one': 2,
            'other': 1,
            'php': 1,
            'problem': 1,
            'python': 1,
            'quick': 1,
            'rdbm': 1,
            'recent': 2,
            'relat': 1,
            'rest': 1,
            'script': 1,
            'similar': 1,
            'sinc': 1,
            'skill': 2,
            'small': 1,
            'solv': 1,
            'soon': 1,
            'sourc': 2,
            'strong': 1,
            'svn': 1,
            'system': 1,
            'task': 1,
            'technolog': 1,
            'tortois': 1,
            'toward': 1,
            'use': 1,
            'variou': 1,
            'vb': 1,
            'web': 1,
            'whmc': 1,
            'wordpress': 1,
            'work': 1,
            'zend': 1}),
  'M'),
 (FreqDist({'...': 1,
            '8': 1,
            'analyt': 1,
            'anyth': 1,
            'databas': 2,
            'debug': 1,
            'els': 1,
            'experi': 1,
            'framework': 1,
            'help': 1,
            'includ': 1,
            'individu': 1,
            'manag': 1,
            'mysql': 1,
            'oop': 1,
            'optim': 1,
            'php': 2,
            'program': 2,
            'servic': 1,
            'skill': 5,
            'strong': 2,
            'web': 1,
            'xml': 1,
            'year': 1}),
  'F'),
 (FreqDist({'acm': 1,
            'address': 1,
            'adob': 1,
            'advertis': 1,
            'alway': 1,
            'applic': 1,
            'band': 1,
            'big': 1,
            'bryan': 1,
            'buffett': 2,
            'cabl': 1,
            'client': 1,
            'comput': 1,
            'creativ': 1,
            'cs5': 4,
            'cynthia': 1,
            'deadlin': 1,
            'design': 2,
            'dreamweav': 1,
            'eddi': 1,
            'educ': 1,
            'enabl': 1,
            'entrepreneur': 1,
            'experi': 1,
            'field': 1,
            'fluent': 1,
            'focu': 1,
            'gain': 1,
            'graphic': 1,
            'hall': 1,
            'houston': 1,
            'illustr': 1,
            'indesign': 1,
            'industry-standard': 1,
            'innov': 1,
            'jimmi': 1,
            'john': 1,
            'keith': 1,
            'knowledg': 3,
            'layout': 1,
            'lifestyl': 1,
            'lift': 1,
            'live': 1,
            'love': 1,
            'luke': 2,
            'mac': 1,
            'machin': 1,
            'margaritavil': 3,
            'margarittvil': 2,
            'may': 1,
            'meet': 1,
            'microsoft': 1,
            'money': 1,
            'multipl': 1,
            'need': 1,
            'offic': 1,
            'outdoor': 1,
            'person': 1,
            'phil': 1,
            'photoshop': 1,
            'platform': 1,
            'prepress': 1,
            'pride': 1,
            'principl': 1,
            'print': 1,
            'processes.i': 1,
            'produc': 1,
            'product': 1,
            'project': 1,
            'radio': 1,
            'record': 2,
            'retail': 1,
            'savannah': 1,
            'softwar': 1,
            'st': 1,
            'stone': 1,
            'take': 1,
            'theft': 1,
            'trent': 1,
            'understand': 1,
            'uniqu': 1,
            'variou': 1,
            'view': 1,
            'walker': 1,
            'websit': 1,
            'well': 1,
            'window': 1,
            'wood': 1,
            'work': 2}),
  'M'),
 (FreqDist({'7': 1,
            'experienc': 1,
            'framework': 1,
            'hello': 1,
            'php': 1,
            'profession': 1,
            'variou': 1,
            'wordpress': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'ll": 1,
            "'m": 1,
            '...': 5,
            'actual': 2,
            'applic': 1,
            'becom': 1,
            'best': 2,
            'call': 4,
            'dream': 1,
            'famili': 1,
            'famou': 1,
            'filmmak': 1,
            'first': 1,
            'foremost': 1,
            'friend': 2,
            'geek': 3,
            'get': 1,
            'girlfriend': 1,
            'good': 3,
            'hand': 1,
            'left': 1,
            'littl': 1,
            'one': 2,
            'parent': 1,
            'partner': 1,
            'perfect': 1,
            'person': 1,
            'pixel': 2,
            'pride': 1,
            'push': 1,
            'pusher': 1,
            'right': 1,
            'spend': 1,
            'time': 3,
            'tri': 3,
            'well': 1,
            'whatev': 2,
            'young': 1}),
  'M'),
 (FreqDist({'5+': 1,
            'applic': 1,
            'arrang': 1,
            'asp.net*': 1,
            'c': 1,
            'chanc': 1,
            'css*': 1,
            'develop': 1,
            'excel': 2,
            'experi': 1,
            'expertis': 1,
            'give': 1,
            'hi': 1,
            'html*': 1,
            'java': 1,
            'manag': 1,
            'ms': 1,
            'php': 1,
            'project': 1,
            'prove': 1,
            'qualiti': 1,
            'us': 1,
            'vb.net': 1,
            'web/desktop': 1,
            'wordpress*': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'data': 1,
            'entri': 1,
            'name': 1,
            'onlin': 1,
            'sharma': 1,
            'work': 2}),
  'M'),
 (FreqDist({'5yr': 1,
            'banner': 1,
            'brainstorm': 1,
            'brand': 1,
            'check': 1,
            'consum': 1,
            'design': 4,
            'edit': 1,
            'experi': 1,
            'field': 2,
            'format': 1,
            'furnitur': 2,
            'good': 1,
            'graphic': 1,
            'hand': 1,
            'heavi': 1,
            'hi': 1,
            'kind': 2,
            'let': 1,
            'light': 1,
            'logic': 1,
            'logo': 1,
            'love': 2,
            'machineri': 1,
            'mani': 1,
            'photoshop': 1,
            'problem': 1,
            'product': 1,
            'project': 2,
            'projects.i': 1,
            'relat': 2,
            'sketch': 1,
            'solv': 1,
            'thing': 1,
            'time': 1,
            'tri': 1,
            'vector': 1,
            'work': 2}),
  'M'),
 (FreqDist({'2005': 1,
            '3.0': 1,
            '8': 1,
            'actionscript': 1,
            'agil': 1,
            'air': 1,
            'ask': 1,
            'believ': 1,
            'commun': 1,
            'confid': 1,
            'creat': 2,
            'css2': 1,
            'css3': 1,
            'develop': 3,
            'environ': 1,
            'espa\\xc3\\xb1ol': 1,
            'flash': 2,
            'flex': 1,
            'goal': 1,
            'good': 1,
            'guidanc': 1,
            'help': 2,
            'html4': 1,
            'html5': 2,
            'improv': 2,
            'ingl\\xc3\\xa9': 1,
            'interfac': 1,
            'javascript': 2,
            'jqueri': 1,
            'leadership': 1,
            'main': 1,
            'mani': 1,
            'methodolog': 1,
            'motiv': 1,
            'multicultur': 1,
            'multidisciplinari': 1,
            'need': 1,
            'perform': 1,
            'php': 2,
            'product': 1,
            'provid': 1,
            'qualiti': 1,
            'rich': 1,
            'self-taught': 1,
            'sinc': 1,
            'skill': 1,
            'solid': 1,
            'standard': 1,
            'strength': 1,
            'team': 3,
            'tie': 1,
            'use': 1,
            'user': 1,
            'web': 3,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'applic': 1, 'develop': 1, 'india': 1, 'mobil': 1, 'wed': 1}),
  'M'),
 (FreqDist({'develop': 1,
            'excel': 1,
            'illustr': 1,
            'ms': 1,
            'oracl': 1,
            'photoshop': 1,
            'word': 1}),
  'M'),
 (FreqDist({'applic': 1,
            'power': 1,
            'readi': 1,
            'serv': 1,
            'web': 1,
            'yii': 1}),
  'M'),
 (FreqDist({'15': 1,
            '8': 1,
            'combin': 1,
            'design': 1,
            'experi': 1,
            'graphic': 1,
            'internet': 1,
            'marketing.w': 1,
            'peopl': 1,
            'php': 2,
            'program': 1,
            'seo': 1,
            'skill': 1,
            'team': 1,
            'wordpress': 2,
            'year': 1}),
  'M'),
 (FreqDist({'15': 1,
            'becom': 1,
            'busi': 2,
            'error': 1,
            'extrem': 1,
            'load': 1,
            'onlin': 2,
            'profici': 1,
            'trial': 1,
            'year': 1}),
  'M'),
 (FreqDist({'**': 1,
            '--': 4,
            '200': 1,
            '2004': 1,
            '2006': 1,
            'adword': 1,
            'also': 1,
            'android': 1,
            'app': 3,
            'beauti': 1,
            'best': 1,
            'chang': 1,
            'code': 1,
            'convert': 1,
            'css': 1,
            'custom': 1,
            'develop': 2,
            'drupal': 1,
            'ecommerc': 1,
            'engin': 1,
            'ensur': 1,
            'ethic': 1,
            'even': 1,
            'first': 1,
            'guarante': 2,
            'happi': 2,
            'highli': 2,
            'hire': 1,
            'html': 1,
            'integr': 1,
            'internet': 1,
            'io': 1,
            'javascript': 1,
            'joomla': 1,
            'jqueri': 1,
            'laser': 1,
            'lead': 1,
            'learner': 1,
            'like': 1,
            'list': 1,
            'listen': 1,
            'made': 2,
            'magento': 1,
            'mani': 1,
            'market': 2,
            'mysql': 1,
            'neither': 1,
            'opencart': 1,
            'peopl': 1,
            'php': 1,
            'prefer': 1,
            'prestashop': 1,
            'profession': 1,
            'rank': 1,
            'rapidli': 1,
            'search': 1,
            'seo': 1,
            'sinc': 1,
            'site': 1,
            'smm': 1,
            'start': 1,
            'still': 1,
            'store': 1,
            'target': 1,
            'team': 1,
            'technolog': 1,
            'thing': 2,
            'top': 1,
            'tri': 1,
            'use': 1,
            'user': 1,
            'vb': 1,
            'web': 2,
            'websit': 1,
            'well': 1,
            'woocommerc': 1,
            'wordpress': 1,
            'work': 1,
            'zencart': 1}),
  'M'),
 (FreqDist({'area': 1,
            'brand': 1,
            'code': 1,
            'cs5': 1,
            'design': 3,
            'develop': 2,
            'dreamweav': 2,
            'firework': 1,
            'form': 1,
            'graphic': 1,
            'illustr': 1,
            'independ': 1,
            'joomla': 1,
            'logo': 1,
            'medium': 1,
            'mysql': 1,
            'part': 1,
            'photoshop': 1,
            'php': 1,
            'portfolio': 1,
            'ppc': 1,
            'primari': 1,
            'secur': 1,
            'sem': 1,
            'seo': 1,
            'site': 2,
            'strongest': 1,
            'team': 1,
            'use': 2,
            'web': 1,
            'work': 1,
            'written': 1}),
  'M'),
 (FreqDist({"'ll": 1,
            '6': 1,
            'also': 2,
            'angularj': 1,
            'app': 1,
            'autom': 1,
            'back-end': 1,
            'bootstrap': 1,
            'build': 1,
            'css': 1,
            'develop': 1,
            'differ': 1,
            'done': 1,
            'either': 1,
            'experi': 1,
            'expressj': 1,
            'front-end': 1,
            'full-tim': 1,
            'get': 1,
            'host': 1,
            'html5': 1,
            'javascript': 1,
            'librari': 1,
            'manag': 1,
            'mani': 1,
            'manual': 1,
            'need': 1,
            'node.j': 1,
            'offer': 2,
            'opencart': 1,
            'organ': 1,
            'php': 1,
            'profession': 1,
            'solut': 1,
            'special': 1,
            'technolog': 1,
            'test': 1,
            'variou': 1,
            'vp': 1,
            'web': 4,
            'websit': 1,
            'wordpress': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({"'m": 2,
            '50': 1,
            '6': 1,
            'account': 1,
            'also': 2,
            'board': 1,
            'captcha': 1,
            'chanc': 1,
            'compani': 1,
            'cpa': 1,
            'data': 2,
            'entri': 1,
            'even': 1,
            'everyon': 1,
            'exam': 1,
            'experi': 1,
            'financ': 1,
            'follow': 1,
            'free': 1,
            'freelanc': 1,
            'full': 1,
            'gaf': 1,
            'give': 1,
            'graduat': 1,
            'hard': 1,
            'hope': 1,
            'hour': 1,
            'instruct': 1,
            'manag': 1,
            'newbi': 1,
            'perfectionist': 1,
            'plan': 2,
            'plenti': 1,
            'previou': 1,
            'privat': 1,
            'review': 1,
            'take': 1,
            'thank': 1,
            'though': 1,
            'time': 1,
            'welcom': 1,
            'work': 3,
            'wpm': 1,
            'year': 1}),
  'F'),
 (FreqDist({"'m": 2,
            '.\\xe2\\u0153\\u201c': 3,
            '10+': 1,
            '1000+': 1,
            '12': 1,
            '\\xe2\\u0153\\u201c': 1,
            'ad': 1,
            'adob': 2,
            'anim': 4,
            'banner': 1,
            'brochur': 1,
            'bulk': 1,
            'busi': 1,
            'canva': 1,
            'card': 1,
            'client': 1,
            'complet': 2,
            'convers': 3,
            'css3': 1,
            'design': 7,
            'develop': 1,
            'edg': 1,
            'email': 1,
            'expert': 1,
            'file': 1,
            'finish': 4,
            'first': 1,
            'flash': 1,
            'flyer': 1,
            'freelanc': 1,
            'hard': 1,
            'html5': 2,
            'imposs': 1,
            'javascript': 1,
            'journey': 1,
            'land': 1,
            'long': 1,
            'long-term': 1,
            'mani': 1,
            'me.i': 1,
            'media': 1,
            'newslett': 1,
            'noth': 1,
            'page': 1,
            'partnership': 1,
            'passion': 1,
            'pdf': 1,
            'platform': 1,
            'poster': 1,
            'present': 1,
            'print': 1,
            'profession': 1,
            'project': 3,
            'rich': 1,
            'satisfact': 1,
            'special': 1,
            'success': 1,
            'svg': 1,
            'swf': 1,
            'take': 1,
            'team': 1,
            'websit': 1,
            'work': 2,
            'year': 1}),
  'M'),
 (FreqDist({'12': 1,
            'ad': 1,
            'adob': 2,
            'aftereffect': 1,
            'agenc': 1,
            'also': 1,
            'anim': 1,
            'anyth': 1,
            'around': 1,
            'asset': 1,
            'autodesk': 1,
            'avail': 1,
            'becam': 1,
            'budget': 1,
            'complet': 1,
            'cours': 1,
            'creation': 1,
            'day': 2,
            'design': 2,
            'develop': 1,
            'e-learn': 1,
            'edit': 1,
            'els': 1,
            'enjoy': 1,
            'everyon': 1,
            'experi': 1,
            'explain': 1,
            'freelanc': 1,
            'full-tim': 1,
            'glad': 1,
            'graphic': 2,
            'intern': 1,
            'intro': 1,
            'like': 1,
            'line': 1,
            'logo': 1,
            'maxon': 1,
            'maya': 1,
            'motion': 2,
            'much': 2,
            'network': 1,
            'next': 1,
            'night': 1,
            'normal': 1,
            'one': 1,
            'photoshop': 1,
            'plan': 1,
            'pretti': 1,
            'produc': 1,
            'project': 3,
            'relat': 1,
            'research': 1,
            'rockstar': 1,
            'schedul': 1,
            'special': 1,
            'storyboard': 1,
            'style': 1,
            'talk': 1,
            'that\\xe2\\u20ac\\u2122': 1,
            'throughout': 1,
            'train': 1,
            'tv': 1,
            'video': 4,
            'within': 1,
            'work': 3,
            'year': 2}),
  'M'),
 (FreqDist({'3': 1,
            'add': 1,
            'also': 1,
            'anoth': 1,
            'back': 1,
            'built': 1,
            'client': 2,
            'develop': 1,
            'end': 1,
            'environ': 1,
            'freelanc': 1,
            'function': 1,
            'good': 1,
            'jqueri': 1,
            'like': 3,
            'mani': 3,
            'mysql': 1,
            'onlin': 1,
            'php': 2,
            'php/mysql': 1,
            'reput': 1,
            'satisfi': 1,
            'servic': 1,
            'side': 1,
            'site': 1,
            'use': 2,
            'web': 1,
            'websit': 1,
            'work': 4,
            'year': 1}),
  'M'),
 (FreqDist({'applic': 1,
            'asp': 1,
            'bachelor': 1,
            'basic': 1,
            'comput': 1,
            'degre': 1,
            'desktop': 1,
            'g.': 1,
            'graduat': 1,
            'php': 1,
            'respect': 1,
            'scienc': 2,
            'special': 1,
            'use': 1,
            'visual': 1,
            'web': 1}),
  'M'),
 (FreqDist({'...': 1,
            '1': 1,
            '100': 1,
            'auto': 1,
            'cad': 1,
            'captur': 1,
            'cheapest': 1,
            'convers': 1,
            'currenc': 1,
            'current': 1,
            'diet': 1,
            'etc': 1,
            'excel': 1,
            'experi': 1,
            'follow': 1,
            'hat': 1,
            'lanka': 1,
            'lankan': 1,
            'project': 1,
            'provid': 1,
            'qualiti': 1,
            'rv': 1,
            'sale': 1,
            'seo': 1,
            'servic': 1,
            'sheet': 1,
            'sri': 2,
            'team': 1,
            'technolog': 1,
            'us': 1,
            'white': 1,
            'work': 2}),
  'M'),
 (FreqDist({'android': 1,
            'applic': 4,
            'best': 1,
            'care': 1,
            'contact': 1,
            'cross': 1,
            'detail': 1,
            'develop': 3,
            'entertain': 1,
            'expertis': 1,
            'extj': 1,
            'health': 1,
            'html5': 1,
            'industri': 2,
            'j2ee': 1,
            'limit': 1,
            'meet': 1,
            'mobil': 2,
            'mysql': 1,
            'passion': 2,
            'phonegap': 1,
            'platform': 1,
            'program': 1,
            'push': 1,
            'requir': 1,
            'sencha': 1,
            'serv': 1,
            'sever': 1,
            'special': 1,
            'sqllite': 1,
            'team': 1,
            'technic': 1,
            'technolog': 1,
            'till': 2,
            'titanium': 1,
            'touch': 1,
            'us': 2,
            'web': 2,
            'whose': 1,
            'work': 1}),
  'M'),
 (FreqDist({"'ve": 1,
            'compet': 1,
            'complet': 1,
            'contact': 1,
            'cours': 1,
            'enabl': 1,
            'experi': 1,
            'field': 1,
            'improv': 1,
            'increas': 1,
            'level': 1,
            'look': 1,
            'profession': 1,
            'spanish': 1,
            'subject': 1,
            'thank': 1,
            'translat': 1,
            'work': 1}),
  'F'),
 (FreqDist({'20': 1,
            'accord': 1,
            'also': 1,
            'civil': 2,
            'cost': 1,
            'draw': 1,
            'estim': 1,
            'experi': 1,
            'field': 1,
            'market': 1,
            'quantiti': 1,
            'rate': 1,
            'work': 1,
            'year': 1}),
  'M'),
 (FreqDist({'abil': 1,
            'adapt': 2,
            'administr': 1,
            'area': 1,
            'backup': 3,
            'central': 1,
            'challeng': 1,
            'citrix': 1,
            'commerc': 1,
            'commun': 1,
            'configur': 1,
            'constantli': 1,
            'core': 1,
            'design': 1,
            'dhcp': 1,
            'directori': 1,
            'dynam': 1,
            'engin': 1,
            'environ': 1,
            'exec': 2,
            'experi': 1,
            'file': 1,
            'ftp': 1,
            'function': 1,
            'greatest': 1,
            'handi': 1,
            'http': 2,
            'immedi': 1,
            'isa': 1,
            'learn': 1,
            'new': 2,
            'obtain': 1,
            'offic': 1,
            'posit': 1,
            'program': 1,
            'project': 1,
            'quick': 1,
            'revit': 1,
            'rout': 1,
            'server': 4,
            'servermicrosoft': 3,
            'sharepoint': 1,
            'situat': 1,
            'skill': 1,
            'sql': 1,
            'strength': 1,
            'symantec': 1,
            'system': 1,
            'use': 2,
            'vmware': 1,
            'vpn': 1,
            'walk': 1,
            'web': 1,
            'win': 1}),
  'M'),
 (FreqDist({'advis': 1,
            'analysi': 1,
            'data': 1,
            'methodolog': 1,
            'provid': 1,
            'research': 1,
            'statist': 2,
            'teach': 1}),
  'M'),
 (FreqDist({'current': 1,
            'electr': 1,
            'engin': 1,
            'graduat': 1,
            'limit': 1,
            'master': 1,
            'usc': 1,
            'work': 1}),
  'M'),
 (FreqDist({'...': 1,
            '8+': 1,
            'along': 1,
            'also': 1,
            'b': 3,
            'brochur': 1,
            'c': 2,
            'cake': 1,
            'code': 1,
            'content': 1,
            'core': 1,
            'custom': 2,
            'design': 2,
            'designing3': 1,
            'e-commerc': 1,
            'experi': 2,
            'follow': 1,
            'good': 1,
            'hear': 1,
            'hello': 1,
            'help': 1,
            'html4': 1,
            'ignit': 1,
            'linish': 2,
            'logo': 1,
            'look': 1,
            'magento': 1,
            'manag': 1,
            'opencart': 1,
            'opensourc': 1,
            'oscommerce6': 1,
            'php': 1,
            'php5': 1,
            'plugin': 1,
            'program': 1,
            'programm': 1,
            'soon': 1,
            'system': 1,
            'team': 1,
            'technologies.i': 1,
            'web': 1,
            'wordpress': 1,
            'year': 1}),
  'M'),
 (FreqDist({'.i': 1,
            '35': 1,
            'bsc': 1,
            'comput': 1,
            'graduat': 1,
            'know': 1,
            'ms': 1,
            'offic': 1,
            'pdf': 1,
            'scienc': 1,
            'speed': 1,
            'type': 1,
            'wpm': 1}),
  'F'),
 (FreqDist({"'m": 1,
            'best': 1,
            'bulgaria': 1,
            'clients.i': 1,
            'design': 1,
            'good': 1,
            'graphic': 1,
            'hi': 1,
            'live': 1,
            'make': 1,
            'part': 1,
            'project': 1,
            'realli': 1,
            'see': 1,
            'small': 1,
            'varna': 1,
            'work': 1}),
  'F'),
 (FreqDist({'help': 1, 'inform': 1, 'web': 1, 'websit': 1, 'would': 1}), 'M'),
 (FreqDist({'2': 1,
            'analyst': 1,
            'analyt': 1,
            'associ': 1,
            'data': 2,
            'db2': 1,
            'dynam': 1,
            'financi': 1,
            'forecast': 1,
            'india': 1,
            'j2ee': 1,
            'learn': 1,
            'ltd.': 1,
            'machin': 1,
            'market': 1,
            'mba': 1,
            'model': 1,
            'php': 1,
            'predict': 1,
            'pvt': 1,
            'r': 1,
            'scientist': 1,
            'sinc': 1,
            'skill': 1,
            'sql': 1,
            'work': 1,
            'xl': 1,
            'year': 1}),
  'M'),
 (FreqDist({'banner': 1,
            'big': 1,
            'blog': 1,
            'bosnian': 1,
            'bulgarian': 1,
            'comment': 1,
            'croatian': 1,
            'data': 1,
            'design': 1,
            'directori': 1,
            'english': 1,
            'entri': 1,
            'experi': 1,
            'logo': 1,
            'ms': 1,
            'offer': 1,
            'offic': 1,
            'serbian': 1,
            'submiss': 1,
            'translat': 1,
            'web': 1}),
  'M'),
 ...]
In [115]:
# Run a Naive Bayes classifier on above training set using 5 fold cross validation and check accuracy of model

from sklearn.model_selection import KFold
import numpy as np
k_fold = KFold(n_splits=5, shuffle=True)
accu = []
for train_idx, test_idx in k_fold.split(trainfeat2):
    train = [trainfeat2[i] for i in train_idx]
    test = [trainfeat2[i] for i in test_idx]
    classifier = nltk.NaiveBayesClassifier.train(train)   
    accu.append( nltk.classify.util.accuracy(classifier, test) )
    print('accuracy:', accu[len(accu)-1])    
print('CV mean accuracy:', np.mean(accu))   
accuracy: 0.5736
accuracy: 0.5504
accuracy: 0.54
accuracy: 0.5888
accuracy: 0.5724579663730984
CV mean accuracy: 0.565051593275
In [116]:
# Display top 5 most informative features used for classification

classifier.show_most_informative_features(5)
Most Informative Features
                   linux = 1                   M : F      =     17.3 : 1.0
                     mom = 1                   F : M      =     17.0 : 1.0
                     cat = 1                   F : M      =     16.2 : 1.0
                 typeset = 1                   F : M      =     16.2 : 1.0
                     cum = 1                   F : M      =     15.0 : 1.0
In [117]:
#Train Naive Bayes classifier on entire training set and use it to predict gender on test set
import pandas as pd

train = pd.read_csv('train.csv')
test4 = pd.read_csv('test.csv')
desc1=pd.DataFrame(test4['description'])
all_words = [preprocess(description) for description in desc1['description'] ]

all_words2 = [w for description in all_words for w in description]  #Ungroup or flatten and convert into 1 set of words
words_freq = nltk.FreqDist(all_words2)
selected_words = [word for word, freq in words_freq.items() if freq>1] #Word count greater than 1 in whole set of words
testfeat2=[extract_features(desc,selected_words) for desc in all_words]

classifier2 = nltk.NaiveBayesClassifier.train(trainfeat2)  
pred = [classifier2.classify(row) for row in testfeat2]
pred
Out[117]:
['F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 ...]
In [118]:
# Copy test set predictions to output dataset

naiveqn2 = pd.DataFrame({'username':test4['username'], 'prediction':pred})
naiveqn2.to_csv('dav16108naiveqn2.csv', index=False)
In [119]:
# Run a Max Entropy classifier on above training set using 5 fold cross validation and check accuracy of model


k_fold = KFold(n_splits=5, shuffle=True)
accu = []
for train_idx, test_idx in k_fold.split(trainfeat2):
    train = [trainfeat2[i] for i in train_idx]
    test = [trainfeat2[i] for i in test_idx]
    classifier = nltk.classify.MaxentClassifier.train(train, trace=3, max_iter=2)       
    accu.append( nltk.classify.util.accuracy(classifier, test) )
    print('accuracy:', accu[len(accu)-1])    
print('CV mean accuracy:', np.mean(accu)) 
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.810
         Final          -0.62553        0.568
accuracy: 0.5544
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.813
         Final          -0.33292        0.807
accuracy: 0.8016
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.814
         Final          -0.33808        0.809
accuracy: 0.796
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.814
         Final          -0.35016        0.810
accuracy: 0.8056
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.813
         Final          -0.37275        0.805
accuracy: 0.7966373098478783
CV mean accuracy: 0.75084746197
In [120]:
# Display top 5 most informative features used for classification

classifier.show_most_informative_features(5)
   0.500 lion==1 and label is 'M'
   0.500 exchangelyncwindow==1 and label is 'M'
   0.500 ciw==1 and label is 'M'
   0.433 build==1 and label is 'M'
   0.433 complet==1 and label is 'M'
In [121]:
#Train Max Entropy classifier on entire training set and use it to predict gender on test set


train = pd.read_csv('train.csv')
test5 = pd.read_csv('test.csv')
desc1=pd.DataFrame(test4['description'])
all_words = [preprocess(description) for description in desc1['description'] ]
all_words2 = [w for description in all_words for w in description]  #Ungroup or flatten and convert into 1 set of words
words_freq = nltk.FreqDist(all_words2)
selected_words = [word for word, freq in words_freq.items() if freq>1] #Word count greater than 1 in whole set of words
testfeat2=[extract_features(desc,selected_words) for desc in all_words]

classifier2 = nltk.classify.MaxentClassifier.train(trainfeat2, trace=3, max_iter=2)
pred = [classifier2.classify(row) for row in testfeat2]
pred
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.813
         Final          -0.36920        0.804
Out[121]:
['M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 ...]
In [122]:
# Copy test set predictions to output dataset

maxentropyqn2 = pd.DataFrame({'username':test5['username'], 'prediction':pred})
maxentropyqn2.to_csv('dav16108maxentropyqn2.csv', index=False)
In [123]:
# Run Support Vector classifier on above training set using 5 fold cross validation and check accuracy of model

from nltk.classify import SklearnClassifier
from sklearn.svm import SVC
k_fold = KFold(n_splits=5, shuffle=True)
accu = []
for train_idx, test_idx in k_fold.split(trainfeat2):
    train = [trainfeat2[i] for i in train_idx]
    test = [trainfeat2[i] for i in test_idx]
    classifier = SklearnClassifier(SVC(kernel='linear', C=10, random_state=1), sparse=True).train(train)       
    accu.append( nltk.classify.util.accuracy(classifier, test) )
    print('accuracy:', accu[len(accu)-1])    
print('CV mean accuracy:', np.mean(accu)) 
accuracy: 0.752
accuracy: 0.7704
accuracy: 0.7312
accuracy: 0.7336
accuracy: 0.734187349879904
CV mean accuracy: 0.744277469976
In [124]:
#Train Support Vector classifier on entire training set and use it to predict gender on test set


svcclf = SklearnClassifier(SVC(kernel='linear', C=10, random_state=1), sparse=True).train(trainfeat2)
pred = [svcclf.classify(row) for row in testfeat2]
pred
Out[124]:
['M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 ...]
In [125]:
# Copy test set predictions to output dataset

svcqn2 = pd.DataFrame({'username':test5['username'], 'prediction':pred})
svcqn2.to_csv('dav16108svcqn2.csv', index=False)

3. Predicting Gender with Username, Description, and Status

If you need to merge multiple dict-format features into one, check the following question: https://stackoverflow.com/questions/38987/how-to-merge-two-dictionaries-in-a-single-expression

In [126]:
# Parse Json format status as dictionary
train=pd.read_csv('train.csv')
from ast import literal_eval
status = train['status'].apply(literal_eval)
In [127]:
# Now you need to find a way to split the dictionary format status as multiple columns
In [128]:
#Splitting dictionary format status to multiple columns and displaying

len(status)
df=pd.DataFrame()
for i in range(len(status)):
    data=pd.DataFrame(status[i],index=[i])
    df=df.append(data,ignore_index=True)
df
train=pd.concat([train,df],axis=1)
train
Out[128]:
username gender status description deposit_made email_verified facebook_connected identity_verified payment_verified phone_verified profile_complete
0 Vimal20011 M {u'payment_verified': False, u'identity_verifi... A team of 5 working on various projects relate... True True False False False False True
1 sheom M {u'payment_verified': True, u'identity_verifie... We are an IT solution and service provider com... True True True False True False True
2 ezbik M {u'payment_verified': False, u'identity_verifi... System administration is my work & hobby. False True False False False False True
3 angelme F {u'payment_verified': False, u'identity_verifi... Good day! Thank you for taking some time to ch... True True False False False True True
4 snitch1 M {u'payment_verified': False, u'identity_verifi... I build good relation with clients and deliver... False True False False False False True
5 ehabdigitalart M {u'payment_verified': False, u'identity_verifi... Over the last 12 years, I have developed a wid... False True True False False False True
6 laarniandbuboy F {u'payment_verified': False, u'identity_verifi... WORK EXPERIENCESTraining SupervisorDirect Resp... False True False False False False True
7 payzone M {u'payment_verified': False, u'identity_verifi... i'm graduate from engineering chemical faculty... False True False False False False True
8 istratebogdan M {u'payment_verified': False, u'identity_verifi... Name: Istrate Bogdan PetrusNationality: Romani... False True True False False False True
9 pam2489 F {u'payment_verified': False, u'identity_verifi... My goal is to create long-lasting relationship... True True False False False False True
10 macadams M {u'payment_verified': True, u'identity_verifie... I am Hard working, focused and very resourcefu... False True False False True True True
11 arieldcosta M {u'payment_verified': False, u'identity_verifi... I have total PHP/mysql experience of 7+ years.... True True False False False True True
12 seohorn F {u'payment_verified': False, u'identity_verifi... SEO Horn Marketing (SMC-Pvt) Limited is a prof... False True False False False False True
13 ddtaxe M {u'payment_verified': True, u'identity_verifie... I am an IT Architect and Security Professional... True True False False True True True
14 laxmon M {u'payment_verified': False, u'identity_verifi... I have been working with companies like ACS an... False True False False False False True
15 h4ck3rm1k3 M {u'payment_verified': False, u'identity_verifi... , , , , , , , , , , False True False False False False True
16 naqirizvi M {u'payment_verified': False, u'identity_verifi... Hi,I am a Web Designer/Developer,Bulk Email Ma... False True False False False True True
17 TopNotchType F {u'payment_verified': True, u'identity_verifie... Enthusiastic about developing my freelancing e... True True False False True False True
18 phpwalkover M {u'payment_verified': False, u'identity_verifi... Dear All,I have 9 years experience in LAMP.I h... True True False False False False True
19 galitskydesign F {u'payment_verified': False, u'identity_verifi... You can see a part of my portfolio on False True False False False False True
20 srsolanki M {u'payment_verified': False, u'identity_verifi... We are able to handle an output of 20 articles... False True False False False False True
21 shabukumar M {u'payment_verified': True, u'identity_verifie... I am well familiar with Wordpress and Magento ... True True True False True True True
22 BOND76 M {u'payment_verified': False, u'identity_verifi... Testing False True False False False False True
23 Veles M {u'payment_verified': False, u'identity_verifi... SolidworksAutodesk InventorCATIA V5RhinocerosA... False True False False False False True
24 roheena F {u'payment_verified': False, u'identity_verifi... Hello All,Thanks for visiting my profile!I am ... False True False False False True True
25 softmailers M {u'payment_verified': False, u'identity_verifi... Name - sumit sharma Father`s Name - m.k sharma... False True False False False False True
26 lldeguzman M {u'payment_verified': False, u'identity_verifi... LLOYD GUZMAN\tZone 10, Bgry. PoblacionIligan... False True True False False True True
27 myillustration F {u'payment_verified': False, u'identity_verifi... Born in Bangkok, Thailand.Enrolled in the Coll... False True False False False False True
28 allenpaul26 M {u'payment_verified': True, u'identity_verifie... Editing Website Content And Continue To Update... True True True False True True True
29 ueritom M {u'payment_verified': True, u'identity_verifie... Hi everyone, I'm a Brazilian guy who loves to ... True True False False True True True
... ... ... ... ... ... ... ... ... ... ... ...
6219 worker4Nat F {u'payment_verified': True, u'identity_verifie... I appreciate good projects. Wait for your orde... True True False False True True True
6220 aliprofan M {u'payment_verified': False, u'identity_verifi... Skilled at Java, Unity3d,cocos2dx,Javascript,H... False True True False False False True
6221 zakir108 M {u'payment_verified': False, u'identity_verifi... i am working in a software firm, as a softwar... False True False False False False True
6222 webdeem M {u'payment_verified': True, u'identity_verifie... I specialize in the design of sleek, responsiv... True True True True True True True
6223 erictenoso08 M {u'payment_verified': False, u'identity_verifi... Im a professional photo retoucher for a 5 year... False True True False False False True
6224 AKBERBAIG M {u'payment_verified': False, u'identity_verifi... I can do any project within the required time ... False True False False False True True
6225 lcreurer F {u'payment_verified': False, u'identity_verifi... I love the world of words and helping clients ... False True False False False True True
6226 CristobalStreet1 M {u'payment_verified': False, u'identity_verifi... Proficient in C#, Java, visual True True True True False True True
6227 shohan5457 M {u'payment_verified': False, u'identity_verifi... ***Summary Of Mine:Interested to developed in ... False True False False False True True
6228 pradipred2008 M {u'payment_verified': False, u'identity_verifi... With over 7 years of experience in IT, my goal... False True False False False True True
6229 JD8386 M {u'payment_verified': False, u'identity_verifi... B.S. Music CompositionM.M. Music Composition (... False True False False False False True
6230 jadi007 M {u'payment_verified': False, u'identity_verifi... I have done work in VB and SQL server MS Acces... True True False False False False True
6231 pearnestdhass M {u'payment_verified': False, u'identity_verifi... Summary:-Working as CG Rigger for the past 10 ... False True False False False False True
6232 fornit M {u'payment_verified': True, u'identity_verifie... Hello,I am professional programmer and busines... True True False False True True True
6233 charleskogi M {u'payment_verified': False, u'identity_verifi... I am an experienced internet marketer,and repo... False True False False False True True
6234 prashant7 M {u'payment_verified': False, u'identity_verifi... I am ready to be hired by you for the post of ... False True True False False True True
6235 nuredianz M {u'payment_verified': False, u'identity_verifi... HTML, XHTML, CSS, SSI, MySQL, PHP, WordPress, ... True True False False False False True
6236 marukqs M {u'payment_verified': False, u'identity_verifi... TRANSLATION BUSINESS (since 1996): Project man... False True False False False False True
6237 codedungeon M {u'payment_verified': False, u'identity_verifi... I work as a freelancer. Websites start at 200... False True False False False False True
6238 Solomonkariri M {u'payment_verified': True, u'identity_verifie... Development of mobile and web based as well as... True True False False True True True
6239 geade M {u'payment_verified': False, u'identity_verifi... George Eade has been an independent art direct... True True False False False False True
6240 elinksol M {u'payment_verified': False, u'identity_verifi... I am experienced and qualified programmers led... True True False False False True True
6241 Royal3D M {u'payment_verified': False, u'identity_verifi... Elite Architectural Visualization: False True False False False False True
6242 FlorGambartes F {u'payment_verified': False, u'identity_verifi... I have my own personal furniture design shop i... False True False False False False True
6243 CompleteDesign M {u'payment_verified': True, u'identity_verifie... Professional Scandinavian Fullservice Webagenc... True True False False True False True
6244 joneve98 M {u'payment_verified': False, u'identity_verifi... I am hardworking professional with extensive e... False True True False False True True
6245 dbperl M {u'payment_verified': False, u'identity_verifi... 1. Graduate Engineer2. Post Graduate Engineer3... False True False False False False True
6246 meetketan33 M {u'payment_verified': False, u'identity_verifi... Skills\xe2\u20ac\xa2\tASP.net 2.0, 3.5, 4.0\xe... False True False False False False True
6247 sanpals M {u'payment_verified': False, u'identity_verifi... I am Software developer with over 7 experience... False True False False False False True
6248 Tanweer2008 M {u'payment_verified': False, u'identity_verifi... I am a working professional, presently dealin... False True False False False True True

6249 rows × 11 columns

In [129]:
#Combining features username,description and status

fea={}
for i in range(len(status)):
    z={**trainfeat[i][0],**trainfeat2[i][0],**status[i]}
    fea[i]=z

fea
Out[129]:
{0: {'5': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'V',
  'Last': '1',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'content': 1,
  'data': 1,
  'deposit_made': True,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'relat': 1,
  'research': 1,
  'team': 1,
  'variou': 1,
  'work': 2,
  'write': 1},
 1: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'm',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'compani': 2,
  'deposit_made': True,
  'e-learn': 1,
  'email_verified': True,
  'expertis': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'know': 1,
  'media': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'provid': 1,
  'servic': 1,
  'social': 1,
  'solut': 1,
  'url': 1,
  'visit': 1},
 2: {'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'k',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'administr': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'hobbi': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'system': 1,
  'work': 1},
 3: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'acquir': 1,
  'articl': 1,
  'check': 1,
  'content': 1,
  'copywrit': 1,
  'day': 1,
  'deposit_made': True,
  'email_verified': True,
  'experi': 2,
  'experienc': 1,
  'facebook_connected': False,
  'good': 1,
  'hope': 1,
  'identity_verified': False,
  'knowledg': 1,
  'offer': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profil': 1,
  'profile_complete': True,
  'promis': 1,
  'qualiti': 1,
  'soon': 1,
  'take': 1,
  'thank': 1,
  'time': 1,
  'work': 1,
  'writer': 1,
  'year': 2},
 4: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 's',
  'Last': '1',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'build': 1,
  'client': 1,
  'deliv': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'good': 1,
  'high': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'price': 1,
  'profile_complete': True,
  'qualiti': 1,
  'reason': 1,
  'relat': 1,
  'time': 1,
  'work': 1},
 5: {'12': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 't',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'adob': 1,
  'ajax': 1,
  'also': 1,
  'area': 1,
  'build': 1,
  'busi': 1,
  'business.i': 1,
  'compani': 1,
  'compet': 1,
  'complet': 1,
  'core': 1,
  'cs3': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'dhtml': 1,
  'dreamweav': 1,
  'email_verified': True,
  'end-end': 1,
  'experi': 1,
  'express': 1,
  'facebook_connected': True,
  'follow': 1,
  'ground': 1,
  'hmtl': 1,
  'identity_verified': False,
  'includ': 1,
  'last': 1,
  'lie': 1,
  'logo': 1,
  'manag': 1,
  'microsoft': 1,
  'new': 1,
  'opportun': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'rang': 1,
  'seek': 1,
  'site': 1,
  'small': 1,
  'startup': 1,
  'use': 1,
  'web': 1,
  'websit': 3,
  'wide': 1,
  'year': 1},
 6: {'1': 3,
  '10': 1,
  '10.0': 1,
  '13': 1,
  '1999-2003': 1,
  '2': 1,
  '20': 1,
  '2003': 1,
  '2004': 2,
  '2004\\t': 1,
  '2005': 5,
  '2006': 3,
  '2007': 3,
  '2008': 3,
  '2009': 1,
  '2009surigao': 2,
  '3': 2,
  '30': 1,
  '4': 1,
  '4th': 1,
  '6': 5,
  '70': 1,
  '79': 2,
  '80': 1,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'y',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '\\t\\tweb': 1,
  '\\xe2\\u20ac\\u201c': 17,
  'academi': 3,
  'accord': 2,
  'account': 3,
  'accredit': 1,
  'address': 1,
  'adob': 4,
  'advertis': 1,
  'affect': 1,
  'agenc': 1,
  'agent': 6,
  'agent\\xe2\\u20ac\\u2122': 2,
  'aht': 2,
  'aid': 1,
  'alway': 1,
  'american': 1,
  'amount': 1,
  'answer': 1,
  'apa': 6,
  'applic': 1,
  'apprais': 2,
  'area': 1,
  'art': 1,
  'artwork': 1,
  'asiatown': 6,
  'assur': 1,
  'august': 2,
  'avail': 1,
  'ave.': 1,
  'avenu': 3,
  'averag': 1,
  'basic': 1,
  'beginn': 1,
  'bigger': 1,
  'bill': 1,
  'bldng': 5,
  'bohol': 4,
  'bpo': 1,
  'busi': 1,
  'cagayan': 2,
  'calibr': 2,
  'call': 10,
  'campu': 2,
  'cancel': 3,
  'cca': 2,
  'cebu': 15,
  'center': 7,
  'certif': 1,
  'chang': 1,
  'churn': 2,
  'citi': 5,
  'cityjanuari': 2,
  'cityjun': 7,
  'class': 3,
  'cleric': 1,
  'client': 5,
  'coach': 3,
  'colleg': 1,
  'commun': 2,
  'compani': 2,
  'company\\xe2\\u20ac\\u2122': 2,
  'complianc': 2,
  'comput': 1,
  'concept': 2,
  'concern': 1,
  'constant': 2,
  'correct': 1,
  'cours': 1,
  'cover': 2,
  'cp': 1,
  'credit': 1,
  'cs': 1,
  'csat': 2,
  'cultur': 1,
  'curriculum': 1,
  'custom': 12,
  'customer\\xe2\\u20ac\\u2122': 1,
  'day': 1,
  'day/': 1,
  'de': 2,
  'depart': 3,
  'depend': 1,
  'deposit_made': False,
  'descript': 1,
  'design': 5,
  'desir': 1,
  'develop': 1,
  'differ': 1,
  'direct': 3,
  'dmv': 1,
  'document': 1,
  'don\\xe2\\u20ac\\u2122t': 1,
  'drive': 1,
  'due': 2,
  'earthlink': 4,
  'educ': 2,
  'effect': 6,
  'elementari': 1,
  'email_verified': True,
  'english': 3,
  'ensur': 1,
  'establish': 1,
  'etc': 3,
  'evalu': 1,
  'everi': 2,
  'excel': 1,
  'execut': 1,
  'expans': 1,
  'extern': 1,
  'facebook_connected': False,
  'factor': 1,
  'februari': 2,
  'feedback': 2,
  'floor': 7,
  'focus': 1,
  'follow': 1,
  'foreign': 1,
  'formul': 2,
  'foundat': 1,
  'frequenc': 1,
  'full': 2,
  'gener': 3,
  'geographi': 1,
  'get': 1,
  'gift': 3,
  'govern': 1,
  'grammar': 1,
  'graphic': 2,
  'gross': 1,
  'growth': 2,
  'gsr': 2,
  'handl': 4,
  'help': 1,
  'high': 2,
  'hit': 3,
  'hotel': 1,
  'identity_verified': False,
  'illustr': 2,
  'inbound': 1,
  'inc.2nd': 2,
  'inc.unit': 4,
  'indic': 1,
  'inform': 1,
  'insur': 2,
  'intend': 1,
  'intens': 2,
  'interact': 2,
  'intermedi': 1,
  'intern': 1,
  'interpret': 1,
  'investig': 1,
  'januari': 2,
  'japanes': 1,
  'job': 2,
  'juli': 2,
  'june': 1,
  'key': 1,
  'korean': 1,
  'kpi': 1,
  'kpi/': 2,
  'lahug': 8,
  'lapu-lapu': 3,
  'layout': 1,
  'leadership': 1,
  'level': 1,
  'life': 1,
  'make': 1,
  'manag': 2,
  'manner': 1,
  'march': 3,
  'market': 2,
  'mass': 1,
  'materi': 1,
  'maxilom': 2,
  'maximum': 1,
  'may': 5,
  'mepz': 2,
  'metric': 1,
  'minimum': 1,
  'modul': 1,
  'monitor': 1,
  'motor': 1,
  'move': 1,
  'name': 1,
  'ndoe': 2,
  'necessari': 3,
  'negoti': 1,
  'new': 2,
  'nhandl': 2,
  'normal': 1,
  'novemb': 1,
  'number': 1,
  'oic': 2,
  'one': 4,
  'oper': 1,
  'order': 3,
  'oro': 1,
  'outsourc': 1,
  'overview': 1,
  'page': 2,
  'paperwork': 1,
  'park': 6,
  'payment_verified': False,
  'peoplesupport': 8,
  'per': 2,
  'perform': 6,
  'phil': 9,
  'philippin': 3,
  'phone': 1,
  'phone_verified': False,
  'photoshop': 1,
  'polici': 3,
  'potenti': 1,
  'powerpoint': 1,
  'prepar': 1,
  'prioriti': 1,
  'problem': 1,
  'procedur': 3,
  'process': 5,
  'profici': 3,
  'profile_complete': True,
  'program': 4,
  'progress': 1,
  'put': 1,
  'qa': 3,
  'qualiti': 1,
  'question': 2,
  'rate': 1,
  'read': 1,
  'reader': 1,
  'receiv': 1,
  'recruit': 1,
  'refresh': 1,
  'regard': 2,
  'regular': 1,
  'relat': 1,
  'remot': 1,
  'report': 4,
  'repres': 2,
  'research': 1,
  'respons': 3,
  'result': 1,
  'retent': 5,
  'role': 1,
  'rule': 1,
  'sale': 3,
  'satisfact': 1,
  'save': 10,
  'schedul': 1,
  'school': 1,
  'schoolwith': 1,
  'seminar': 2,
  'senior': 1,
  'servic': 5,
  'session': 3,
  'skill': 1,
  'specif': 3,
  'specifi': 1,
  'speech': 1,
  'stage': 1,
  'state': 2,
  'strategi': 2,
  'strength': 1,
  'student': 2,
  'sudeco': 2,
  'supervisor': 2,
  'supervisor\\xe2\\u20ac\\u2122': 2,
  'supervisori': 1,
  'sure': 1,
  'survey': 1,
  'symposium': 1,
  'tagbilaran': 4,
  'take': 1,
  'teach': 1,
  'team': 4,
  'team\\xe2\\u20ac\\u2122': 1,
  'telemarket': 1,
  'tenur': 1,
  'term': 2,
  'thorough': 1,
  'time': 3,
  'tour': 2,
  'tourist': 1,
  'train': 10,
  'trainer': 1,
  'univers': 5,
  'updat': 2,
  'use': 1,
  'veg': 2,
  'vehicl': 1,
  'ventur': 1,
  'version': 1,
  'visaya': 1,
  'voic': 1,
  'web': 1,
  'week': 1,
  'weekli': 1,
  'within': 2,
  'work': 1,
  'workshop': 2,
  'write': 2,
  'writer': 1,
  'wrong': 1},
 7: {"'m": 2,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'blog': 1,
  'chemic': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'entri': 1,
  'facebook_connected': False,
  'faculti': 1,
  'freelanc': 1,
  'graduat': 1,
  'hobbi': 1,
  'identity_verified': False,
  'internet': 1,
  'logo': 1,
  'make': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'seo': 1},
 8: {'3': 1,
  '3d': 3,
  '3year': 1,
  '5': 1,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'n',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'actual': 1,
  'adjac': 1,
  'adob': 2,
  'advertis': 1,
  'alia': 1,
  'anim': 1,
  'architectur': 2,
  'artist': 1,
  'automot': 1,
  'basic': 2,
  'beggin': 4,
  'catia': 1,
  'certif': 1,
  'cgi': 2,
  'citi': 1,
  'close': 1,
  'colleg': 1,
  'comput': 1,
  'countri': 1,
  'cuza': 1,
  'databas': 1,
  'deposit_made': False,
  'design': 1,
  'design-': 3,
  'educ': 1,
  'effects-': 1,
  'email_verified': True,
  'engin': 1,
  'english': 1,
  'experi': 3,
  'facebook_connected': True,
  'far': 1,
  'film': 1,
  'final': 1,
  'flow': 1,
  'fluent': 1,
  'french': 1,
  'fx': 1,
  'game': 1,
  'generalist': 2,
  'hometown': 1,
  'identity_verified': False,
  'industri': 1,
  'italian': 1,
  'light': 1,
  'locat': 2,
  'london': 1,
  'max': 1,
  'mental': 1,
  'microsoft': 2,
  'model': 1,
  'name': 1,
  'nativ': 1,
  'norway': 1,
  'nuke': 1,
  'offic': 2,
  'packag': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photorealist': 1,
  'photoshop': 1,
  'portfolio': 1,
  'present': 1,
  'profil': 2,
  'profile_complete': True,
  'program': 1,
  'project': 1,
  'ray': 1,
  'real': 1,
  'render': 2,
  'romania': 2,
  'romanian': 1,
  'scienc': 1,
  'sibiu': 2,
  'softwar': 3,
  'software-': 1,
  'str': 1,
  'studio': 2,
  'tool': 1,
  'uk': 1,
  'univers': 1,
  'visual': 1,
  'visualis': 1,
  'web': 1,
  'year': 2},
 9: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(3, 4), match='2'>,
  'First': 'p',
  'Last': '9',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'assist': 1,
  'client': 1,
  'creat': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'goal': 1,
  'highli': 1,
  'identity_verified': False,
  'long-last': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'relationship': 1,
  'satisfi': 1,
  'task': 1,
  'virtual': 1,
  'well': 1},
 10: {"'ve": 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 's',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'attent': 1,
  'client': 1,
  'deposit_made': False,
  'detail': 1,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'focus': 1,
  'got': 1,
  'hard': 1,
  'identity_verified': False,
  'love': 1,
  'pay': 1,
  'payment_verified': True,
  'phone_verified': True,
  'practic': 1,
  'profile_complete': True,
  'resourc': 1,
  'satisfi': 1,
  'skill': 1,
  'softwar': 1,
  'web': 1,
  'work': 1},
 11: {'7': 1,
  '7+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'a',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'api': 1,
  'build': 1,
  'crm': 1,
  'deposit_made': True,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'industri': 1,
  'know': 1,
  'last': 1,
  'payment_verified': False,
  'pharmaceut': 1,
  'phone_verified': True,
  'php/mysql': 1,
  'profile_complete': True,
  'total': 1,
  'use': 1,
  'version': 1,
  'vtiger': 2,
  'work': 2,
  'year': 2},
 12: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'n',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'abid': 1,
  'afford': 1,
  'believ': 1,
  'compani': 1,
  'contact': 1,
  'convert': 1,
  'countri': 1,
  'custom': 2,
  'deposit_made': False,
  'design': 1,
  'domain': 1,
  'email_verified': True,
  'ethic': 1,
  'evalu': 1,
  'facebook_connected': False,
  'free': 5,
  'googl': 1,
  'help': 1,
  'host': 1,
  'hour': 1,
  'identity_verified': False,
  'lb': 1,
  'limit': 1,
  'manag': 1,
  'market': 1,
  'offer': 1,
  'packag': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 2,
  'profile_complete': True,
  'project': 1,
  'report': 1,
  'sale': 1,
  'search': 1,
  'select': 1,
  'seo': 5,
  'specialist': 1,
  'traffic': 1,
  'unlimit': 1,
  'us': 1,
  'work': 1},
 13: {'2000/2003': 2,
  '4.0': 1,
  '9.x': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'e',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'activ': 1,
  'antispam': 1,
  'apach': 1,
  'architect': 1,
  'asset': 1,
  'certifi': 2,
  'cisco': 1,
  'citrix': 1,
  'cobit': 1,
  'code': 1,
  'comput': 1,
  'content': 1,
  'corpor': 1,
  'crack': 1,
  'databas': 1,
  'degre': 1,
  'deposit_made': True,
  'directori': 1,
  'dn': 1,
  'email_verified': True,
  'emc': 1,
  'end': 1,
  'ethic': 1,
  'exchang': 1,
  'expert': 1,
  'facebook_connected': False,
  'filter': 1,
  'firewal': 1,
  'frame': 1,
  'front': 1,
  'function': 1,
  'hack': 1,
  'hacker': 2,
  'help': 1,
  'identity_verified': False,
  'ids/ip': 1,
  'ii': 1,
  'includ': 1,
  'inform': 1,
  'infrastructur': 1,
  'isc': 1,
  'iscsi': 1,
  'joomla': 1,
  'knowledg': 1,
  'lan': 1,
  'linux': 1,
  'mpl': 1,
  'network': 1,
  'oracl': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profession': 2,
  'profile_complete': True,
  'protect': 1,
  'qualif': 1,
  'relay': 1,
  'router': 1,
  'scienc': 1,
  'secur': 3,
  'server': 3,
  'solut': 1,
  'specif': 1,
  'sql': 1,
  'storag': 1,
  'strong': 1,
  'system': 1,
  'tcp/ip': 1,
  'technic': 1,
  'tomcat': 1,
  'virtual': 1,
  'virtuozzo': 1,
  'vlan': 1,
  'vmware': 1,
  'vpn': 1,
  'wan': 1,
  'web': 2,
  'whose': 1,
  'window': 1,
  'xen': 1},
 14: {'6': 1,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ac': 1,
  'assur': 1,
  'beleiv': 1,
  'choic': 1,
  'client': 1,
  'close': 1,
  'compani': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'good': 1,
  'hard': 1,
  'identity_verified': False,
  'like': 1,
  'long': 1,
  'made': 1,
  'may': 1,
  'outsourc': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'qualiti': 1,
  'relationship': 1,
  'rest': 1,
  'reuter': 1,
  'right': 1,
  'strict': 1,
  'term': 1,
  'valuabl': 1,
  'work': 2,
  'years.i': 1},
 15: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='4'>,
  'First': 'h',
  'Last': '3',
  'Numchar': 10,
  'Vowel': None,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True},
 16: {'3': 1,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'i',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'bulk': 1,
  'carrier': 1,
  'deposit_made': False,
  'designer/develop': 1,
  'email': 1,
  'email_verified': True,
  'expert': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'hi': 1,
  'identity_verified': False,
  'market': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'upwork': 1,
  'web': 1,
  'work': 1,
  'year': 1},
 17: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
  'Digit': None,
  'First': 'T',
  'Last': 'e',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'academia': 1,
  'alert': 1,
  'audienc': 1,
  'avail': 1,
  'background': 1,
  'checker': 1,
  'creativ': 1,
  'deposit_made': True,
  'develop': 1,
  'done': 1,
  'email_verified': True,
  'english': 1,
  'enthusiast': 1,
  'environ': 1,
  'expertis': 1,
  'facebook_connected': False,
  'flexibl': 1,
  'formal': 1,
  'freelanc': 2,
  'grammar': 1,
  'identity_verified': False,
  'like': 1,
  'nativ': 1,
  'never': 1,
  'onlin': 1,
  'payment_verified': True,
  'perfectionist': 1,
  'phone_verified': False,
  'piec': 1,
  'possess': 1,
  'pride': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'quickli': 1,
  'request': 1,
  'set': 1,
  'speaker': 1,
  'spell': 1,
  'state': 1,
  'strong': 1,
  'tip': 1,
  'unit': 1,
  'upon': 1,
  'want': 1,
  'well': 2,
  'work': 1,
  'write': 1},
 18: {'...': 2,
  '10': 1,
  '2': 1,
  '3': 1,
  '9': 2,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'r',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
  'above-': 2,
  'access': 1,
  'also': 1,
  'amazon': 1,
  'api': 1,
  'busi': 1,
  'ccavenu': 1,
  'checkout': 1,
  'cm': 1,
  'code': 1,
  'contact': 1,
  'content': 1,
  'creation': 1,
  'csv': 1,
  'custom': 2,
  'databas': 1,
  'dear': 1,
  'deposit_made': True,
  'develop': 1,
  'direct': 1,
  'done': 2,
  'email_verified': True,
  'etc': 1,
  'etc.if': 1,
  'experi': 2,
  'facebook_connected': False,
  'file': 1,
  'gateway': 1,
  'googl': 1,
  'handl': 1,
  'huge': 1,
  'identity_verified': False,
  'implement': 2,
  'interest': 1,
  'item': 1,
  'java': 1,
  'kind': 1,
  'like': 2,
  'mainten': 1,
  'manag': 2,
  'million': 1,
  'mssql': 1,
  'mssql-': 1,
  'mysql': 2,
  'new': 1,
  'open': 2,
  'payment': 1,
  'payment_verified': False,
  'paypal': 1,
  'phone_verified': False,
  'php': 2,
  'procedur': 1,
  'product': 3,
  'profile_complete': True,
  'project': 3,
  'readi': 1,
  'record': 1,
  'relationship': 1,
  'site': 1,
  'sourc': 2,
  'store': 1,
  'system': 1,
  'take': 1,
  'technolog': 1,
  'transfer': 1,
  'upto': 1,
  'use': 2,
  'variou': 1,
  'video': 1,
  'webservic': 2,
  'work': 1,
  'worldpay': 1,
  'xml': 1,
  'yahoo': 1,
  'year': 2},
 19: {'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'n',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'part': 1,
  'payment_verified': False,
  'phone_verified': False,
  'portfolio': 1,
  'profile_complete': True,
  'see': 1},
 20: {'20': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'i',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
  'abl': 1,
  'articl': 1,
  'day': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'handl': 1,
  'identity_verified': False,
  'output': 1,
  'payment_verified': False,
  'per': 1,
  'phone_verified': False,
  'profile_complete': True},
 21: {'.mi': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'r',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'ad': 1,
  'admin': 1,
  'ahead': 1,
  'also': 1,
  'alway': 1,
  'appli': 1,
  'area': 1,
  'attent': 1,
  'attribut': 2,
  'busi': 1,
  'cart': 1,
  'cheer': 1,
  'combin': 1,
  'commit': 1,
  'configur': 1,
  'copi': 1,
  'creat': 1,
  'custom': 1,
  'data': 2,
  'day': 1,
  'dead': 1,
  'decid': 1,
  'deliveri': 1,
  'deposit_made': True,
  'detail': 1,
  'develop': 1,
  'els': 1,
  'email_verified': True,
  'entri': 1,
  'excel': 1,
  'extens': 1,
  'face': 1,
  'facebook_connected': True,
  'fair': 2,
  'familiar': 3,
  'fast': 1,
  'fix': 1,
  'flexibl': 1,
  'high': 1,
  'identity_verified': False,
  'includ': 2,
  'incomplet': 1,
  'integr': 1,
  'interact': 1,
  'interest': 1,
  'interv': 1,
  'issu': 1,
  'job': 3,
  'line': 1,
  'long': 1,
  'magento': 2,
  'mainfram': 2,
  'much': 1,
  'open': 1,
  'option': 1,
  'past': 1,
  'payment_verified': True,
  'perfect': 3,
  'period': 1,
  'phone_verified': True,
  'plan': 1,
  'precis': 1,
  'prestashop': 1,
  'price': 1,
  'product': 2,
  'profile_complete': True,
  'qualiti': 1,
  'receiv': 1,
  'regular': 1,
  'relationship': 1,
  'requir': 3,
  'set': 1,
  'simpl': 1,
  'sound': 1,
  'step': 1,
  'super': 1,
  'support': 1,
  'task': 1,
  'technolog': 1,
  'term': 1,
  'time-wast': 2,
  'tool': 1,
  'trainer': 1,
  'type': 1,
  'updat': 2,
  'upload': 1,
  'use': 1,
  'well': 1,
  'whether': 1,
  'wordpress': 1,
  'work': 4,
  'worker': 2},
 22: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='7'>,
  'First': 'B',
  'Last': '6',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='O'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'test': 1},
 23: {'3d': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
  'Digit': None,
  'First': 'V',
  'Last': 's',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True},
 24: {'.develop': 1,
  '7': 2,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'adept': 1,
  'also': 2,
  'around': 1,
  'articl': 1,
  'awar': 1,
  'blog': 1,
  'brand': 1,
  'clientel': 1,
  'contact': 1,
  'content': 4,
  'copy-writ': 1,
  'core': 1,
  'creation': 1,
  'custom': 1,
  'customer-specif': 1,
  'deposit_made': False,
  'design': 2,
  'develop': 3,
  'dikka': 2,
  'drupal': 1,
  'email_verified': True,
  'engin': 1,
  'english': 1,
  'entrust': 1,
  'etc': 1,
  'ethic': 1,
  'except': 1,
  'experi': 2,
  'extens': 1,
  'facebook_connected': False,
  'fort': 1,
  'french': 1,
  'german': 1,
  'good': 2,
  'googl': 1,
  'hat': 1,
  'hello': 1,
  'html5': 1,
  'identity_verified': False,
  'includ': 1,
  'internet': 1,
  'joomla': 1,
  'magento': 1,
  'market': 2,
  'maximum': 1,
  'media': 1,
  'need': 1,
  'negi': 2,
  'optim': 1,
  'page': 3,
  'panda': 1,
  'passion': 1,
  'payment_verified': False,
  'penguin': 1,
  'phone_verified': True,
  'php': 2,
  'produc': 1,
  'profici': 1,
  'profil': 1,
  'profile_complete': True,
  'project': 2,
  'promot': 1,
  'protect': 1,
  'rank': 1,
  'regard': 1,
  'requir': 1,
  'revolv': 1,
  'rewrit': 2,
  'search': 1,
  'secur': 1,
  'seo': 3,
  'servic': 1,
  'smo': 1,
  'social': 1,
  'spam': 1,
  'specif': 1,
  'success': 1,
  'summari': 1,
  'techniqu': 1,
  'thank': 1,
  'top': 1,
  'traffic': 1,
  'translat': 1,
  'updat': 1,
  'use': 2,
  'visit': 1,
  'web': 2,
  'websit': 2,
  'websites.seo': 1,
  'well': 1,
  'white': 1,
  'wide': 1,
  'write': 5,
  'year': 2},
 25: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 's',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'hard': 1,
  'honest': 1,
  'identity_verified': False,
  'laxmi': 1,
  'name': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'road': 1,
  'sharma': 1,
  'sumit': 1,
  'us': 1,
  'worker': 1},
 26: {'-\\t\\t': 1,
  '10': 1,
  '2006': 1,
  '2007': 1,
  '2007\\t': 2,
  '2008': 2,
  '2009': 2,
  '21': 1,
  '26': 1,
  '29': 1,
  '3': 1,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'n',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
  '\\t': 1,
  '\\t\\t': 4,
  '\\xe2\\u20ac\\u201c': 2,
  'academi': 2,
  'ad': 1,
  'advoc': 1,
  'april': 1,
  'articl': 1,
  'bachelor': 3,
  'best': 1,
  'blog': 1,
  'call': 1,
  'center': 1,
  'champion': 1,
  'citi': 1,
  'colleg': 1,
  'compani': 1,
  'comput': 2,
  'coop': 1,
  'cours': 1,
  'de': 1,
  'deposit_made': False,
  'educ': 1,
  'email_verified': True,
  'engin': 2,
  'enthusiast': 1,
  'excel': 1,
  'facebook_connected': True,
  'finish': 1,
  'high': 2,
  'identity_verified': False,
  'iligan': 2,
  'institut': 1,
  'jun': 1,
  'june': 1,
  'keen': 1,
  'la': 1,
  'lloyd': 1,
  'major': 1,
  'march': 1,
  'may': 1,
  'michael\\xe2\\u20ac\\u2122': 1,
  'microsoft': 1,
  'nation': 2,
  'oct.': 2,
  'part-tim': 1,
  'payment_verified': False,
  'peter\\xe2\\u20ac\\u2122': 3,
  'phone_verified': True,
  'point': 1,
  'power': 1,
  'present': 1,
  'profile_complete': True,
  'saint': 2,
  'sall': 1,
  'school': 1,
  'scienc': 2,
  'secondari': 1,
  'singl': 1,
  'speaker': 1,
  'st.': 3,
  'substitut': 2,
  'tesda': 1,
  'train': 2,
  'troubleshoot': 1,
  'undergrad': 2,
  'word': 1,
  'writer/editor': 1},
 27: {"''": 2,
  "'s": 2,
  '1987': 1,
  '1989': 1,
  '1994': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'n',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  '``': 2,
  'airway': 1,
  'art': 3,
  'artist': 2,
  'awar': 1,
  'award': 1,
  'bachelor': 1,
  'bangkok': 2,
  'born': 1,
  'campaign': 1,
  'colleg': 1,
  'daili': 1,
  'day': 1,
  'degre': 1,
  'deposit_made': False,
  'display': 1,
  'done': 1,
  'drug': 1,
  'email_verified': True,
  'exhibit': 1,
  'facebook_connected': False,
  'faculti': 1,
  'fine': 2,
  'follow': 1,
  'graphic': 2,
  'identity_verified': False,
  'institut': 1,
  'list': 1,
  'media': 1,
  'nation': 1,
  'newspap': 1,
  'paint': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'sinc': 1,
  'sky': 1,
  'technolog': 1,
  'thai': 1,
  'websit': 1,
  'winner': 1,
  'woman': 1,
  'work': 2,
  'youth': 1},
 28: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
  'First': 'a',
  'Last': '6',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'ad': 1,
  'ai': 1,
  'content': 3,
  'continu': 1,
  'corel': 1,
  'css': 1,
  'deposit_made': True,
  'draw': 1,
  'edit': 1,
  'editor': 1,
  'email_verified': True,
  'facebook_connected': True,
  'html': 1,
  'identity_verified': False,
  'imag': 1,
  'necessari': 1,
  'payment_verified': True,
  'pdf': 1,
  'phone_verified': True,
  'photoshop': 1,
  'poster': 1,
  'profile_complete': True,
  'redesign': 1,
  'tabl': 1,
  'updat': 1,
  'websit': 2},
 29: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 'u',
  'Last': 'm',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
  'blog': 1,
  'brazilian': 1,
  'deposit_made': True,
  'email_verified': True,
  'english': 1,
  'everyon': 1,
  'facebook_connected': False,
  'guy': 1,
  'hi': 1,
  'hire': 1,
  'identity_verified': False,
  'love': 1,
  'make': 1,
  "n't": 1,
  'need': 1,
  'payment_verified': True,
  'phone_verified': True,
  'portugues': 1,
  'profile_complete': True,
  'regret': 1,
  'review': 1,
  'see': 1,
  'simpli': 1,
  'translat': 1,
  'wo': 1},
 30: {'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'custom': 1,
  'deposit_made': False,
  'design': 2,
  'develop': 1,
  'e-commerc': 1,
  'edit': 1,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': True,
  'graphic': 1,
  'identity_verified': False,
  'indesign': 1,
  'joomla': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'php': 1,
  'product': 1,
  'profile_complete': True,
  'record': 1,
  'respons': 1,
  'social': 1,
  'surgic': 1,
  'video': 1,
  'web': 1,
  'word': 1,
  'wordpress': 1},
 31: {'15': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': None,
  'First': 'M',
  'Last': 'R',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'api': 1,
  'applic': 1,
  'better': 1,
  'code': 2,
  'css': 1,
  'databas': 1,
  'deposit_made': True,
  'development.mi': 1,
  'easili': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'fast': 1,
  'fix': 1,
  'help': 1,
  'html': 1,
  'identity_verified': False,
  'implement': 1,
  'includ': 1,
  'issu': 1,
  'jqueri': 1,
  'legaci': 1,
  'limit': 1,
  'load': 1,
  'mani': 1,
  'migrat': 1,
  'mysql': 1,
  'new': 1,
  'number': 2,
  'old': 1,
  'oop': 2,
  'optim': 3,
  'page': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 3,
  'processing*': 1,
  'profile_complete': True,
  'provid': 1,
  'pure': 1,
  'reduc': 1,
  'script': 1,
  'secur': 1,
  'server': 1,
  'set': 1,
  'skill': 1,
  'sourc': 1,
  'speed': 1,
  'swift': 1,
  'variou': 1,
  'version': 1,
  'web': 1,
  'websit': 2,
  'well': 1,
  'written': 1,
  'year': 2},
 32: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
  'Digit': None,
  'First': 'C',
  'Last': 'g',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'articl': 1,
  'blogger': 1,
  'content': 3,
  'creation': 1,
  'creativ': 1,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'experi': 1,
  'experienc': 1,
  'expert': 1,
  'facebook_connected': False,
  'fiction': 1,
  'gener': 1,
  'gig': 1,
  'hallmark': 1,
  'identity_verified': False,
  'link': 1,
  'long': 1,
  'mark': 1,
  'non-fict': 1,
  'origin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 2,
  'profile_complete': True,
  'qualiti': 1,
  'rank': 1,
  'seo': 1,
  'skill': 1,
  'time': 1,
  'traffic': 1,
  'web': 3,
  'web/blog': 1,
  'work': 1,
  'write': 2,
  'writer': 1},
 33: {'.net': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='3'>,
  'First': 'w',
  'Last': '3',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'adob': 1,
  'also': 1,
  'asp': 1,
  'base': 1,
  'best': 1,
  'c': 1,
  'certif': 1,
  'client': 1,
  'cucumb': 1,
  'current': 1,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'establish': 1,
  'facebook_connected': True,
  'goal': 1,
  'good': 1,
  'great': 1,
  'identity_verified': False,
  'illustr': 1,
  'knowledg': 1,
  'mvc': 1,
  'nunit': 1,
  'opportun': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'practic': 1,
  'profici': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'rail': 1,
  'relationship': 1,
  'rspec': 1,
  'rubi': 2,
  'satisfi': 1,
  'servic': 1,
  'softwar': 1,
  'tdd': 1,
  'uk': 1,
  'use': 2,
  'work': 2},
 34: {'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'd',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abl': 2,
  'academ': 1,
  'accur': 1,
  'across': 1,
  'also': 4,
  'articl': 2,
  'assist': 1,
  'churn': 1,
  'content': 1,
  'copyedit': 1,
  'deposit_made': True,
  'differ': 1,
  'done': 1,
  'editor': 1,
  'editori': 1,
  'email_verified': True,
  'essay': 2,
  'excel': 1,
  'experi': 1,
  'extens': 1,
  'facebook_connected': False,
  'fast': 1,
  'fiction': 1,
  'function': 1,
  'identity_verified': False,
  'job': 1,
  'nich': 1,
  'non-fict': 1,
  'payment_verified': False,
  'phone_verified': True,
  'piec': 1,
  'possess': 1,
  'produc': 1,
  'profile_complete': True,
  'project': 1,
  'proofread': 1,
  'relat': 1,
  'scholarli': 1,
  'seo': 1,
  'short': 1,
  'skill': 2,
  'time': 1,
  'transcript': 2,
  'transcriptionist': 1,
  'turnaround': 1,
  'type': 1,
  'use': 2,
  'virtual': 1,
  'well.i': 1,
  'write': 1},
 35: {"'m": 2,
  '+4': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
  'First': 'b',
  'Last': '0',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'experienc': 1,
  'facebook_connected': False,
  'fast': 1,
  'flexibl': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'realli': 1,
  'wordpress': 1,
  'year': 1},
 36: {"'m": 2,
  '.i': 2,
  '10': 1,
  '3': 1,
  '5.1': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'u',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'administr': 1,
  'avail': 1,
  'bootstrap': 1,
  'deposit_made': False,
  'develop': 2,
  'digit': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'host': 1,
  'identity_verified': False,
  'job': 1,
  'jqueri': 1,
  'laravel': 3,
  'ocean': 1,
  'odd': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'senior': 1,
  'server': 1,
  'special': 1,
  'twitter': 1,
  'unmanag': 1,
  'work': 1,
  'year': 1},
 37: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'y',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'administr': 1,
  'also': 1,
  'apach': 1,
  'c++': 1,
  'css': 1,
  'degre': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'expert': 1,
  'facebook_connected': False,
  'html': 1,
  'identity_verified': False,
  'jqueri': 1,
  'js': 1,
  'linux': 1,
  'mathemat': 1,
  'mysql': 1,
  'payment_verified': True,
  'phd': 1,
  'phone_verified': True,
  'php': 1,
  'physic': 1,
  'profession': 1,
  'profile_complete': True,
  'program': 1,
  'server': 1,
  'skill': 1,
  'statist': 1,
  'strong': 1},
 38: {"'m": 1,
  '6': 1,
  'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'n',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
  'alway': 1,
  'art': 1,
  'best': 1,
  'bsc': 1,
  'busi': 1,
  'card': 1,
  'check': 1,
  'client': 1,
  'cours': 1,
  'creat': 1,
  'degre': 1,
  'deposit_made': False,
  'design': 5,
  'design.i': 1,
  'easi': 1,
  'email_verified': True,
  'experi': 2,
  'experienc': 1,
  'facebook_connected': False,
  'find': 1,
  'fine': 1,
  'forward': 1,
  'graphic': 2,
  'help': 1,
  'identity_verified': False,
  'illustr': 1,
  'includ': 2,
  'industri': 1,
  'like': 1,
  'logo': 1,
  'look': 1,
  'microsoft': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 2,
  'pleas': 1,
  'portfolio.i': 1,
  'possibl': 1,
  'profil': 1,
  'profile_complete': True,
  'program': 1,
  'publish': 1,
  'sampl': 1,
  'start': 1,
  'subject': 1,
  'take': 1,
  'taken': 1,
  'time': 1,
  'use': 1,
  'view': 1,
  'want': 1,
  'web': 1,
  'websit': 1,
  'work': 4,
  'year': 1},
 39: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
  'First': 'a',
  'Last': '4',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'arm': 1,
  'around': 1,
  'bachelor': 1,
  'board': 1,
  'c': 1,
  'comput': 1,
  'deposit_made': False,
  'develop': 1,
  'devic': 1,
  'domain': 1,
  'driver': 1,
  'e.t.c': 2,
  'email_verified': True,
  'embed': 1,
  'experi': 1,
  'extens': 1,
  'facebook_connected': False,
  'graduat': 1,
  'i2c': 1,
  'identity_verified': False,
  'interfac': 1,
  'like': 2,
  'linux': 1,
  'mac': 1,
  'network': 1,
  'packag': 1,
  'payment_verified': False,
  'pci': 1,
  'phone_verified': False,
  'processor': 1,
  'profession': 1,
  'profile_complete': True,
  'scienc': 1,
  'softwar': 1,
  'spi': 1,
  'storag': 1,
  'support': 1,
  'usb': 1,
  'variou': 1,
  'work': 3},
 40: {'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'anim': 1,
  'applic': 2,
  'deposit_made': False,
  'design': 1,
  'differ': 1,
  'email_verified': True,
  'expertis': 1,
  'facebook_connected': False,
  'game': 1,
  'identity_verified': False,
  'multipl': 1,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': True,
  'platform': 1,
  'profile_complete': True,
  'program': 1,
  'prove': 1,
  'standalon': 1,
  'team': 1,
  'technolog': 1,
  'video': 1,
  'web': 1},
 41: {'5': 1,
  '7-14': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='4'>,
  'First': 's',
  'Last': 'u',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'age': 1,
  'class': 1,
  'deposit_made': True,
  'dollars/hour.i': 1,
  'email_verified': True,
  'everywher': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'kid': 1,
  'line': 1,
  'make': 1,
  'math': 1,
  'payment_verified': True,
  'phone_verified': True,
  'price': 1,
  'profile_complete': True,
  'wait': 1,
  'welcom': 1,
  'wolrd': 1,
  'year': 1},
 42: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'e',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
  'a+': 1,
  'certif': 1,
  'ciw': 2,
  'databas': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'mcp': 1,
  'mct': 1,
  'network+': 1,
  'payment_verified': True,
  'phone_verified': True,
  'pro': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'staff': 1,
  'support': 1,
  'technician': 1},
 43: {"'m": 1,
  '27': 1,
  '2nd': 1,
  '60': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
  'First': 'L',
  'Last': '5',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='E'>,
  'access': 1,
  'also': 1,
  'british': 1,
  'bsc': 1,
  'candid': 1,
  'certif': 1,
  'chang': 1,
  'colombo': 1,
  'comput': 1,
  'council': 1,
  'cours': 1,
  'custom': 1,
  'data': 1,
  'degre': 3,
  'depart': 1,
  'deposit_made': False,
  'develop': 1,
  'diploma': 1,
  'econom': 1,
  'educ': 1,
  'email_verified': True,
  'english': 1,
  'enquiri': 1,
  'examin': 1,
  'excel': 1,
  'experi': 1,
  'extern': 2,
  'facebook_connected': False,
  'freelanc': 1,
  'gain': 1,
  'hi': 1,
  'hour': 1,
  'hsbc': 1,
  'identity_verified': False,
  'includ': 1,
  'inform': 1,
  'informat': 1,
  'interview': 1,
  'job': 2,
  'languag': 1,
  'lanka': 2,
  'london': 2,
  'make': 1,
  'manag': 3,
  'market': 1,
  'much': 2,
  'old': 1,
  'paper': 1,
  'part': 2,
  'part-tim': 1,
  'payment_verified': False,
  'phone_verified': False,
  'powerpoint': 1,
  'process': 1,
  'profession': 1,
  'profile_complete': True,
  'programm': 2,
  'qualif': 1,
  'repres': 1,
  'research': 2,
  'role': 1,
  'sector': 1,
  'servic': 1,
  'singapor': 1,
  'skill': 1,
  'sri': 2,
  'studi': 1,
  'suitabl': 1,
  'survey': 1,
  'system': 1,
  'thank': 1,
  'train': 1,
  'uk': 1,
  'univers': 1,
  'upper': 1,
  'word': 1,
  'work': 2,
  'year': 1},
 44: {'3d': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'l',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'cad': 2,
  'consum': 1,
  'deposit_made': False,
  'design': 4,
  'email_verified': True,
  'english': 1,
  'experi': 1,
  'experienc': 1,
  'export': 1,
  'facebook_connected': False,
  'hi': 1,
  'identity_verified': False,
  'knowledg': 1,
  'machin': 1,
  'manufactur': 2,
  'model': 1,
  'mold': 1,
  'payment_verified': False,
  'phone_verified': True,
  'print': 1,
  'process': 1,
  'product': 2,
  'profile_complete': True,
  'qualif': 1,
  'softwar': 1,
  'solidwork': 1,
  'spanish': 1,
  'surfac': 1,
  'use': 1,
  'year': 1},
 45: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
  'Digit': None,
  'First': 'K',
  'Last': 'y',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
  'abstract': 1,
  'advertis': 3,
  'adword': 1,
  'also': 1,
  'artist': 1,
  'campaign': 1,
  'charact': 1,
  'color': 1,
  'deposit_made': False,
  'design': 2,
  'digit': 1,
  'email_verified': True,
  'experi': 1,
  'extens': 1,
  'facebook_connected': False,
  'flyer': 1,
  'identity_verified': False,
  'industri': 1,
  'kyle': 1,
  'magazin': 1,
  'manag': 1,
  'murphi': 1,
  'name': 1,
  'onlin': 1,
  'ontario': 1,
  'paint': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'sem': 1,
  'southern': 1,
  'special': 1,
  'standard': 1,
  'success': 1,
  'work': 2},
 46: {"'m": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
  'First': 'm',
  'Last': '1',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'alway': 1,
  'articl': 1,
  'deposit_made': False,
  'edit': 1,
  'email_verified': True,
  'enjoy': 1,
  'error': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'look': 1,
  'love': 1,
  'new': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'proofread': 1,
  'proud': 1,
  'research': 1,
  'short': 1,
  'thing': 1,
  'turn': 1,
  'work': 1,
  'write': 1},
 47: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'r',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='u'>,
  'addr': 1,
  'bangladesh': 1,
  'deposit_made': False,
  'dhaka': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'md': 2,
  'name': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True},
 48: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'a',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'also': 1,
  'colour': 1,
  'corpor': 1,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'help': 1,
  'ident': 1,
  'identity_verified': False,
  'logo': 1,
  'page': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php/mysql': 1,
  'profile_complete': True,
  'project': 1,
  'style': 1,
  'web': 1,
  'will': 1,
  'work': 1},
 49: {"'re": 1,
  '10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
  '\\xc3\\xbe\\tadvis': 4,
  '\\xc3\\xbe\\tassist': 2,
  '\\xc3\\xbe\\tpay': 3,
  '\\xc3\\xbe\\tperform': 2,
  '\\xe2\\u20ac\\u201c': 6,
  'a/r': 1,
  'abl': 1,
  'access': 1,
  'account': 12,
  'achiev': 1,
  'acquisit': 1,
  'act': 1,
  'action': 1,
  'activ': 1,
  'ad': 1,
  'addit': 1,
  'adjust': 1,
  'advanc': 1,
  'advic': 2,
  'advis': 1,
  'advisori': 4,
  'agenc': 1,
  'agent': 1,
  'agreement': 3,
  'aim': 1,
  'along': 1,
  'also': 2,
  'analysi': 5,
  'annual': 1,
  'anticip': 2,
  'appeal': 1,
  'applic': 2,
  'approach': 1,
  'appropri': 1,
  'approv': 1,
  'approxim': 1,
  'area': 2,
  'around': 1,
  'aspect': 2,
  'asset': 1,
  'assist': 1,
  'associ': 3,
  'audit': 4,
  'author': 1,
  'avail': 1,
  'balanc': 1,
  'bank': 1,
  'base': 1,
  'best': 1,
  'better': 1,
  'bill': 2,
  'board': 2,
  'book': 2,
  'bottom': 1,
  'budget': 2,
  'busi': 22,
  'buyout': 1,
  'capit': 1,
  'card': 1,
  'cash': 2,
  'centr': 2,
  'certain': 1,
  'chang': 1,
  'changeov': 1,
  'check': 1,
  'choos': 1,
  'citi': 1,
  'claim': 2,
  'client': 7,
  'client\\xe2\\u20ac\\u2122': 1,
  'clients\\xe2\\u20ac\\u2122': 1,
  'clientsw': 1,
  'combin': 1,
  'compani': 4,
  'company\\xe2\\u20ac\\u2122': 1,
  'compens': 1,
  'complex': 2,
  'complianc': 2,
  'compon': 1,
  'conduct': 1,
  'conjunct': 1,
  'consult': 2,
  'contact': 1,
  'control': 2,
  'core': 1,
  'corpor': 3,
  'cost': 10,
  'cost-effect': 1,
  'cost/benefit': 1,
  'could': 1,
  'cours': 1,
  'credit': 4,
  'custom': 6,
  'deal': 1,
  'declin': 1,
  'deduct': 1,
  'deliv': 1,
  'depart': 1,
  'depend': 1,
  'deposit_made': True,
  'depreci': 1,
  'detail': 1,
  'differ': 2,
  'direct': 2,
  'distribut': 1,
  'divis': 2,
  'document': 3,
  'draft': 1,
  'due': 1,
  'earn': 1,
  'easili': 1,
  'effect': 1,
  'effici': 1,
  'electr': 1,
  'email_verified': True,
  'enabl': 1,
  'end': 1,
  'enjoy': 1,
  'ensur': 1,
  'enter': 1,
  'entri': 1,
  'establish': 3,
  'estim': 1,
  'etc': 2,
  'execut': 1,
  'exercis': 2,
  'expans': 1,
  'experienc': 1,
  'expert': 2,
  'facebook_connected': True,
  'facil': 1,
  'facilit': 1,
  'feasibl': 3,
  'financ': 4,
  'financi': 9,
  'firm': 4,
  'fix': 1,
  'flow': 1,
  'focus': 2,
  'formul': 1,
  'fraud': 2,
  'full': 2,
  'function': 2,
  'furnitur': 1,
  'futur': 1,
  'gener': 2,
  'get': 1,
  'go': 1,
  'goal': 1,
  'govern': 1,
  'grow': 1,
  'histor': 1,
  'identifi': 1,
  'identity_verified': False,
  'impact': 1,
  'implement': 1,
  'incent': 1,
  'includ': 6,
  'incom': 3,
  'indirect': 2,
  'individu': 1,
  'industri': 3,
  'inform': 1,
  'instead': 1,
  'insur': 3,
  'intern': 2,
  'inventori': 3,
  'investig': 1,
  'invoic': 2,
  'involv': 2,
  'issu': 1,
  'it\\xe2\\u20ac\\u2122': 1,
  'job': 1,
  'journal': 1,
  'leav': 2,
  'legal': 4,
  'legisl': 1,
  'level': 1,
  'liquid': 1,
  'list': 2,
  'litig': 2,
  'local': 1,
  'locat': 1,
  'long': 2,
  'look': 1,
  'loss': 1,
  'mail': 1,
  'maintain': 1,
  'major': 2,
  'make': 1,
  'manag': 7,
  'matter': 2,
  'medic': 1,
  'medium': 1,
  'meet': 3,
  'memo': 1,
  'memoranda': 1,
  'mission': 1,
  'model': 2,
  'monthli': 3,
  'nation': 1,
  'natur': 1,
  'need': 2,
  'new': 1,
  'ngong': 2,
  'nhif': 3,
  'non-financi': 1,
  'nssf': 3,
  'object': 1,
  'offer': 1,
  'offic': 1,
  'oper': 3,
  'order': 1,
  'organization\\xe2\\u20ac\\u2122': 1,
  'outsourc': 3,
  'packag': 1,
  'paramet': 1,
  'park': 1,
  'part': 1,
  'particip': 1,
  'partner': 1,
  'pay': 4,
  'payabl': 1,
  'payment': 1,
  'payment_verified': False,
  'payrol': 3,
  'perform': 1,
  'period': 1,
  'person': 1,
  'phone_verified': True,
  'pick': 1,
  'place': 1,
  'plan': 5,
  'point': 1,
  'polici': 2,
  'post': 1,
  'practic': 1,
  'prepar': 9,
  'prevent': 1,
  'price': 1,
  'problem': 1,
  'procedur': 2,
  'process': 4,
  'profession': 1,
  'profile_complete': True,
  'profit': 2,
  'project': 2,
  'protect': 1,
  'provid': 10,
  'purchas': 2,
  'qualifi': 1,
  'queri': 1,
  'rang': 4,
  'ratio': 1,
  'real': 1,
  'receiv': 1,
  'recogn': 1,
  'reconcil': 1,
  'record': 2,
  'recoveri': 1,
  'reduc': 1,
  'refund': 1,
  'regist': 1,
  'registr': 2,
  'registrar': 1,
  'relat': 1,
  'rent': 1,
  'report': 4,
  'request': 1,
  'requir': 3,
  'restructur': 3,
  'retir': 1,
  'return': 2,
  'review': 1,
  'right': 1,
  'risk': 2,
  'road': 2,
  'routin': 2,
  'run': 1,
  'safe': 1,
  'secretari': 5,
  'secur': 1,
  'seminar': 2,
  'servic': 16,
  'servicesw': 2,
  'set': 2,
  'set-up': 1,
  'sharehold': 2,
  'sick': 1,
  'similar': 1,
  'situat': 1,
  'size': 2,
  'slip': 1,
  'small': 1,
  'softwar': 1,
  'solut': 3,
  'space': 1,
  'specialis': 1,
  'specif': 3,
  'spent': 3,
  'staff': 2,
  'statement': 4,
  'statu': 1,
  'statutori': 2,
  'strateg': 1,
  'strategi': 1,
  'studi': 2,
  'submiss': 2,
  'submit': 1,
  'suitabl': 1,
  'supplier': 2,
  'support': 4,
  'sustain': 1,
  'system': 4,
  'tailor': 1,
  'tax': 19,
  'taxat': 2,
  'team': 1,
  'technolog': 1,
  'telephon': 1,
  'term': 3,
  'therebi': 1,
  'time': 5,
  'timesheet': 1,
  'train': 4,
  'trend': 1,
  'tune-up': 1,
  'turn': 1,
  'turnov': 1,
  'type': 1,
  'understand': 1,
  'undertaken': 1,
  'updat': 1,
  'use': 2,
  'vacat': 1,
  'valu': 2,
  'valuat': 2,
  'varianc': 1,
  'variou': 1,
  'vat': 2,
  'viabl': 1,
  'view': 1,
  'wage': 1,
  'well': 1,
  'whether': 1,
  'wide': 1,
  'wind': 1,
  'wit': 1,
  'work': 1},
 50: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
  'First': 's',
  'Last': '0',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'alway': 1,
  'articles-': 2,
  'best': 1,
  'blog': 1,
  'comfort': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'forum': 1,
  'help': 1,
  'identity_verified': False,
  'obtain': 1,
  'order': 1,
  'payment_verified': True,
  'phone_verified': False,
  'posts-': 1,
  'profile_complete': True,
  'research': 1,
  'result': 1,
  'rewrit': 1,
  'subject': 1,
  'thoroughli': 1,
  'write': 1},
 51: {'3.0': 1,
  '8+': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
  'First': 't',
  'Last': 'e',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'ajax': 1,
  'c': 1,
  'deposit_made': False,
  'desktop': 1,
  'develop': 2,
  'driver': 1,
  'email_verified': True,
  'embed': 1,
  'employe': 1,
  'etc': 3,
  'experi': 1,
  'facebook_connected': False,
  'firm': 1,
  'framework': 2,
  'hotel': 1,
  'identity_verified': False,
  'instal': 1,
  'java': 1,
  'javascript': 1,
  'jdbc': 1,
  'jsp': 1,
  'jstl': 1,
  'like': 1,
  'manag': 4,
  'monitor': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'platform.i': 1,
  'profession': 1,
  'profile_complete': True,
  'programm': 1,
  'project': 2,
  'remot': 2,
  'secur': 1,
  'servlet': 1,
  'soa': 1,
  'softwar': 3,
  'spring': 2,
  'supermarket': 1,
  'system': 4,
  'templat': 1,
  'use': 1,
  'variou': 1,
  'webservic': 1,
  'windows/linux': 1,
  'work': 1,
  'year': 1},
 52: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'o',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'anytim': 1,
  'around': 1,
  'avail': 1,
  'deposit_made': False,
  'email_verified': True,
  'enough': 1,
  'facebook_connected': False,
  'fair': 1,
  'identity_verified': False,
  'internet': 1,
  'mess': 1,
  "n't": 1,
  'payment_verified': False,
  'phone_verified': False,
  'pleas': 1,
  'profile_complete': True,
  'scam': 1,
  'scammer': 1,
  'start': 1},
 53: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
  'First': 's',
  'Last': '8',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'broaden': 1,
  'complement': 1,
  'deposit_made': False,
  'dynam': 1,
  'email_verified': True,
  'environ': 1,
  'experi': 2,
  'facebook_connected': False,
  'gain': 1,
  'horizon': 1,
  'identity_verified': False,
  'knowledg': 1,
  'payment_verified': False,
  'phone_verified': False,
  'practic': 1,
  'profile_complete': True,
  'theoret': 1,
  'work': 1},
 54: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(12, 13), match='1'>,
  'First': 'n',
  'Last': '8',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'anyon': 1,
  'complet': 1,
  'data': 2,
  'deposit_made': True,
  'email_verified': True,
  'entri': 2,
  'facebook_connected': False,
  'guy': 1,
  'hard': 1,
  'identity_verified': False,
  'mani': 2,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'requir': 1,
  'sincer': 1,
  'websit': 1,
  'work': 2},
 55: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'api': 1,
  'codeignit': 1,
  'css': 1,
  'deposit_made': False,
  'develop': 1,
  'dynam': 1,
  'email_verified': True,
  'experi': 1,
  'extens': 1,
  'facebook': 1,
  'facebook_connected': True,
  'handl': 1,
  'html': 1,
  'identity_verified': False,
  'javascript': 1,
  'joomla': 1,
  'jqueri': 1,
  'knowledg': 1,
  'larg': 1,
  'mysql': 1,
  'number': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'qualifi': 1,
  'talent': 1,
  'technic': 1,
  'wordpress': 1,
  'year': 1},
 56: {'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'n',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'custom': 1,
  'deliveri': 1,
  'deposit_made': False,
  'electr': 1,
  'electron': 1,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'lot': 1,
  'loyal': 1,
  'mba': 1,
  'one': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'promis': 1,
  'regret': 1,
  'skill': 1,
  'time': 1,
  'type': 1,
  'variou': 1,
  'work': 1,
  'would': 1,
  'write': 1},
 57: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': None,
  'First': 'D',
  'Last': 'e',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'best': 1,
  'break': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'famili': 1,
  'freelanc': 1,
  'good': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'reason': 1,
  'start': 1,
  'took': 1,
  'tri': 1,
  'want': 1,
  'work': 1},
 58: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
  'Digit': None,
  'First': 'O',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>,
  'blog': 1,
  'creativ': 1,
  'data': 1,
  'databas': 1,
  'deposit_made': True,
  'done': 1,
  'email_verified': True,
  'end': 1,
  'entri': 1,
  'facebook_connected': False,
  'full': 1,
  'get': 1,
  'identity_verified': False,
  'look': 1,
  'make': 1,
  'meet': 1,
  'muscl': 1,
  'opportun': 1,
  'part': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profici': 1,
  'profile_complete': True,
  'quickli': 1,
  'quit': 1,
  'still': 1,
  'time': 3,
  'tri': 1,
  'work': 2,
  'writer': 1},
 59: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
  'Digit': None,
  'First': 'J',
  'Last': 'y',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'activ': 1,
  'age': 1,
  'also': 3,
  'apart': 1,
  'attitud': 1,
  'blog': 1,
  'busi': 1,
  'come': 1,
  'content': 1,
  'creat': 1,
  'creativ': 2,
  'deadlin': 1,
  'deposit_made': False,
  'develop': 1,
  'discuss': 1,
  'earli': 1,
  'edit': 1,
  'editori': 1,
  'email_verified': True,
  'essay': 1,
  'experi': 2,
  'experienc': 1,
  'extens': 1,
  'facebook_connected': False,
  'field': 1,
  'filipino': 1,
  'forum': 1,
  'freelanc': 1,
  'gaf': 1,
  'good': 1,
  'great': 1,
  'high': 1,
  'hold': 2,
  'identity_verified': False,
  'independ': 1,
  'join': 1,
  'joy': 1,
  'level': 1,
  'love': 1,
  'mani': 1,
  'matur': 1,
  'much': 2,
  'need': 1,
  'network': 1,
  'payment_verified': False,
  'philippin': 1,
  'phone_verified': False,
  'pleas': 1,
  'poem': 1,
  'post': 1,
  'practic': 1,
  'profil': 1,
  'profile_complete': True,
  'qualiti': 2,
  'review': 1,
  'right': 1,
  'sampl': 1,
  'self-motiv': 1,
  'seo': 1,
  'sever': 1,
  'short': 1,
  'side': 1,
  'sinc': 1,
  'site': 1,
  'spectrum': 1,
  'stori': 1,
  'talent': 1,
  'target': 1,
  'team': 2,
  'toward': 1,
  'visit': 2,
  'web': 2,
  'well': 4,
  'work': 2,
  'worker': 1,
  'write': 3,
  'writer': 4,
  'year': 1},
 60: {"'ve": 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'o',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'abroad': 1,
  'academ': 2,
  'alway': 1,
  'audio/video': 1,
  'basi': 1,
  'come': 1,
  'commun': 1,
  'degre': 1,
  'deposit_made': False,
  'deriv': 1,
  'email_verified': True,
  'engin': 1,
  'english': 1,
  'excel': 1,
  'experi': 3,
  'extend': 1,
  'facebook_connected': False,
  'fellow': 1,
  'fluent': 1,
  'franc': 1,
  'french': 1,
  'full-tim': 1,
  'human': 1,
  'humanit': 1,
  'identity_verified': False,
  'ii': 1,
  'interest': 1,
  'ireland': 1,
  'itali': 1,
  'job': 1,
  'legal': 1,
  'level': 1,
  'malta': 1,
  'master': 1,
  'medical/pharmaceut': 1,
  'militari': 1,
  'past': 1,
  'payment_verified': False,
  'period': 1,
  'phone_verified': False,
  'profile_complete': True,
  'redactor': 1,
  'research': 2,
  'result': 1,
  'scienc': 2,
  'scotland': 1,
  'sinc': 1,
  'six': 1,
  'skill': 1,
  'social': 1,
  'steward/interpret': 1,
  'studi': 1,
  'technic': 1,
  'technician': 2,
  'text': 1,
  'translat': 2,
  'two': 1,
  'variou': 1,
  'work': 2,
  'write': 1,
  'writer': 1,
  'year': 2},
 61: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'e',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'adventur': 1,
  'bigger': 1,
  'client': 1,
  'creativ': 1,
  'deposit_made': False,
  'email_verified': True,
  'enthusiasm': 1,
  'envis': 1,
  'facebook_connected': False,
  'fast-learn': 1,
  'full': 1,
  'help': 1,
  'identity_verified': False,
  'market': 2,
  'motiv': 1,
  'onlin': 2,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pictur': 1,
  'profile_complete': True,
  'results-ori': 1,
  'seo': 1,
  'staff': 1,
  'thinker': 1,
  'three': 1,
  'work': 1,
  'year': 1},
 62: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 's',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'activ': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'final': 1,
  'go': 1,
  'home': 1,
  'husband': 1,
  'identity_verified': False,
  'interest': 1,
  'keep': 1,
  'kid': 1,
  'mom': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'school': 1,
  'start': 1,
  'stay': 1,
  'support': 1},
 63: {'.net': 1,
  'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'c',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'analysi': 1,
  'applic': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'in-depth': 1,
  'investig': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'proven': 1,
  'skill': 1,
  'sql': 1,
  'strong': 1},
 64: {'12+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'l',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'seo': 1,
  'web': 1,
  'year': 1},
 65: {"'m": 1,
  '10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'k',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'advic': 1,
  'apach': 1,
  'base': 1,
  'blog': 1,
  'bug': 1,
  'chang': 1,
  'codeignit': 1,
  'contact': 1,
  'databas': 1,
  'deposit_made': False,
  'design': 1,
  'drupal': 1,
  'email_verified': True,
  'etc': 1,
  'experi': 1,
  'facebook_connected': False,
  'fast': 1,
  'favorit': 1,
  'fix': 1,
  'framework': 1,
  'freelancer.i': 1,
  'help': 2,
  'host': 1,
  'hourli': 1,
  'identity_verified': False,
  'instal': 1,
  'joomla': 1,
  'lamp': 1,
  'lighttpd': 1,
  'like': 4,
  'linux': 1,
  'lot': 1,
  'mysql': 1,
  'need': 2,
  'payment_verified': False,
  'phone_verified': False,
  'php': 3,
  'pleas': 1,
  'price': 1,
  'profile_complete': True,
  'project.i': 1,
  'rate': 1,
  'script': 1,
  'server': 1,
  'setup': 1,
  'site': 2,
  'sqlite': 1,
  'suggest': 1,
  'web': 5,
  'whole': 1,
  'wordpress': 1,
  'year': 1},
 66: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='8'>,
  'First': 'O',
  'Last': '6',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>,
  'appear': 1,
  'click': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'game': 1,
  'home': 1,
  'identity_verified': False,
  'logo': 1,
  'page': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'program': 1,
  'puzzl': 1},
 67: {'9': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='e'>,
  'add': 1,
  'anim': 1,
  'banner': 1,
  'budget': 1,
  'client': 1,
  'creat': 1,
  'custom': 2,
  'deposit_made': False,
  'design': 3,
  'dream': 1,
  'email_verified': True,
  'etc': 1,
  'experi': 1,
  'facebook_connected': False,
  'flash': 2,
  'globe.i': 1,
  'graphic': 1,
  'high': 1,
  'identity_verified': False,
  'illustr': 1,
  'insid': 1,
  'lot': 1,
  'make': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'program': 1,
  'qualiti': 1,
  'realiti': 1,
  'web': 1,
  'wordpress': 1,
  'work': 1,
  'year': 1},
 68: {'...': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'm',
  'Last': '1',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'account': 1,
  'australian': 1,
  'custom': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'inbound': 1,
  'outbound': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'repres': 1,
  'servic': 1,
  'us': 1,
  'work': 1},
 69: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ajax': 1,
  'android': 1,
  'cm': 1,
  'cs5': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'getway': 1,
  'html': 1,
  'identity_verified': False,
  'illustr': 1,
  'implement': 1,
  'integr': 1,
  'mysqljavascript': 1,
  'payment': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'variou': 1},
 70: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'z',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'effect': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'model': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photorealist': 1,
  'profile_complete': True,
  'render': 1,
  'special': 1,
  'textur': 1},
 71: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'a',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'deposit_made': False,
  'editor': 1,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'region': 1,
  'station': 1,
  'tv': 1},
 72: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'i',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'accord': 1,
  'base': 1,
  'cart': 2,
  'compani': 1,
  'custom': 1,
  'deal': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'full': 1,
  'identity_verified': False,
  'individu': 1,
  'modul': 1,
  'need': 1,
  'oscommerc': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'seo': 1,
  'shop': 2,
  'structur': 1},
 73: {"'m": 1,
  '2d': 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'anim': 1,
  'artist': 1,
  'check': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'updat': 1,
  'visual': 1,
  'websit': 1,
  'work': 1},
 74: {'15': 1,
  '300': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='0'>,
  'First': 'c',
  'Last': '2',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(5, 6), match='a'>,
  'afford': 1,
  'attract': 1,
  'busi': 1,
  'deposit_made': False,
  'develop': 1,
  'dilig': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'industri': 1,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': False,
  'plu': 1,
  'produc': 1,
  'profile_complete': True,
  'rate': 1,
  'serv': 1,
  'type': 1,
  'variou': 1,
  'web': 1,
  'websit': 1,
  'work': 1,
  'year': 1},
 75: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='Z'>,
  'Digit': None,
  'First': 'Z',
  'Last': 'h',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'angularj': 1,
  'cm': 1,
  'coder': 1,
  'cs-cart': 1,
  'css3': 1,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'facebook_connected': True,
  'frontend': 1,
  'html5': 1,
  'identity_verified': False,
  'implement': 1,
  'javascript': 1,
  'joomla': 1,
  'jqueri': 1,
  'magento': 1,
  'modx': 1,
  'nativ': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'site': 1,
  'skill': 1,
  'strong': 1,
  'web': 2,
  'wordpress': 1},
 76: {"'m": 1,
  "'s": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'p',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'anim': 2,
  'atlanta': 1,
  'contact': 1,
  'creat': 1,
  'creativ': 1,
  'deposit_made': False,
  'design': 2,
  'discuss': 1,
  'email_verified': True,
  'facebook_connected': True,
  'flash': 1,
  'freelanc': 1,
  'georgia': 1,
  'greet': 1,
  'identity_verified': False,
  'illustr': 1,
  'let': 1,
  'love': 1,
  'network': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'today': 1},
 77: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'z',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'appli': 1,
  'best': 1,
  'dedic': 1,
  'deposit_made': True,
  'determin': 1,
  'email_verified': True,
  'facebook_connected': True,
  'hand': 2,
  'hard': 1,
  'identity_verified': False,
  'job': 1,
  'lose': 1,
  'payment_verified': False,
  'phone_verified': True,
  'price': 1,
  'profile_complete': True,
  'success': 1,
  'task': 1,
  'whether': 1,
  'win': 1,
  'work': 1},
 78: {"'m": 1,
  '3': 1,
  '8': 2,
  'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'h',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'aesthet': 1,
  'allow': 1,
  'appli': 1,
  'attent': 1,
  'cm': 1,
  'collabor': 1,
  'combin': 1,
  'conceptu': 2,
  'creativ': 1,
  'css': 1,
  'custom': 1,
  'cut': 1,
  'deposit_made': True,
  'design': 4,
  'detail': 1,
  'develop': 4,
  'dreamweav': 1,
  'edg': 1,
  'email_verified': True,
  'except': 1,
  'experi': 1,
  'expertis': 1,
  'extrem': 1,
  'facebook_connected': False,
  'firework': 1,
  'flash': 1,
  'freehand': 1,
  'get': 1,
  'graphic': 1,
  'identity_verified': False,
  'illustr': 1,
  'imagereadi': 1,
  'involv': 1,
  'joomla': 1,
  'launch': 2,
  'leader': 1,
  'leadership': 1,
  'lot': 1,
  'manag': 1,
  'ms': 1,
  'ning': 1,
  'nonsens': 1,
  'payment_verified': False,
  'philippin': 1,
  'phone_verified': False,
  'photoshop': 1,
  'php': 1,
  'process': 1,
  'profici': 1,
  'profile_complete': True,
  'project': 1,
  'rang': 1,
  'research': 1,
  'rigor': 1,
  'sens': 1,
  'site': 1,
  'skill': 1,
  'strong': 1,
  'team': 2,
  'theme': 1,
  'usabl': 1,
  'web': 4,
  'web/graph': 1,
  'wordpress': 1,
  'year': 1},
 79: {'1.': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='5'>,
  'First': 'R',
  'Last': '4',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'asset': 1,
  'atm': 1,
  'authent': 3,
  'base': 3,
  'busi': 1,
  'card': 4,
  'complet': 4,
  'concept': 1,
  'cryptographi': 1,
  'deploy': 1,
  'deposit_made': True,
  'design': 4,
  'develop': 4,
  'email_verified': True,
  'fabric': 1,
  'facebook_connected': False,
  'finger': 1,
  'identity_verified': False,
  'implement': 1,
  'integr': 1,
  'internet': 1,
  'key': 1,
  'manag': 2,
  'palm': 1,
  'particularli': 1,
  'payment_verified': False,
  'phone_verified': False,
  'print': 1,
  'process': 1,
  'profile_complete': True,
  'servic': 1,
  'smart': 4,
  'softwar': 3,
  'solut': 2,
  'strong': 1,
  'system': 2,
  'technolog': 1,
  'termin': 1,
  'track': 2,
  'vehicl': 1,
  'web': 1},
 80: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
  'Digit': None,
  'First': 'C',
  'Last': 'z',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'cultur': 1,
  'deposit_made': False,
  'email_verified': True,
  'energet': 1,
  'explor': 1,
  'facebook_connected': False,
  'fast': 1,
  'flexibl': 1,
  'free': 1,
  'honest': 1,
  'identity_verified': False,
  'learn': 1,
  'learner': 1,
  'new': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'shop': 1,
  'spirit': 1,
  'work': 1},
 81: {"'s": 1,
  '...': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'h',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'biggest': 1,
  'bpo': 1,
  'copi': 1,
  'current': 1,
  'deposit_made': False,
  'editor': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'one': 1,
  'payment_verified': False,
  'philippin': 1,
  'phone_verified': False,
  'profile_complete': True,
  'work': 1},
 82: {"'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'z',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'bachelor': 1,
  'current': 1,
  'degre': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'identity_verified': False,
  'journal': 1,
  'kent': 1,
  'name': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'state': 1,
  'univers': 1},
 83: {"'s": 1,
  '1.': 1,
  '10': 1,
  '100': 1,
  '2.': 1,
  '3.': 1,
  '4.': 1,
  '5': 1,
  '5.': 1,
  '6.': 1,
  '7.': 1,
  '8.': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 's',
  'Last': '7',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'accuraci': 1,
  'admin': 1,
  'asp': 1,
  'assur': 1,
  'case': 1,
  'check': 2,
  'commerc': 1,
  'confid': 1,
  'control': 1,
  'convers': 1,
  'data': 3,
  'deposit_made': False,
  'develop': 2,
  'dispatch': 1,
  'document': 1,
  'email_verified': True,
  'entri': 1,
  'experi': 1,
  'extract': 1,
  'facebook_connected': False,
  'file': 1,
  'final': 1,
  'follow': 2,
  'group': 1,
  'hold': 1,
  'html': 1,
  'identity_verified': False,
  'instruct': 1,
  'involv': 1,
  'macro': 1,
  'mainli': 1,
  'mine': 1,
  'mysql': 1,
  'oper': 3,
  'payment_verified': False,
  'pdf': 1,
  'person': 1,
  'phone_verified': False,
  'php': 1,
  'processor': 1,
  'profile_complete': True,
  'project': 2,
  'qc': 3,
  'qualiti': 3,
  'rest': 1,
  'scrape': 1,
  'scrapper': 1,
  'screen': 1,
  'script': 1,
  'separ': 1,
  'setup': 1,
  'softwar': 3,
  'special': 1,
  'supervisor': 1,
  'support': 1,
  'team': 2,
  'train': 1,
  'use': 1,
  'vba': 1,
  'vers': 1,
  'web': 1,
  'well': 3,
  'word': 1,
  'work': 1,
  'write': 1,
  'year': 1},
 84: {'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'almost': 1,
  'alway': 1,
  'base': 1,
  'basi': 1,
  'believ': 1,
  'chanc': 1,
  'client': 2,
  'commit': 1,
  'credibl': 1,
  'deliv': 1,
  'deposit_made': False,
  'effect': 1,
  'email_verified': True,
  'expect': 1,
  'facebook_connected': False,
  'fulfil': 1,
  'get': 1,
  'given': 1,
  'good': 3,
  'identity_verified': False,
  'keep': 1,
  'love': 1,
  'made': 1,
  'make': 1,
  'manner': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'promis': 1,
  'qualiti': 1,
  'relat': 1,
  'rest': 1,
  'simplic': 1,
  'strength': 1,
  'strongli': 1,
  'time': 1,
  'timelin': 1,
  'trust': 1,
  'work': 2,
  'work.i': 1},
 85: {'2009': 6,
  '3': 2,
  'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'p',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  '\\xe2\\u20ac\\u0153multi': 2,
  '\\xe2\\u20ac\\u0153pharmaci': 2,
  '\\xe2\\u20ac\\u201c': 2,
  'a+': 2,
  'abil': 3,
  'abl': 2,
  'accept': 1,
  'achiev': 2,
  'adopt': 1,
  'agent': 2,
  'ajax': 2,
  'almost': 2,
  'analyz': 1,
  'appl': 2,
  'applic': 12,
  'approv': 2,
  'april': 2,
  'architectur': 2,
  'area': 2,
  'base': 4,
  'block': 2,
  'challeng': 1,
  'chanc': 2,
  'chang': 1,
  'china': 2,
  'complet': 8,
  'comput': 2,
  'confer': 2,
  'cse': 2,
  'css': 2,
  'current': 2,
  'databas': 2,
  'degre': 2,
  'deposit_made': False,
  'designsoftwar': 2,
  'desir': 2,
  'develop': 6,
  'developmenteduc': 2,
  'developmentmobil': 2,
  'developmentweb': 2,
  'easili': 2,
  'effect': 1,
  'email_verified': True,
  'energi': 2,
  'eng': 2,
  'engag': 2,
  'engin': 7,
  'environ': 1,
  'experi': 4,
  'facebook_connected': False,
  'familiar': 1,
  'final': 2,
  'framework': 1,
  'free': 1,
  'fudan': 2,
  'given': 2,
  'go': 2,
  'goal': 1,
  'got': 4,
  'groceri': 2,
  'highli': 2,
  'hon': 2,
  'html': 2,
  'ide': 5,
  'identity_verified': False,
  'implement': 2,
  'individu': 1,
  'interest': 1,
  'involv': 2,
  'ipad': 2,
  'iphone/ipod': 2,
  'ironon': 2,
  'j2ee': 2,
  'j2se': 4,
  'jade': 1,
  'java': 1,
  'javascript': 2,
  'join': 2,
  'jsp': 2,
  'kind': 1,
  'knowledg': 2,
  'languag': 8,
  'lanka': 2,
  'level': 2,
  'linux': 2,
  'look': 1,
  'ltd': 2,
  'main': 4,
  'manag': 2,
  'management\\xe2\\u20ac\\x9d': 2,
  'mobil': 4,
  'month': 2,
  'moratuwa': 2,
  'moratuwa.experi': 2,
  'mysql': 1,
  'name': 4,
  'netbean': 5,
  'netbeansi': 2,
  'next': 2,
  'non': 2,
  'one': 4,
  'oracl': 1,
  'packag': 2,
  'paper': 2,
  'payment_verified': False,
  'phone_verified': False,
  'platform': 1,
  'player': 1,
  'problem': 1,
  'process': 1,
  'process.i': 1,
  'profil': 1,
  'profile_complete': True,
  'program': 6,
  'project': 19,
  'projects.i': 1,
  'publish': 2,
  'pvt': 2,
  'r': 4,
  'relat': 2,
  'research': 5,
  'scienc': 2,
  'servicesenterpris': 2,
  'seven': 2,
  'shanghai': 2,
  'sm': 2,
  'socket': 3,
  'softwar': 6,
  'sound': 2,
  'special': 2,
  'sql': 2,
  'sqldatabas': 2,
  'sri': 2,
  'stress': 1,
  'success': 6,
  'swing': 2,
  'system': 2,
  'system\\xe2\\u20ac\\x9d': 2,
  'team': 1,
  'technolog': 8,
  'throughout': 2,
  'time': 1,
  'train': 2,
  'two': 4,
  'ubuntu': 2,
  'univers': 6,
  'use': 6,
  'web': 2,
  'well': 5,
  'window': 3,
  'within': 1,
  'work': 11,
  'xml': 2,
  'year': 6},
 86: {'.net': 2,
  '2.0': 1,
  '2000': 2,
  '2000.': 1,
  '2005': 1,
  '2007': 1,
  '6.0': 1,
  '9': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='9'>,
  'First': 'k',
  'Last': '9',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'asp': 2,
  'asp.net': 3,
  'audit': 1,
  'basic': 1,
  'c': 2,
  'css': 1,
  'custom': 1,
  'deposit_made': False,
  'e-card': 1,
  'email_verified': True,
  'environ': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'file': 1,
  'flash': 1,
  'framework': 1,
  'frontpag': 1,
  'gym': 1,
  'identity_verified': False,
  'ii': 1,
  'includ': 1,
  'intern': 1,
  'intranet': 1,
  'java': 1,
  'knowledg': 1,
  'learn': 1,
  'lionbridg': 1,
  'manag': 1,
  'moss': 2,
  'ms': 2,
  'patni': 2,
  'payment_verified': False,
  'phone_verified': False,
  'pivot': 1,
  'profici': 1,
  'profile_complete': True,
  'qualiti': 1,
  'report': 1,
  'return': 1,
  'satisfact': 1,
  'script': 1,
  'server': 4,
  'sql': 3,
  'survey': 1,
  'system\\twindow': 1,
  'tax': 1,
  'technolog': 1,
  'titl': 6,
  'tool': 2,
  'use': 1,
  'vb': 1,
  'vb.net': 1,
  'vbscript': 1,
  'visual': 1,
  'websit': 4,
  'window': 1,
  'xml': 1},
 87: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': None,
  'First': 'M',
  'Last': 'l',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'accuraci': 1,
  'believ': 1,
  'compani': 1,
  'deposit_made': False,
  'email_verified': True,
  'evalu': 1,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'hardwork': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'properli': 1,
  'readi': 1,
  'success': 1,
  'work': 1},
 88: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
  'Digit': None,
  'First': 'N',
  'Last': 'y',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'acquir': 1,
  'addit': 1,
  'afraid': 1,
  'also': 1,
  'analysi': 2,
  'analyt': 1,
  'approv': 1,
  'assist': 1,
  'bachelor\\xe2\\u20ac\\u2122': 1,
  'calculu': 1,
  'circuit': 1,
  'commun': 1,
  'cours': 1,
  'cover': 1,
  'creat': 1,
  'degre': 1,
  'deposit_made': False,
  'differ': 1,
  'email_verified': True,
  'engin': 2,
  'excel': 1,
  'experi': 1,
  'facebook_connected': True,
  'found': 1,
  'fundament': 1,
  'gain': 1,
  'identity_verified': False,
  'implement': 1,
  'includ': 5,
  'initi': 1,
  'issu': 1,
  'lab': 1,
  'materi': 1,
  'may': 1,
  'mechatron': 1,
  'monitor': 1,
  'new': 2,
  'organiz': 1,
  'orient': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'physic': 1,
  'potenti': 1,
  'problem': 2,
  'process': 1,
  'product': 1,
  'profile_complete': True,
  'projects.i': 1,
  'regard': 1,
  'risk': 1,
  'robot': 1,
  'run': 1,
  'search': 1,
  'skill': 2,
  'solut': 1,
  'solv': 1,
  'spend': 1,
  'strong': 1,
  'studi': 1,
  'take': 1,
  'team': 1,
  'test': 1,
  'time': 1,
  'train': 1,
  'type': 1,
  'use': 1,
  'work': 1},
 89: {"'s": 1,
  '2004': 1,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'a',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'also': 1,
  'amazon': 1,
  'articl': 1,
  'author': 1,
  'bestsel': 1,
  'book': 1,
  'check': 1,
  'client': 1,
  'could': 1,
  'cover': 1,
  'current': 1,
  'debt': 1,
  'deposit_made': True,
  'directori': 1,
  'earn': 1,
  'email_verified': True,
  'english': 1,
  'enjoy': 1,
  'entertain': 1,
  'experi': 1,
  'facebook_connected': True,
  'fact': 1,
  'far': 1,
  'freelanc': 1,
  'googl': 1,
  'great': 2,
  'health': 1,
  'high': 1,
  'huge': 1,
  'husband': 1,
  'identity_verified': False,
  'india': 1,
  'level': 1,
  'long-term': 1,
  'math': 1,
  'maya': 1,
  'middl': 1,
  'name': 1,
  'new': 1,
  'partner': 1,
  'payment_verified': False,
  'pet': 1,
  'phone_verified': True,
  'primari': 1,
  'profess': 1,
  'profile_complete': True,
  'rang': 2,
  'revenu': 1,
  'review': 1,
  'school': 2,
  'scienc': 1,
  'search': 1,
  'set': 1,
  'sever': 1,
  'sinc': 1,
  'subject': 1,
  'submit': 1,
  'teach': 1,
  'teacher': 1,
  'turn': 1,
  'way': 1,
  'wide': 1,
  'work.i': 1,
  'write': 3},
 90: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 't',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'certifi': 1,
  'challeng': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'good': 1,
  'identity_verified': False,
  'insight': 1,
  'interest': 1,
  'payment_verified': False,
  'phone_verified': False,
  'problem': 1,
  'profile_complete': True,
  'softwar': 1,
  'startup': 1,
  'work': 1},
 91: {"'s": 1,
  "'ve": 1,
  '10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'x',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'bachelor': 1,
  'build': 1,
  'comput': 1,
  'degre': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': True,
  'familiar': 1,
  'framework': 1,
  'hold': 1,
  'identity_verified': False,
  'languag': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'scienc': 1,
  'sinc': 1,
  'varieti': 1,
  'websit': 1,
  'wide': 1},
 92: {'...': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
  'Digit': None,
  'First': 'F',
  'Last': 'V',
  'Numchar': 3,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='E'>,
  'deposit_made': True,
  'draw': 1,
  'email_verified': True,
  'facebook_connected': False,
  'hand': 1,
  'identity_verified': False,
  'old': 1,
  'payment_verified': True,
  'phone_verified': True,
  'photo': 1,
  'profile_complete': True,
  'restor': 1,
  'sketch': 1,
  'vector': 1},
 93: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': None,
  'First': 'D',
  'Last': 'o',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'current': 1,
  'decad': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'employ': 1,
  'experi': 1,
  'facebook_connected': False,
  'free': 1,
  'freelanc': 1,
  'identity_verified': False,
  'like': 1,
  'much': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'program': 1,
  'still': 1,
  'time': 1,
  'web': 1},
 94: {'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'y',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'achiev': 1,
  'answer': 1,
  'care': 1,
  'client': 3,
  'clients.w': 1,
  'commit': 3,
  'commun': 1,
  'compani': 1,
  'custom': 1,
  'deposit_made': True,
  'educ': 1,
  'email_verified': True,
  'everyth': 1,
  'facebook_connected': True,
  'goal': 1,
  'happen': 1,
  'help': 1,
  'highest': 1,
  'identity_verified': False,
  'innov': 1,
  'level': 1,
  'make': 1,
  'market': 1,
  'may': 1,
  'need': 1,
  'onlin': 1,
  'patient': 1,
  'payment_verified': True,
  'phone_verified': True,
  'power': 1,
  'profession': 1,
  'profile_complete': True,
  'promis': 1,
  'provid': 3,
  'question': 1,
  'regard': 1,
  'respons': 1,
  'see': 1,
  'servic': 3,
  'sincer': 1,
  'succeed': 1,
  'take': 1,
  'time': 1,
  'work': 1},
 95: {'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 's',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'accord': 1,
  'applic': 1,
  'deposit_made': True,
  'email_verified': True,
  'exactli': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'javascript': 1,
  'mysql': 1,
  'payment_verified': True,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'requir': 1,
  'time': 1,
  'web': 1,
  'wordpress': 1},
 96: {'.net': 1,
  '9i/10g': 1,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'r',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abil': 1,
  'advantag': 1,
  'app': 1,
  'applic': 1,
  'busi': 1,
  'c': 1,
  'commun': 1,
  'comput': 1,
  'data': 4,
  'db': 1,
  'deposit_made': False,
  'develop': 1,
  'educ': 1,
  'email_verified': True,
  'employ': 1,
  'entri': 2,
  'experi': 3,
  'facebook_connected': False,
  'five': 1,
  'growth': 1,
  'identity_verified': False,
  'java': 1,
  'long-term': 1,
  'master': 1,
  'mca': 1,
  'name': 1,
  'opportun': 1,
  'oracl': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'qualif': 1,
  'seek': 1,
  'skill': 1,
  'softwar': 1,
  'two': 1,
  'valid': 2,
  'within': 1,
  'would': 1,
  'year': 2},
 97: {'6': 1,
  '8': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': None,
  'First': 'M',
  'Last': 'n',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'algorithm': 1,
  'also': 1,
  'c++': 1,
  'challenges.w': 1,
  'charg': 1,
  'check': 1,
  'company.w': 1,
  'deposit_made': False,
  'distribut': 1,
  'dont': 1,
  'email_verified': True,
  'experi': 2,
  'facebook_connected': False,
  'huge': 1,
  'identity_verified': False,
  'index': 1,
  'innov': 1,
  'interest': 1,
  'java': 1,
  'ms': 1,
  'page': 1,
  'payment_verified': False,
  'perl': 1,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'program': 2,
  'programm': 1,
  'python': 1,
  'script': 1,
  'search': 1,
  'small': 1,
  'sourc': 1,
  'studio': 1,
  'team': 1,
  'via': 1,
  'visual': 1,
  'work': 1,
  'year': 1},
 98: {'8': 1,
  '9+': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='3'>,
  'First': 'a',
  'Last': '3',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'abil': 1,
  'adob': 2,
  'applic': 1,
  'base': 1,
  'center': 1,
  'commun': 1,
  'concept': 1,
  'corpor': 1,
  'css': 1,
  'deposit_made': True,
  'design': 4,
  'direct': 1,
  'dreamweav': 1,
  'email_verified': True,
  'environ': 1,
  'etc': 1,
  'excel': 1,
  'experi': 2,
  'facebook_connected': True,
  'factor': 1,
  'firework': 1,
  'home': 1,
  'html': 1,
  'human': 1,
  'identity_verified': False,
  'illustr': 1,
  'implement': 1,
  'interact': 1,
  'interfac': 3,
  'intranet': 1,
  'javascript': 1,
  'knowledg': 2,
  'macromedia': 2,
  'methodolog': 1,
  'model': 1,
  'overal': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'profile_complete': True,
  'record': 1,
  'site': 2,
  'skill': 1,
  'strategi': 1,
  'success': 1,
  'team': 1,
  'thorough': 1,
  'track': 1,
  'ui': 1,
  'usabl': 1,
  'use': 1,
  'user': 4,
  'user-cent': 1,
  'web': 3,
  'work': 2,
  'year': 1},
 99: {'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'm',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'access': 1,
  'compos': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'encor': 1,
  'ethic': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'high': 1,
  'identity_verified': False,
  'logic': 1,
  'ms': 1,
  'music': 1,
  'musician': 1,
  'payment_verified': False,
  'pdf': 1,
  'phone_verified': True,
  'pro': 1,
  'produc': 1,
  'profile_complete': True,
  'standard': 1,
  'strong': 1,
  'teacher': 1,
  'web': 1,
  'word': 1,
  'wordpress': 1,
  'work': 1},
 100: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
  'First': 'a',
  'Last': '1',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'ad': 2,
  'agenc': 1,
  'alreadi': 1,
  'campaign': 1,
  'creativ': 1,
  'degre': 1,
  'deposit_made': False,
  'documentari': 1,
  'editor': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'identity_verified': False,
  'journalist': 1,
  'lead': 1,
  'made': 1,
  'magazin': 1,
  'mass': 1,
  'minut': 1,
  'movi': 1,
  'news': 1,
  'payment_verified': False,
  'per': 1,
  'phone_verified': False,
  'profile_complete': True,
  'reput': 1,
  'speed': 1,
  'team': 1,
  'type': 1,
  'websit': 1,
  'well': 2,
  'word': 1,
  'work': 4},
 101: {'10': 1,
  '2003': 1,
  '3': 1,
  '4+': 1,
  '5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'v',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'addit': 1,
  'advertis': 1,
  'alreadi': 1,
  'base': 2,
  'cs': 1,
  'css': 2,
  'deposit_made': False,
  'develop': 2,
  'done': 1,
  'email_verified': True,
  'facebook_connected': True,
  'grate': 1,
  'html': 2,
  'i`m': 1,
  'idea': 1,
  'identity_verified': False,
  'includ': 1,
  'integr': 3,
  'joomla': 1,
  'manag': 1,
  'market': 1,
  'mysql': 1,
  'onlin': 5,
  'payment': 3,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'php': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 2,
  'sinc': 1,
  'skill': 1,
  'sm': 1,
  'softwar': 1,
  'stori': 2,
  'system': 1,
  'test': 1,
  'virtuemart': 1,
  'web': 4,
  'websit': 1,
  'year': 1},
 102: {'5.5': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
  'Digit': None,
  'First': 'J',
  'Last': 't',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'accur': 1,
  'also': 2,
  'applic': 1,
  'area': 2,
  'avail': 1,
  'conveni': 1,
  'crm': 1,
  'data': 1,
  'deposit_made': True,
  'email_verified': True,
  'enabl': 1,
  'entri': 1,
  'especi': 1,
  'experi': 1,
  'facebook_connected': False,
  'gmt': 1,
  'high': 1,
  'hr': 1,
  'identity_verified': False,
  'inform': 1,
  'internet': 1,
  'like': 1,
  'make': 1,
  'meet': 1,
  'mutual': 1,
  'object': 1,
  'offer': 1,
  'onlin': 1,
  'packag': 1,
  'payment_verified': False,
  'per': 1,
  'phone_verified': True,
  'price': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 2,
  'qualiti': 1,
  'reason': 1,
  'report': 1,
  'requir': 1,
  'research': 1,
  'salesforc': 1,
  'servic': 3,
  'shall': 1,
  'softwar': 1,
  'statu': 1,
  'technolog': 1,
  'test': 1,
  'though': 1,
  'time': 3,
  'use': 1,
  'work': 1,
  'zone': 1},
 103: {'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'l',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'graphic': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True},
 104: {'1983.': 1,
  '2007': 1,
  '2d': 1,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 's',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'air': 1,
  'anim': 1,
  'born': 1,
  'bueno': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'finish': 1,
  'identity_verified': False,
  'illustr': 1,
  'imag': 1,
  'payment_verified': False,
  'phone_verified': False,
  'portfolio': 1,
  'profile_complete': True,
  'sound': 1,
  'studi': 1,
  'uba': 1,
  'univers': 1,
  'work': 1},
 105: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'i',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'achiev': 1,
  'array': 1,
  'autom': 1,
  'back': 1,
  'brainstorm': 1,
  'build': 1,
  'comput': 2,
  'dedic': 1,
  'degre': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'end': 1,
  'engin': 1,
  'experi': 1,
  'facebook_connected': False,
  'front': 1,
  'goal': 1,
  'identity_verified': False,
  'initi': 1,
  'intens': 1,
  'knowledg': 1,
  'labor': 1,
  'maintain': 1,
  'method': 1,
  'optim': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'process': 1,
  'profession': 1,
  'profile_complete': True,
  'scienc': 1,
  'script': 1,
  'softwar': 2,
  'use': 1,
  'variou': 1,
  'vast': 1,
  'web': 1,
  'websit': 1},
 106: {'12': 1,
  '2': 1,
  '40': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='0'>,
  'First': 't',
  'Last': '9',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'abil': 1,
  'administr': 1,
  'advic': 2,
  'base': 2,
  'basi': 1,
  'branch': 1,
  'busi': 2,
  'career': 1,
  'colleg': 1,
  'column': 1,
  'creat': 1,
  'custom': 1,
  'deposit_made': False,
  'email_verified': True,
  'ex': 1,
  'experi': 1,
  'facebook_connected': False,
  'forum': 1,
  'give': 1,
  'held': 1,
  'identity_verified': False,
  'interest': 1,
  'launch': 1,
  'locat': 1,
  'look': 3,
  'market': 1,
  'need': 1,
  'new': 1,
  'offer': 1,
  'old': 1,
  'open': 1,
  'owner': 1,
  'past': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'prepar': 1,
  'profile_complete': True,
  'public': 2,
  'rais': 1,
  'relat': 1,
  'research': 2,
  'sale': 1,
  'servic': 1,
  'son': 1,
  'subcontractor': 1,
  'support': 1,
  'topic': 2,
  'watch': 1,
  'websit': 1,
  'well': 1,
  'wisconsin': 1,
  'woman': 1,
  'work': 2,
  'would': 1,
  'write': 1,
  'writer': 1,
  'yr': 3},
 107: {'30': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'V',
  'Last': '2',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'deposit_made': False,
  'edit': 1,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'high': 1,
  'identity_verified': False,
  'odd': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'proofread': 1,
  'school': 1,
  'teacher': 1,
  'transcrib': 1,
  'year': 1},
 108: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='G'>,
  'Digit': None,
  'First': 'G',
  'Last': 'z',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'cm': 1,
  'deposit_made': True,
  'design': 1,
  'ecommerc': 1,
  'email_verified': True,
  'facebook_connected': True,
  'freelanc': 1,
  'graphic': 1,
  'identity_verified': False,
  'much': 1,
  'payment_verified': True,
  'phone_verified': True,
  'photoshop': 1,
  'profile_complete': True,
  'specialis': 1,
  'web': 1,
  'wordpress': 1,
  'xhtml/css': 1},
 109: {'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 't',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'c': 1,
  'c++': 1,
  'deposit_made': True,
  'email_verified': True,
  'expert': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'studio': 1,
  'visual': 1},
 110: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(11, 12), match='1'>,
  'First': 'd',
  'Last': 'g',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'html': 1,
  'identity_verified': False,
  'list': 1,
  'open': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php3': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'servic': 1},
 111: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
  'First': 'v',
  'Last': '0',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'administr': 1,
  'avail': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': True,
  'hire': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'secur': 1,
  'specialist': 1,
  'system': 1,
  'web': 1},
 112: {'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 'h',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'abil': 3,
  'account': 1,
  'advertis': 1,
  'applic': 1,
  'articl': 1,
  'aspect': 1,
  'command': 1,
  'comput': 1,
  'confid': 1,
  'consid': 1,
  'copy-writ': 1,
  'coral': 1,
  'craigslist': 1,
  'custom': 1,
  'deposit_made': False,
  'design': 4,
  'draw': 1,
  'edit': 1,
  'email_verified': True,
  'employ': 1,
  'experi': 1,
  'expert': 1,
  'expertis': 1,
  'facebook_connected': True,
  'field': 1,
  'flash': 1,
  'free': 1,
  'good': 2,
  'graphic': 2,
  'grate': 1,
  'grip': 1,
  'hand': 1,
  'highli': 1,
  'identity_verified': False,
  'illustr': 1,
  'independ': 1,
  'knowledg': 1,
  'logo': 2,
  'make': 1,
  'market': 1,
  'meet': 1,
  'member': 1,
  'ms': 1,
  'mx': 1,
  'need': 1,
  'network': 1,
  'offic': 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 2,
  'post': 1,
  'pressur': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 1,
  'review': 1,
  'scienc': 1,
  'serv': 1,
  'servic': 1,
  'strong': 1,
  'team': 3,
  'use': 1,
  'web': 1,
  'web-design': 1,
  'well': 2,
  'work': 4,
  'would': 1,
  'write': 2},
 113: {"'ve": 1,
  '--': 5,
  '2.': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
  'Digit': None,
  'First': 'V',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ajax': 1,
  'align': 1,
  'also': 1,
  'bellow': 1,
  'cm': 1,
  'cmmi': 2,
  'coordin': 1,
  'css': 1,
  'databas': 1,
  'db': 1,
  'definit': 1,
  'deposit_made': False,
  'develop': 1,
  'disciplin': 1,
  'ejb': 1,
  'email_verified': True,
  'engin': 2,
  'exper': 1,
  'experienc': 1,
  'extj': 1,
  'facebook_connected': False,
  'find': 1,
  'govern': 1,
  'gwt': 1,
  'hibern': 1,
  'highli': 1,
  'hs': 1,
  'html': 1,
  'identity_verified': False,
  'implement': 1,
  'java': 3,
  'jboss': 1,
  'jpa': 1,
  'jqueri': 1,
  'jsf': 1,
  'jsp': 1,
  'level': 1,
  'link': 1,
  'mainli': 1,
  'ms': 1,
  'mysql': 1,
  'oracl': 3,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'platform': 1,
  'pm': 1,
  'portlet': 1,
  'postgresql': 1,
  'process': 2,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'python': 1,
  'qa': 1,
  'rubi': 1,
  'rup': 1,
  'script': 1,
  'server': 1,
  'servlet': 1,
  'skill': 2,
  'soa': 2,
  'softwar': 2,
  'sql': 2,
  'suit': 1,
  'summari': 1,
  'sybas': 1,
  'technolog': 1,
  'tomcat': 1,
  'top': 1,
  'uml': 1,
  'use': 1,
  'web': 2,
  'weblog': 1,
  'webspher': 1,
  'work': 1,
  'xhtml': 1},
 114: {'.i': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
  'First': 'a',
  'Last': '1',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'affair': 1,
  'also': 1,
  'analyt': 1,
  'carv': 1,
  'challeng': 1,
  'commun': 1,
  'compani': 1,
  'corpor': 1,
  'deposit_made': False,
  'develop': 1,
  'earn': 1,
  'educ': 1,
  'electron': 1,
  'email_verified': True,
  'employees.i': 1,
  'engin': 2,
  'facebook_connected': True,
  'firm': 1,
  'firm.i': 1,
  'futur': 1,
  'good': 1,
  'great': 1,
  'human': 1,
  'identity_verified': False,
  'immers': 1,
  'industri': 1,
  'instrument': 1,
  'ltd': 1,
  'manag': 2,
  'ministri': 1,
  'new': 1,
  'nich': 1,
  'payment_verified': False,
  'phone_verified': False,
  'plan': 1,
  'privat': 1,
  'profile_complete': True,
  'project': 1,
  'pvt': 1,
  'recent': 1,
  'skill': 1,
  'softwar': 1,
  'start': 1,
  'team': 1,
  'want': 1,
  'went': 1,
  'work': 1,
  'worth': 1},
 115: {'3': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': None,
  'First': 'P',
  'Last': 'h',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'year': 1},
 116: {'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'o',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'alt': 1,
  'articl': 1,
  'blog': 2,
  'bookmark': 1,
  'classifi': 1,
  'creat': 2,
  'deposit_made': False,
  'descript': 1,
  'directori': 1,
  'email_verified': True,
  'etc': 2,
  'experi': 1,
  'facebook_connected': True,
  'feed': 2,
  'h1': 1,
  'html': 1,
  'identity_verified': False,
  'implement': 1,
  'keyword': 1,
  'meta': 1,
  'network': 1,
  'optim': 1,
  'page': 4,
  'payment_verified': False,
  'phone_verified': True,
  'post': 1,
  'press': 1,
  'profile_complete': True,
  'releas': 1,
  'rss': 2,
  'sitemap': 2,
  'social': 2,
  'submiss': 7,
  'success': 1,
  'tag': 1,
  'titl': 1,
  'write': 2,
  'xml': 1},
 117: {"'s": 1,
  '2005': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'o',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'bachelor': 1,
  'commun': 1,
  'compani': 1,
  'contributor': 1,
  'degre': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'freelancer.com': 1,
  'hold': 1,
  'identity_verified': True,
  'journal': 1,
  'major': 1,
  'mass': 1,
  'news': 1,
  'one': 1,
  'payment_verified': False,
  'phone_verified': True,
  'press': 1,
  'profile_complete': True,
  'rate': 1,
  'regular': 1,
  'releas': 1,
  'sinc': 1,
  'tech': 1,
  'top': 1,
  'websit': 1,
  'writer': 3},
 118: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 's',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'amazon': 1,
  'commerc': 1,
  'deposit_made': True,
  'e': 1,
  'email_verified': True,
  'etc': 1,
  'expert.': 1,
  'facebook_connected': False,
  'financi': 1,
  'flipkart': 1,
  'freelanc': 1,
  'hardwar': 1,
  'identity_verified': False,
  'like': 1,
  'onlin': 1,
  'payment_verified': True,
  'phone_verified': False,
  'product': 1,
  'profession': 1,
  'profile_complete': True,
  'sell': 2,
  'servic': 1,
  'site': 1,
  'snapdeal': 1,
  'variou': 1},
 119: {'11i': 1,
  '1999': 1,
  '2009': 2,
  '28': 2,
  '85': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': None,
  'First': 'P',
  'Last': 'k',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '\\xe2\\u20ac\\u201c': 2,
  'abil': 1,
  'account': 12,
  'accur': 1,
  'achiev': 1,
  'action': 1,
  'activ': 2,
  'age': 1,
  'agil': 4,
  'agreement': 1,
  'alloc': 2,
  'alto': 1,
  'american': 2,
  'analys': 1,
  'analysi': 2,
  'appli': 1,
  'april': 1,
  'area': 1,
  'articl': 1,
  'asia': 1,
  'associ': 2,
  'asst': 1,
  'audit': 1,
  'award': 1,
  'balanc': 1,
  'bank': 5,
  'belt': 2,
  'benchmark': 1,
  'better': 1,
  'book': 1,
  'build': 2,
  'buildup': 1,
  'busi': 7,
  'cash': 1,
  'caus': 1,
  'center': 4,
  'central': 1,
  'certif': 2,
  'certifi': 1,
  'chain': 2,
  'challeng': 1,
  'china': 4,
  'chines': 1,
  'clear': 3,
  'clearanc': 1,
  'client': 4,
  'clients\\xe2\\u20ac\\u2122': 1,
  'close': 1,
  'coe': 1,
  'collect': 1,
  'commit': 1,
  'commun': 2,
  'compani': 1,
  'complianc': 3,
  'conduct': 1,
  'consum': 1,
  'continu': 1,
  'contract': 1,
  'control': 1,
  'corpor': 2,
  'cost': 8,
  'cpc': 1,
  'current': 1,
  'custom': 2,
  'daili': 2,
  'data': 2,
  'date': 1,
  'decis': 1,
  'deliveri': 1,
  'depart': 1,
  'deposit_made': False,
  'develop': 3,
  'divis': 1,
  'doc': 1,
  'dynam': 1,
  'effect': 3,
  'email_verified': True,
  'ensur': 1,
  'er': 1,
  'especi': 1,
  'excel': 3,
  'exist': 2,
  'expens': 2,
  'experi': 1,
  'exposur': 1,
  'express': 1,
  'extern': 1,
  'f': 1,
  'face': 1,
  'facebook_connected': False,
  'facilit': 1,
  'financ': 3,
  'financi': 1,
  'focu': 4,
  'formul': 1,
  'function': 2,
  'gb': 1,
  'gener': 1,
  'give': 1,
  'global': 5,
  'green': 1,
  'grievanc': 1,
  'gross': 1,
  'group': 1,
  'growth': 1,
  'guidanc': 1,
  'hand': 1,
  'handl': 1,
  'head': 1,
  'hon': 1,
  'honeywel': 3,
  'hong': 1,
  'hotel': 1,
  'hr': 1,
  'identity_verified': False,
  'implement': 4,
  'imprest': 2,
  'improv': 2,
  'includ': 1,
  'individu': 1,
  'institut': 1,
  'interact': 2,
  'intern': 2,
  'internationalmanag': 1,
  'internet': 1,
  'interperson': 1,
  'inventori': 1,
  'involv': 2,
  'issu': 2,
  'japa': 2,
  'japan': 1,
  'job': 1,
  'karvi': 1,
  'knowledg': 3,
  'kong': 1,
  'lead': 1,
  'leader': 1,
  'ledger': 1,
  'legaci': 1,
  'legal': 1,
  'level': 1,
  'line': 1,
  'locat': 2,
  'mainten': 1,
  'make': 2,
  'manag': 7,
  'map': 1,
  'market': 2,
  'match': 1,
  'matrix': 1,
  'meet': 1,
  'mi': 3,
  'million': 2,
  'monthli': 1,
  'motiv': 1,
  'movement': 1,
  'multi': 1,
  'n\\ttransit': 2,
  'nation': 1,
  'new': 2,
  'niit': 1,
  'non': 1,
  'nov-2005': 1,
  'objectiveto': 1,
  'off-shor': 1,
  'onlin': 2,
  'oper': 4,
  'optim': 1,
  'optimum': 1,
  'oracl': 1,
  'order': 1,
  'organ': 1,
  'organis': 1,
  'organiz': 1,
  'outstand': 1,
  'p2p': 2,
  'pacif': 1,
  'palo': 1,
  'paper': 1,
  'paramet': 1,
  'part': 2,
  'partner': 1,
  'pay': 2,
  'payabl': 3,
  'payment': 2,
  'payment_verified': False,
  'payrol': 1,
  'peopl': 2,
  'people\\xe2\\u20ac\\u2122': 1,
  'per': 2,
  'perform': 1,
  'phone_verified': False,
  'plan': 1,
  'plant': 3,
  'point': 1,
  'polici': 1,
  'prc': 2,
  'procedur': 1,
  'process': 11,
  'procur': 8,
  'product': 1,
  'profession': 1,
  'profile_complete': True,
  'program': 2,
  'progress': 1,
  'project': 13,
  'propos': 1,
  'purchas': 1,
  'put': 1,
  'qualiti': 2,
  'queri': 2,
  'r': 1,
  'receiv': 1,
  'reconcili': 6,
  'recruit': 1,
  'reduc': 1,
  'region': 1,
  'relat': 2,
  'relationship': 3,
  'remot': 1,
  'render': 1,
  'report': 4,
  'republ': 1,
  'request': 1,
  'requir': 1,
  'resolut': 1,
  'resourc': 3,
  'respect': 1,
  'respons': 1,
  'review': 1,
  'rfp': 1,
  'rich': 1,
  'root': 1,
  'run': 1,
  'sale': 2,
  'scan': 1,
  'servic': 7,
  'set': 1,
  'setup': 1,
  'share': 3,
  'situat': 1,
  'skill': 2,
  'smooth': 1,
  'solut': 3,
  'special': 1,
  'specialist-': 1,
  'ssc': 2,
  'stakehold': 2,
  'standard': 1,
  'strategi': 1,
  'streamlin': 2,
  'sub': 1,
  'success': 1,
  'suppli': 2,
  'support': 2,
  'suspens': 1,
  'sync': 1,
  'system': 2,
  'team': 10,
  'technolog': 2,
  'templat': 1,
  'till': 1,
  'time': 1,
  'toward': 1,
  'train': 2,
  'transfer': 2,
  'transit': 3,
  'two': 1,
  'understand': 1,
  'unit': 1,
  'univers': 1,
  'usd': 1,
  'user': 1,
  'util': 1,
  'variou': 1,
  'vendor': 3,
  'voucher': 1,
  'weekli': 1,
  'well': 2,
  'wing': 2,
  'work': 4,
  'worldwid': 1,
  'years\\xe2\\u20ac\\u2122': 1,
  'zero': 1},
 120: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'd',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'consult': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'engin': 1,
  'experi': 1,
  'facebook_connected': True,
  'field': 1,
  'identity_verified': False,
  'local': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'structur': 2,
  'work': 1,
  'yr': 1},
 121: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 'y',
  'Last': 'a',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'ana': 1,
  'deposit_made': False,
  'desaign': 1,
  'email_verified': True,
  'facebook_connected': False,
  'grapic': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'surya': 1},
 122: {'..': 1,
  '...': 42,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
  'First': 'l',
  'Last': '4',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'deposit_made': False,
  'email_verified': True,
  'excel': 2,
  'facebook_connected': False,
  'identity_verified': False,
  'internet': 1,
  'knowledg': 1,
  'ms.': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'surf': 1,
  'word': 1},
 123: {'2005': 1,
  '2checkout': 1,
  '6.0': 1,
  '9i/10g/11g': 1,
  '9x': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'a',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '\\xe2\\u20ac\\u201c': 1,
  'abap': 1,
  'access': 2,
  'acrobat': 1,
  'actionscript': 1,
  'activ': 2,
  'activex': 1,
  'ad': 1,
  'admin': 1,
  'adob': 1,
  'advertis': 2,
  'ajax': 1,
  'alt': 1,
  'amazon': 1,
  'analysi': 2,
  'analyt': 2,
  'analyz': 1,
  'anim': 1,
  'anywher': 1,
  'apach': 4,
  'api': 1,
  'articl': 1,
  'asp': 1,
  'asp.net': 1,
  'aspdotnetstorefront': 1,
  'astra': 2,
  'azur': 2,
  'banner': 1,
  'bcp': 1,
  'bea': 1,
  'blog': 3,
  'bookmark': 1,
  'borland': 1,
  'box': 1,
  'br': 1,
  'bugzilla': 1,
  'build': 1,
  'busi': 3,
  'button': 2,
  'c': 1,
  'c++': 1,
  'c/c++': 1,
  'cakephp': 1,
  'cam': 1,
  'campaign': 1,
  'cart': 1,
  'ce': 1,
  'center': 1,
  'cgi': 1,
  'cgi/perl': 1,
  'channel': 1,
  'check': 1,
  'checkout': 2,
  'cic': 1,
  'classifi': 1,
  'clear': 1,
  'client': 1,
  'cluster': 1,
  'cobol': 1,
  'coda': 1,
  'codeignit': 1,
  'com': 2,
  'comment': 3,
  'competitor': 1,
  'composit': 1,
  'consult': 1,
  'content': 1,
  'control': 2,
  'convert': 1,
  'coreldraw': 1,
  'creation': 3,
  'crystal': 1,
  'css': 1,
  'custom': 1,
  'cv': 1,
  'cyber': 1,
  'data': 2,
  'databas': 2,
  'db2': 1,
  'dedic': 2,
  'deliv': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 6,
  'devexpress': 1,
  'dhtml': 1,
  'director': 2,
  'directori': 3,
  'div': 1,
  'dm': 1,
  'dn': 1,
  'dom': 1,
  'domain': 1,
  'dotnetnuk': 1,
  'dreamweav': 1,
  'drupal': 2,
  'eagl': 1,
  'eclips': 1,
  'editor': 1,
  'ejb': 1,
  'email': 2,
  'email_verified': True,
  'endeavor': 1,
  'engin': 1,
  'enterpris': 1,
  'entiti': 1,
  'erwin': 1,
  'excel': 1,
  'experienc': 1,
  'explain': 1,
  'fab': 1,
  'facebook': 1,
  'facebook_connected': False,
  'feed': 1,
  'firework': 1,
  'flash': 2,
  'flexibl': 1,
  'forum': 1,
  'foundat': 1,
  'framework': 1,
  'frontpag': 1,
  'ftp': 1,
  'gateway': 1,
  'googl': 3,
  'grail': 1,
  'graph': 2,
  'gwt': 1,
  'h1': 1,
  'high': 1,
  'host': 1,
  'hp-ux': 1,
  'html': 1,
  'hyperlink': 1,
  'hyperv': 1,
  'ibm': 2,
  'idea': 1,
  'identity_verified': False,
  'ii': 2,
  'illustr': 1,
  'improv': 1,
  'index': 1,
  'informatica': 1,
  'innov': 1,
  'intellig': 1,
  'interbas': 1,
  'jadasit': 2,
  'java': 1,
  'javascript': 1,
  'jcl': 1,
  'jdbc': 1,
  'jira': 1,
  'jmeter': 1,
  'joomla': 1,
  'jqueri': 1,
  'json': 1,
  'jsp': 2,
  'jstl': 1,
  'kentico': 2,
  'keyword': 2,
  'keyword/phras': 1,
  'knockoutj': 1,
  'lab': 1,
  'lamp': 1,
  'like': 3,
  'link': 7,
  'linux': 1,
  'list': 1,
  'live': 1,
  'load': 2,
  'loader': 1,
  'loadrunn': 1,
  'log': 1,
  'lotu': 1,
  'mac': 1,
  'magento': 1,
  'manag': 2,
  'manageengin': 1,
  'market': 3,
  'mc-credit': 2,
  'mc-debit': 2,
  'md': 1,
  'media': 2,
  'mesh': 2,
  'meta': 1,
  'method': 1,
  'metro': 1,
  'mfc': 1,
  'microsoft': 8,
  'migrat': 1,
  'model': 1,
  'modx': 1,
  'monitor': 1,
  'ms': 5,
  'ms-access': 1,
  'msf': 1,
  'mt': 1,
  'multithread': 1,
  'mvc': 1,
  'mvp': 1,
  'mvvm': 1,
  'mysql': 3,
  'netbean': 1,
  'network': 2,
  'nopcommerc': 1,
  'note': 1,
  'notepad++': 1,
  'nuke': 2,
  'nunit': 1,
  'obie': 1,
  'object': 1,
  'one': 1,
  'ood': 1,
  'oop': 1,
  'open': 1,
  'optim': 5,
  'oracl': 1,
  'oscommerc': 1,
  'outsid': 1,
  'pagemak': 1,
  'panic': 1,
  'payment': 1,
  'payment_verified': False,
  'paypal': 1,
  'pdf': 1,
  'perform': 3,
  'phone_verified': True,
  'photoshop': 2,
  'php': 2,
  'pl/sql': 1,
  'plan': 1,
  'post': 1,
  'postgresql': 1,
  'powerpoint': 1,
  'ppc': 1,
  'press': 1,
  'prestashop': 1,
  'prism': 1,
  'profession': 1,
  'profil': 1,
  'profile_complete': True,
  'project': 4,
  'puls': 1,
  'pump': 1,
  'python': 1,
  'qc': 1,
  'qtp': 1,
  'qualifi': 1,
  'qualiti': 3,
  'queri': 1,
  'quest': 1,
  'quick': 1,
  'ration': 3,
  'releas': 1,
  'report': 1,
  'ria': 1,
  'rmi': 1,
  'robot': 1,
  'rss': 2,
  'rubi': 1,
  'runner': 1,
  'rup': 1,
  'samurai': 1,
  'satisfact': 1,
  'search': 1,
  'seo': 2,
  'server': 3,
  'servic': 3,
  'servlet': 1,
  'share': 1,
  'sharepoint': 1,
  'ship': 1,
  'siebel': 1,
  'silk': 2,
  'silverlight': 1,
  'silverstrip': 1,
  'simul': 4,
  'sitemap': 1,
  'sm': 1,
  'soa': 1,
  'soap': 1,
  'social': 4,
  'softwar': 1,
  'solari': 1,
  'sort': 1,
  'sourc': 1,
  'sourcesaf': 1,
  'speedi': 1,
  'spring': 1,
  'sqa': 1,
  'sql': 3,
  'sql*plu': 1,
  'sqlite': 1,
  'ssa': 1,
  'ssh': 1,
  'ssi': 1,
  'ssl': 1,
  'ssr': 1,
  'star': 1,
  'starteam': 1,
  'stream': 1,
  'stripe': 1,
  'structur': 1,
  'struts2': 1,
  'studio': 4,
  'submiss': 8,
  'subvers': 1,
  'suit': 1,
  'svn': 1,
  'swing': 1,
  'sybas': 1,
  'symfoni': 1,
  'sync': 1,
  'system': 2,
  't-sql': 1,
  'tag': 1,
  'team': 5,
  'test': 6,
  'tester': 1,
  'three': 1,
  'titl': 1,
  'toad': 1,
  'tool': 1,
  'tower': 1,
  'transpar': 1,
  'tune': 2,
  'two': 1,
  'umbraco': 1,
  'uml': 1,
  'unix': 1,
  'use': 1,
  'user': 1,
  'util': 2,
  'valid': 1,
  'valu': 1,
  'vb': 1,
  'vb.net': 1,
  'vbscript': 1,
  'version': 3,
  'video': 1,
  'view': 1,
  'virtuemart-': 1,
  'visio': 1,
  'visual': 4,
  'vpn': 1,
  'vss': 1,
  'w3c': 1,
  'wamp': 1,
  'way': 4,
  'wcf': 1,
  'wealth': 1,
  'web': 1,
  'webform': 1,
  'webload': 1,
  'websit': 2,
  'win': 1,
  'window': 5,
  'winform': 1,
  'wizard': 2,
  'wm': 1,
  'word': 1,
  'wordpress': 1,
  'work': 4,
  'workbench': 1,
  'wpf': 1,
  'writer': 1,
  'wsdl': 1,
  'xampp': 1,
  'xhtml': 1,
  'xi': 1,
  'xml': 2,
  'xp': 1,
  'xpath': 1,
  'xsl': 1,
  'xslt': 1,
  'yii': 1,
  'yui': 1,
  'zen': 1,
  'zend': 3},
 124: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'adob': 2,
  'banner': 1,
  'corel': 1,
  'deposit_made': True,
  'design': 2,
  'draw': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'html': 1,
  'identity_verified': False,
  'illustr': 1,
  'logo': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'php': 1,
  'profile_complete': True},
 125: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='5'>,
  'First': 'b',
  'Last': '5',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'css3': 1,
  'deposit_made': False,
  'develop': 3,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'good': 1,
  'html5': 1,
  'identity_verified': False,
  'java': 1,
  'javascript': 1,
  'look': 1,
  'need': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'skill': 1,
  'strong': 1,
  'websit': 1,
  'work': 1},
 126: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'k',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'sincer': 1,
  'want': 1,
  'work': 1},
 127: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'ahead': 1,
  'certainli': 1,
  'commit': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'forward': 1,
  'hard': 1,
  'identity_verified': False,
  'look': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 2,
  'submit': 1,
  'worker': 1},
 128: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'l',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'best': 1,
  'countri': 1,
  'deposit_made': True,
  'descript': 1,
  'email_verified': True,
  'facebook_connected': False,
  'fast': 1,
  'feedback': 1,
  'honest': 1,
  'identity_verified': False,
  'payment_verified': True,
  'peopl': 1,
  'phone_verified': False,
  'profile_complete': True,
  'variou': 1,
  'work': 1},
 129: {'.a': 1,
  'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'f',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'art': 1,
  'blank': 1,
  'cinema': 1,
  'color': 1,
  'commun': 1,
  'degre': 1,
  'deposit_made': False,
  'design': 3,
  'email_verified': True,
  'etern': 1,
  'even': 1,
  'experiment': 1,
  'facebook_connected': False,
  'graphic': 2,
  'identity_verified': False,
  'imag': 1,
  'import': 1,
  'ingredi': 1,
  'interest': 1,
  'involv': 1,
  'logo': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photographi': 1,
  'profession': 1,
  'profile_complete': True,
  'space': 1,
  'student': 1,
  'task': 1,
  'type': 1,
  'typographi': 1,
  'visual': 1,
  'websit': 1},
 130: {'--': 1,
  '15': 1,
  '2006': 1,
  '2013': 1,
  '23': 1,
  '60': 1,
  '7': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
  'Digit': None,
  'First': 'V',
  'Last': 't',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  '\\tlevel': 2,
  'convers': 1,
  'data': 3,
  'deposit_made': False,
  'do': 1,
  'earlier': 2,
  'email_verified': True,
  'english': 1,
  'entri': 1,
  'etc': 1,
  'excel': 1,
  'facebook_connected': True,
  'feb': 2,
  'file': 1,
  'format': 1,
  'hindi': 1,
  'identity_verified': False,
  'know': 1,
  'member': 1,
  'ms': 1,
  'offic': 1,
  'payment_verified': False,
  'perl': 2,
  'phone_verified': True,
  'powerpoint': 1,
  'process': 1,
  'profile_complete': True,
  'program': 1,
  'script': 1,
  'sinc': 1,
  'speed': 1,
  'statu': 1,
  'transcript': 1,
  'translat': 1,
  'type': 2,
  'usernam': 1,
  'well-vers': 1,
  'window': 1,
  'word': 1,
  'wpm.i': 1},
 131: {"''": 8,
  '...': 3,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
  'First': 'k',
  'Last': '1',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  '``': 12,
  'accur': 1,
  'adher': 1,
  'also': 1,
  'client': 1,
  'defin': 1,
  'definit': 1,
  'deliv': 1,
  'deposit_made': True,
  'detail-ori': 1,
  'done': 1,
  'effect': 1,
  'email_verified': True,
  'estim': 2,
  'excel': 3,
  'extrem': 1,
  'facebook_connected': True,
  'fast': 2,
  'forward': 1,
  'futur': 1,
  'gave': 1,
  'good': 2,
  'great': 1,
  'help': 1,
  'high': 1,
  'highli': 3,
  'identity_verified': False,
  'inform': 1,
  'job': 2,
  'knowledg': 1,
  'let': 1,
  'look': 1,
  'manner': 1,
  'next': 1,
  'origin': 1,
  'outstand': 1,
  'payment_verified': True,
  'phone_verified': True,
  'prefer': 1,
  'profession': 1,
  'profile_complete': True,
  'provid': 7,
  'qualiti': 2,
  'quick': 1,
  'recommend': 3,
  'requir': 1,
  'respons': 2,
  'satisfi': 1,
  'schedul': 1,
  'skill': 1,
  'talk': 1,
  'thank': 2,
  'time': 2,
  'use': 2,
  'valentin': 2,
  'well': 1,
  'work': 6,
  'worker': 1},
 132: {'16': 1,
  '2': 1,
  '2006': 1,
  '2007': 1,
  '2009': 1,
  '27': 1,
  '4': 1,
  '70': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'z',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  '\\t': 1,
  'access': 1,
  'account': 1,
  'accur': 1,
  'appoint': 1,
  'appropri': 1,
  'april': 1,
  'assign': 1,
  'assist': 1,
  'ave.': 3,
  'b2b/b2c': 1,
  'bldg': 1,
  'build': 1,
  'campaign': 2,
  'career': 1,
  'carri': 1,
  'center': 2,
  'citi': 2,
  'client': 1,
  'clients-': 1,
  'coordin': 1,
  'copy/past': 1,
  'creativ': 1,
  'crm': 1,
  'custom': 1,
  'data': 1,
  'de': 1,
  'deposit_made': False,
  'direct': 1,
  'email_verified': True,
  'estat': 1,
  'etc': 2,
  'excel': 1,
  'expect': 1,
  'facebook_connected': False,
  'februari': 1,
  'gil': 2,
  'group': 1,
  'growth': 1,
  'guidelin': 1,
  'identity_verified': False,
  'inbound': 1,
  'inc': 1,
  'intern': 1,
  'lead': 1,
  'leav': 1,
  'makati': 2,
  'manag': 1,
  'market': 1,
  'may': 1,
  'meet': 1,
  'networking-': 1,
  'open': 1,
  'outbound': 1,
  'paseo': 1,
  'payment_verified': False,
  'peoplesupport': 1,
  'person': 1,
  'philippin': 3,
  'phone_verified': False,
  'process': 1,
  'profile_complete': True,
  'provid': 1,
  'puyat': 2,
  'real': 1,
  'relat': 1,
  'repres': 1,
  'respons': 1,
  'roxa': 1,
  'sale': 2,
  'salesforc': 1,
  'sever': 1,
  'social': 1,
  'supervisor': 1,
  'support': 1,
  'time': 1,
  'virtual': 1,
  'workflow': 1},
 133: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 's',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ajax': 1,
  'css': 1,
  'deposit_made': False,
  'done': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'jqueri': 1,
  'mani': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'use': 1},
 134: {"'m": 1,
  '16': 1,
  '17': 1,
  '18': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'r',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'area': 1,
  'complianc': 1,
  'copywrit': 1,
  'degre': 1,
  'deposit_made': False,
  'distribut': 1,
  'email_verified': True,
  'experi': 3,
  'facebook_connected': True,
  'fit': 1,
  'focus': 1,
  'food': 1,
  'health': 1,
  'hi': 1,
  'identity_verified': True,
  'inform': 1,
  'lifetim': 1,
  'manag': 1,
  'mine': 1,
  'oper': 1,
  'organ': 1,
  'passion': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': True,
  'profile_complete': True,
  'restaur': 1,
  'safeti': 1,
  'system': 1,
  'technolog': 1,
  'wareh': 1,
  'year': 3},
 135: {'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'h',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'also': 1,
  'concentr': 1,
  'content': 1,
  'creat': 1,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'experi': 1,
  'facebook_connected': False,
  'guid': 3,
  'help': 1,
  'identity_verified': False,
  'main': 1,
  'mainli': 1,
  'onlin': 1,
  'optim': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'quick': 1,
  'search': 1,
  'start': 1,
  'task': 1,
  'troubleshoot': 1,
  'user': 1,
  'write': 1},
 136: {"'ve": 2,
  '.net': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'j',
  'Last': '8',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'believ': 1,
  'best': 1,
  'c': 1,
  'crystal': 1,
  'deposit_made': False,
  'email_verified': True,
  'expertis': 1,
  'facebook_connected': False,
  'give': 1,
  'identity_verified': False,
  'like': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'server': 1,
  'sql': 1,
  'technolog': 1,
  'variou': 1,
  'work': 2},
 137: {"'m": 1,
  "'ve": 2,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'o',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'also': 1,
  'basi': 1,
  'clip': 1,
  'collabor': 1,
  'compani': 1,
  'confirm': 1,
  'continu': 1,
  'curiou': 1,
  'deadline-ori': 1,
  'deposit_made': False,
  'dig': 1,
  'email_verified': True,
  'expert': 1,
  'facebook_connected': True,
  'fact': 1,
  'fb': 1,
  'freelanc': 1,
  'happi': 1,
  'hone': 1,
  'identity_verified': False,
  'includ': 1,
  'inform': 1,
  'instagram': 1,
  'journal': 1,
  'mani': 1,
  'market': 1,
  'media': 1,
  'much': 1,
  'number': 1,
  'onlin': 1,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': False,
  'pinterest': 1,
  'prepar': 1,
  'profile_complete': True,
  'public': 1,
  'report': 1,
  'research': 2,
  'resourc': 1,
  'result': 1,
  'share': 1,
  'skill': 1,
  'social': 1,
  'spend': 1,
  'stori': 1,
  'strong': 1,
  'time': 2,
  'twitter': 1,
  'websit': 1,
  'work': 1,
  'write': 1,
  'writer': 1},
 138: {'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 's',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'applic': 1,
  'c': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'expert': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'interest': 1,
  'intern': 1,
  'kernel': 1,
  'linux': 2,
  'network': 2,
  'particularli': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'program': 1,
  'wide': 1},
 139: {'--': 7,
  '9000': 2,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': None,
  'First': 'P',
  'Last': 'e',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  '\\xc3\\xa0': 1,
  '\\xc3\\xa1rea': 1,
  'acli': 2,
  'acquir': 1,
  'aerospac': 1,
  'alto': 2,
  'analysi': 2,
  'angola': 2,
  'ano': 1,
  'argentina': 2,
  'artex': 2,
  'automot': 1,
  'bahrein': 2,
  'berlitz': 2,
  'born': 1,
  'br': 2,
  'brazil': 1,
  'busi': 1,
  'cabo': 1,
  'cape': 1,
  'case': 4,
  'certifi': 1,
  'client': 1,
  'coast': 1,
  'colombia': 1,
  'commod': 2,
  'como': 2,
  'compani': 4,
  'conhecimento': 1,
  'control': 1,
  'costa': 1,
  'countri': 1,
  'custom': 1,
  'da': 2,
  'de': 5,
  'denmark': 1,
  'deposit_made': True,
  'desd': 1,
  'do': 3,
  'dupont': 2,
  'e': 11,
  'effect': 1,
  'electron': 1,
  'em': 4,
  'email_verified': True,
  'empresa': 2,
  'end': 1,
  'est': 1,
  'experi': 2,
  'experi\\xc3\\xaancia': 2,
  'facebook_connected': False,
  'field': 1,
  'former': 1,
  'franc': 1,
  'fundament': 1,
  'germani': 1,
  'hands-on': 1,
  'hong': 1,
  'identity_verified': False,
  "int'l": 2,
  'intern': 1,
  'iso': 4,
  'japan': 1,
  'ji': 2,
  'knowledg': 1,
  'kong': 1,
  'kuwait': 2,
  'lebanon': 1,
  'leon': 2,
  'live': 1,
  'logist': 1,
  'maxion': 2,
  'measur': 1,
  'medic': 1,
  'meet': 1,
  'mexico': 1,
  'minha': 1,
  'mode': 1,
  'modo': 1,
  'morocco': 1,
  'na': 2,
  'nigeria': 1,
  'para': 1,
  'paraguay': 1,
  'payment_verified': True,
  'phone_verified': True,
  'plan': 1,
  'portug': 2,
  'process': 1,
  'procur': 2,
  'product': 1,
  'profile_complete': True,
  'purchas': 1,
  'qs': 2,
  'qualidad': 2,
  'qualiti': 2,
  'ramo': 1,
  'sale': 1,
  'sap': 1,
  'seneg': 2,
  'servic': 2,
  'sever': 1,
  'share': 1,
  'siemen': 2,
  'sierra': 2,
  'sinc': 1,
  'sistema': 1,
  'spain': 1,
  'splice': 2,
  'statist': 1,
  'sweden': 1,
  'switzerland': 1,
  'system': 1,
  'taiwan': 2,
  'todo': 1,
  'trade': 2,
  'usa': 1,
  'venezuela': 2,
  'volta': 2,
  'work': 1,
  'year': 1},
 140: {'15+': 1,
  '201': 1,
  '5+': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'd',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'certifi': 1,
  'cloud': 1,
  'configur': 1,
  'consult': 1,
  'deposit_made': False,
  'dev': 1,
  'email_verified': True,
  'experi': 1,
  'expert': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'salesforc': 1,
  'servic': 1,
  'year': 1},
 141: {"''": 1,
  "'s": 1,
  '1000': 1,
  '20': 1,
  '3.0': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
  'Digit': None,
  'First': 'F',
  'Last': 'y',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  '``': 1,
  'actor': 1,
  'adob': 1,
  'audit': 1,
  'averag': 1,
  'channel': 1,
  'deep': 1,
  'deposit_made': True,
  'door': 1,
  'email_verified': True,
  'facebook_connected': True,
  'frank': 3,
  'friendli': 1,
  'guy': 1,
  'hard': 1,
  'identity_verified': False,
  'interfac': 1,
  'jame': 1,
  'next': 1,
  'nt': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'radio': 1,
  'sell': 1,
  'slightli': 1,
  'studio': 1,
  'talent': 1,
  'usb': 1,
  'use': 1,
  'voic': 4,
  'year': 1},
 142: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'j',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'alway': 1,
  'best': 1,
  'deposit_made': False,
  'email_verified': True,
  'excel': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'independ': 1,
  'like': 1,
  'member': 1,
  'offer': 1,
  'payment_verified': False,
  'phone_verified': True,
  'prefer': 1,
  'profile_complete': True,
  'team': 1,
  'work': 3},
 143: {'1': 1,
  '5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'assign': 1,
  'consult': 1,
  'current': 1,
  'deposit_made': False,
  'edit': 1,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'hour': 1,
  'identity_verified': False,
  'ms': 1,
  'nich': 1,
  'payment_verified': False,
  'per': 1,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'technic': 1,
  'variou': 1,
  'vers': 1,
  'well': 1,
  'work': 2,
  'write': 1,
  'writer': 1},
 144: {"'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'p',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'app': 2,
  'base': 1,
  'c': 1,
  'care': 1,
  'compani': 1,
  'construct': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'everi': 1,
  'experi': 1,
  'facebook_connected': False,
  'free': 1,
  'freelanc': 1,
  'identity_verified': False,
  'japan': 1,
  'night': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'programm': 1,
  'project': 1,
  'small': 1,
  'take': 1,
  'time': 1,
  'websit': 1,
  'work': 1},
 145: {"'m": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'i',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'contest': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'footag': 1,
  'found': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'place': 1,
  'profile_complete': True,
  'recent': 1,
  'screenwrit': 1,
  'script': 1,
  'short': 1,
  'third': 1},
 146: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
  'First': 'I',
  'Last': '1',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'adapt': 1,
  'agil': 1,
  'alway': 1,
  'ambiti': 1,
  'area': 1,
  'coverag': 1,
  'dedic': 1,
  'deposit_made': False,
  'develop': 1,
  'done': 1,
  'email_verified': True,
  'everi': 1,
  'experi': 1,
  'facebook_connected': False,
  'full': 1,
  'get': 1,
  'greedi': 1,
  'hard': 1,
  'identity_verified': False,
  'job': 1,
  'meet': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'requir': 1,
  'sever': 1,
  'step': 1,
  'trust': 1,
  'vast': 1,
  'way': 2,
  'work': 2,
  'young': 1},
 147: {'3+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'i',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'coreldraw': 1,
  'css': 1,
  'deposit_made': False,
  'design': 1,
  'dreamweav': 1,
  'email_verified': True,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'flash': 1,
  'good': 1,
  'identity_verified': False,
  'illustr': 1,
  'india.i': 1,
  'multimedia': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'profile_complete': True,
  'web': 1,
  'xhtml': 1,
  'year': 1},
 148: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 's',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'deliv': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'good': 1,
  'identity_verified': False,
  'interest': 1,
  'job': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'servic': 1,
  'sure': 1,
  'use': 1,
  'year': 1},
 149: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 's',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
  'allahabad': 1,
  'cours': 1,
  'deposit_made': False,
  'differ': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'nit': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'teach': 1},
 150: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='7'>,
  'First': 'm',
  'Last': '6',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'build': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'entri': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'last': 1,
  'link': 1,
  'lot': 1,
  'one': 1,
  'payment_verified': False,
  'phone_verified': False,
  'privat': 1,
  'profile_complete': True,
  'well': 1,
  'year': 1},
 151: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'r',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': True,
  'greec': 1,
  'identity_verified': False,
  'make': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'websit': 1},
 152: {'13': 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'd',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'deposit_made': True,
  'email': 1,
  'email_verified': True,
  'experi': 1,
  'expert': 1,
  'exposur': 1,
  'facebook_connected': False,
  'gener': 1,
  'genuin': 1,
  'get': 1,
  'great': 1,
  'identity_verified': False,
  'improv': 1,
  'market': 1,
  'onlin': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'rank': 1,
  'real': 1,
  'sale': 1,
  'se': 1,
  'traffic': 2,
  'visibl': 1,
  'visitor': 1,
  'websit': 1,
  'year': 1},
 153: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'r',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'abil': 5,
  'accomplish': 1,
  'adob': 1,
  'client\\xe2\\u20ac\\u2122': 1,
  'cm': 1,
  'coda': 1,
  'creativ': 2,
  'cs5': 1,
  'current': 1,
  'deadlin': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 1,
  'differ': 1,
  'email_verified': True,
  'entail': 1,
  'experi': 1,
  'facebook_connected': False,
  'gener': 1,
  'high': 2,
  'idea': 2,
  'identity_verified': False,
  'learn': 1,
  'maco': 1,
  'main': 1,
  'mobil': 1,
  'new': 2,
  'page': 1,
  'payment_verified': True,
  'phone_verified': True,
  'photoshop': 1,
  'platform': 1,
  'profile_complete': True,
  'program': 1,
  'qualiti': 1,
  'readi': 1,
  'respons': 1,
  'site': 1,
  'skill': 2,
  'support': 1,
  'surround': 1,
  'task': 1,
  'team': 1,
  'tool': 1,
  'vision': 1,
  'work': 3},
 154: {"'ve": 1,
  '7': 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 's',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'applic': 1,
  'busi': 1,
  'deposit_made': True,
  'desktop': 1,
  'dev': 1,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'former': 1,
  'good': 1,
  'hand': 1,
  'ibm': 1,
  'identity_verified': False,
  'kind': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'sap': 1,
  'server': 1,
  'support': 1,
  'system': 1,
  'web': 1,
  'year': 1},
 155: {'2004': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='u'>,
  'africa': 1,
  'agenc': 2,
  'bangladesh': 2,
  'canada': 1,
  'code': 1,
  'com': 1,
  'cut': 1,
  'denmark': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'first': 1,
  'freelanc': 1,
  'hand': 1,
  'identity_verified': False,
  'look': 1,
  'mani': 1,
  'outsourc': 1,
  'payment_verified': False,
  'phone_verified': False,
  'placement': 1,
  'profile_complete': True,
  'project': 1,
  'seven': 1,
  'sinc': 1,
  'system': 1,
  'teeth': 1,
  'uk': 1,
  'web': 4,
  'websit': 1,
  'well': 1,
  'whilst': 1,
  'work': 5,
  'year': 1},
 156: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 's',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'abl': 1,
  'background': 1,
  'bank': 1,
  'copywrit': 1,
  'deposit_made': True,
  'differ': 1,
  'done': 1,
  'email_verified': True,
  'english': 1,
  'etc': 1,
  'experi': 1,
  'facebook_connected': False,
  'fast': 1,
  'field': 1,
  'financi': 1,
  'forex': 1,
  'identity_verified': False,
  'learner': 1,
  'manag': 1,
  'new': 1,
  'open': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'rewrit': 1,
  'russian': 1,
  'sinc': 1,
  'task': 1,
  'three': 1,
  'topic': 1,
  'translat': 1,
  'write': 1,
  'year': 1},
 157: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='3'>,
  'First': 'e',
  'Last': '9',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'also': 1,
  'beij': 1,
  'china': 1,
  'current': 1,
  'degre': 1,
  'deposit_made': False,
  'econom': 1,
  'email_verified': True,
  'engin': 3,
  'facebook_connected': False,
  'hr': 1,
  'identity_verified': False,
  'master': 2,
  'mba': 1,
  'mechan': 1,
  'pakistan': 1,
  'payment_verified': False,
  'phd': 1,
  'phone_verified': False,
  'power': 2,
  'profile_complete': True,
  'thermal': 2},
 158: {"'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'r',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'almost': 1,
  'content': 1,
  'current': 1,
  'decad': 1,
  'deposit_made': True,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'firm': 1,
  'identity_verified': False,
  'media': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'produc': 1,
  'profile_complete': True,
  'social': 1,
  'work': 1,
  'worth': 1,
  'write': 1},
 159: {'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 't',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'advanc': 1,
  'alway': 1,
  'asian': 1,
  'assur': 1,
  'audio-visu': 1,
  'background': 1,
  'base': 1,
  'control': 1,
  'cover': 1,
  'custom': 1,
  'customiz': 1,
  'deliveri': 1,
  'deposit_made': False,
  'disciplin': 1,
  'e-learn': 1,
  'effici': 1,
  'email_verified': True,
  'essenti': 1,
  'establish': 1,
  'european': 1,
  'experienc': 1,
  'expertis': 2,
  'facebook_connected': False,
  'fit': 1,
  'high': 1,
  'identity_verified': False,
  'industri': 2,
  'juncoast': 3,
  'knowledg': 1,
  'local': 2,
  'manag': 1,
  'mani': 1,
  'materi': 1,
  'member': 1,
  'one': 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pool': 1,
  'profile_complete': True,
  'programm': 1,
  'project': 4,
  'prove': 1,
  'qualiti': 2,
  'select': 1,
  'servic': 1,
  'softwar': 1,
  'special': 2,
  'strict': 1,
  'success': 2,
  'system': 1,
  'talent': 2,
  'team': 2,
  'time': 1,
  'two': 1,
  'websit': 1,
  'work': 1,
  'workflow': 1,
  'year': 1,
  'young': 1},
 160: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 's',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'assur': 1,
  'challeng': 1,
  'chanc': 1,
  'commit': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'give': 1,
  'idea': 1,
  'identity_verified': False,
  'look': 1,
  'love': 1,
  'make': 1,
  'new': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'real': 1,
  'regret': 1},
 161: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
  'Digit': None,
  'First': 'L',
  'Last': 'y',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'ca': 1,
  'commun': 1,
  'continu': 1,
  'current': 1,
  'degre': 1,
  'deposit_made': True,
  'educ': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'inform': 1,
  "n't": 2,
  'need': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'visual': 1,
  'want': 1,
  'write': 1,
  'writer': 1},
 162: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': None,
  'First': 'D',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>,
  'abil': 1,
  'allow': 1,
  'capabl': 2,
  'deposit_made': False,
  'eager': 1,
  'educ': 1,
  'email_verified': True,
  'envis': 1,
  'expand': 1,
  'experi': 1,
  'facebook_connected': False,
  'fill': 2,
  'forward': 1,
  'identity_verified': False,
  'interest': 1,
  'jack': 1,
  'learn': 1,
  'look': 1,
  'mani': 2,
  'new': 1,
  'payment_verified': True,
  'phone_verified': True,
  'prepar': 1,
  'profile_complete': True,
  'role': 2,
  'skill': 1,
  'trade': 1,
  'varieti': 1,
  'well': 1},
 163: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'f',
  'Last': '3',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'also': 1,
  'articl': 1,
  'author': 1,
  'deposit_made': False,
  'email_verified': True,
  'essay': 2,
  'experi': 1,
  'extens': 1,
  'ezin': 1,
  'facebook_connected': False,
  'financ': 1,
  'global': 1,
  'identity_verified': False,
  'intern': 1,
  'market': 1,
  'master': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'scienc': 1,
  'work': 1,
  'write': 1,
  'writer': 1},
 164: {"''": 1,
  '3d': 2,
  'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'x',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  '``': 1,
  'architectur': 1,
  'comput': 1,
  'deposit_made': True,
  'email_verified': True,
  'experi': 1,
  'exterior': 1,
  'facebook_connected': True,
  'graduat': 1,
  'graphic': 1,
  'http': 1,
  'identity_verified': False,
  'interior': 1,
  'la': 1,
  'love': 1,
  'model': 1,
  'onlin': 1,
  'payment_verified': True,
  'phone_verified': True,
  'portfolio': 1,
  'profile_complete': True,
  'refer': 1,
  'rome': 1,
  'sapienza': 1,
  'univers': 1,
  'us': 1,
  'year': 1},
 165: {"'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'd',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'appeal': 1,
  'creat': 1,
  'custom': 1,
  'deposit_made': False,
  'digit': 1,
  'discuss': 1,
  'email_verified': True,
  'facebook_connected': False,
  'finish': 1,
  'focus': 1,
  'goal': 1,
  'identity_verified': False,
  'market': 1,
  'need': 1,
  'payment_verified': False,
  'phone_verified': False,
  'print': 1,
  'product': 1,
  'profession': 1,
  'profile_complete': True,
  'solut': 1,
  'target': 1,
  'work': 1},
 166: {'--': 2,
  '6.': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'a',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'account': 1,
  'adept': 1,
  'also': 1,
  'analysi': 2,
  'assist': 1,
  'audit': 2,
  'capabl': 1,
  'client': 2,
  'cloud': 1,
  'commun': 2,
  'concept': 1,
  'content': 1,
  'creativ': 1,
  'data': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'digit': 2,
  'email': 1,
  'email_verified': True,
  'experienc': 1,
  'facebook_connected': True,
  'focu': 1,
  'full': 1,
  'host': 1,
  'identity_verified': False,
  'manag': 3,
  'market': 2,
  'media': 1,
  'pay-per-click': 1,
  'payment_verified': True,
  'phone_verified': True,
  'portfolio': 1,
  'profil': 1,
  'profile_complete': True,
  'properti': 1,
  'research': 1,
  'sale': 1,
  'sem': 1,
  'seo': 1,
  'servic': 1,
  'social': 1,
  'strategi': 1,
  'strong': 1,
  'virtual': 1,
  'web': 1,
  'well-round': 1,
  'wordpress': 1,
  'write': 1},
 167: {'...': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
  'First': 'c',
  'Last': '2',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'brighten': 1,
  'deposit_made': False,
  'earn': 1,
  'email_verified': True,
  'facebook_connected': False,
  'futur': 1,
  'identity_verified': False,
  'money': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'want': 1,
  'well': 1},
 168: {'...': 1,
  '2d': 1,
  '3d': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'o',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'confid': 1,
  'deposit_made': False,
  'detail': 1,
  'done': 1,
  'edit': 1,
  'email_verified': True,
  'facebook_connected': False,
  'get': 1,
  'good': 1,
  'identity_verified': False,
  'job': 2,
  'level': 1,
  'model': 1,
  "n't": 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': False,
  'precis': 1,
  'profile_complete': True,
  'reliabl': 1},
 169: {"''": 2,
  "'s": 1,
  '10': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='9'>,
  'First': 'g',
  'Last': '3',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'abil': 1,
  'ambit': 1,
  'busi': 1,
  'cheer': 1,
  'deposit_made': True,
  'email_verified': True,
  'expand': 1,
  'experi': 1,
  'facebook_connected': False,
  'fool': 1,
  'good': 1,
  'hope': 1,
  'identity_verified': False,
  'import': 1,
  'mang': 1,
  'mood': 1,
  'motto': 1,
  'normal': 1,
  'ordinari': 1,
  'organ': 1,
  'payment_verified': False,
  'perfect': 1,
  'person': 2,
  'phone_verified': True,
  'profile_complete': True,
  'pursuit': 1,
  'serious': 1,
  'speed': 1,
  'studi': 1,
  'style': 1,
  'success': 1,
  'univers': 1,
  'web': 1,
  'work': 3,
  'year': 1},
 170: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'h',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'base': 1,
  'believ': 1,
  'busi': 1,
  'ca': 1,
  'commun': 1,
  'complet': 2,
  'constant': 1,
  'deposit_made': True,
  'design': 1,
  'done': 1,
  'email_verified': True,
  'ensur': 1,
  'facebook_connected': False,
  'get': 1,
  'hill': 1,
  'identity_verified': False,
  'job': 1,
  'logo': 1,
  'open': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'quickli': 1,
  'rapidli': 1,
  'satisfact': 1,
  'small': 1,
  'special': 1,
  'specif': 1,
  'websit': 1,
  'west': 1},
 171: {"'m": 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'a',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abl': 2,
  'accord': 1,
  'adjust': 1,
  'administr': 1,
  'also': 1,
  'analyt': 1,
  'bank': 1,
  'capabl': 1,
  'compani': 1,
  'complet': 1,
  'cours': 1,
  'deposit_made': False,
  'differ': 1,
  'dilig': 1,
  'ecommerc': 1,
  'email_verified': True,
  'employe': 1,
  'excel': 1,
  'extrem': 1,
  'facebook_connected': True,
  'financ': 1,
  'gain': 2,
  'graduat': 1,
  'hard': 1,
  'highli': 1,
  'honest': 1,
  'hour': 1,
  'html': 1,
  'huge': 1,
  'identity_verified': False,
  'interest': 1,
  'javascript': 1,
  'knowledg': 2,
  'lot': 1,
  'magento': 1,
  'mani': 1,
  'motiv': 1,
  'mysql': 1,
  'need': 2,
  'object': 1,
  'opencart': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'plenti': 1,
  'prestashop': 1,
  'profil': 1,
  'profile_complete': True,
  'program': 1,
  'provid': 1,
  'put': 1,
  'reliabl': 1,
  'respons': 1,
  'section': 2,
  'skill': 1,
  'sometim': 1,
  'spread': 1,
  'support': 1,
  'thank': 1,
  'view': 1,
  'want': 2,
  'web': 1,
  'wordpress': 1,
  'work': 2,
  'world': 1,
  'year': 1,
  'zencart': 1},
 172: {'100': 1,
  '300': 1,
  '50': 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'x',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'across': 1,
  'also': 3,
  'among': 1,
  'articl': 1,
  'avail': 1,
  'base': 2,
  'career': 1,
  'compani': 1,
  'content': 5,
  'countri': 1,
  'creativ': 1,
  'deposit_made': False,
  'develop': 5,
  'done': 1,
  'east': 1,
  'educ': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'furnish': 1,
  'gener': 1,
  'head': 1,
  'identity_verified': False,
  'india': 1,
  'inform': 1,
  'lifestyl': 1,
  'local': 1,
  'ltd': 1,
  'magazin': 2,
  'manpow': 1,
  'miscellan': 1,
  'newspap': 2,
  'north': 1,
  'other': 1,
  'payment_verified': False,
  'person': 2,
  'phone_verified': False,
  'poem': 2,
  'portfolio': 1,
  'previou': 2,
  'profile_complete': True,
  'publish': 1,
  'pvt': 1,
  'refer': 1,
  'regular': 2,
  'request': 1,
  'sampl': 2,
  'serv': 1,
  'short': 1,
  'sikkim': 1,
  'stori': 1,
  'team': 1,
  'total': 1,
  'travel': 1,
  'weblog': 1,
  'websit': 2,
  'work': 2,
  'writer': 2,
  'written': 1},
 173: {'5': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
  'First': 'A',
  'Last': '8',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'compani': 1,
  'deposit_made': False,
  'devic': 1,
  'done': 1,
  'electr': 1,
  'email_verified': True,
  'engin': 1,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'graduat': 1,
  'identity_verified': False,
  'institut': 1,
  'jersey': 1,
  'look': 1,
  'new': 1,
  'part': 1,
  'partner': 1,
  'payment_verified': False,
  'phone_verified': True,
  'posit': 1,
  'profile_complete': True,
  'remot': 1,
  'reput': 1,
  'softwar': 1,
  'solid': 1,
  'state': 1,
  'studi': 1,
  'technolog': 1,
  'time': 1,
  'work': 1,
  'year': 1},
 174: {'5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'm',
  'Last': '3',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'convers': 1,
  'data': 3,
  'deposit_made': False,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'name': 1,
  'payment_verified': False,
  'phone_verified': False,
  'process': 1,
  'profile_complete': True,
  'qualif': 1,
  'ravi': 1,
  'technic': 1,
  'work': 1,
  'year': 1},
 175: {"'ve": 1,
  '20': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'l',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'advertis': 1,
  'companies.i': 1,
  'daniel': 1,
  'deposit_made': False,
  'done': 1,
  'edit': 1,
  'email_verified': True,
  'experi': 2,
  'facebook_connected': True,
  'graphic': 1,
  'highest': 1,
  'identity_verified': False,
  'job': 1,
  'knowledg': 1,
  'look': 1,
  'lot': 1,
  'major': 1,
  'motion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'post': 1,
  'product': 1,
  'production.i': 1,
  'profession': 1,
  'profile_complete': True,
  'sampl': 1,
  'station': 1,
  'take': 1,
  'thank': 1,
  'tv': 1,
  'video': 1,
  'work': 2,
  'year': 1},
 176: {"'s": 1,
  '...': 1,
  '20+': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': None,
  'First': 'D',
  'Last': 'y',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'applic': 1,
  'buyer': 1,
  'deposit_made': True,
  'design': 4,
  'design.w': 1,
  'email_verified': True,
  'exclus': 1,
  'experi': 1,
  'facebook_connected': False,
  'forth': 1,
  'game': 1,
  'goal': 1,
  'graphic': 1,
  'identity_verified': False,
  'industri': 1,
  'littl': 1,
  'logo': 1,
  'main': 1,
  'materi': 1,
  'mobil': 1,
  "n't": 1,
  'packag': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'show': 1,
  'suppli': 1,
  'team': 1,
  'templat': 1,
  'trade': 1,
  'use': 1,
  'web': 1,
  'year': 1},
 177: {'3com': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'd',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'activ': 1,
  'administr': 1,
  'base': 1,
  'build': 1,
  'cisco': 1,
  'deploy': 2,
  'deposit_made': False,
  'design': 2,
  'directori': 1,
  'email_verified': True,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'hyper-v': 1,
  'identity_verified': False,
  'implement': 1,
  'infrastructur': 1,
  'knowledg': 1,
  'linux': 1,
  'manag': 1,
  'microsoft': 1,
  'minim': 1,
  'monitor': 1,
  'network': 1,
  'new': 1,
  'open': 1,
  'open-sourc': 1,
  'payment_verified': False,
  'phone_verified': True,
  'physic': 1,
  'profile_complete': True,
  'project': 1,
  'restructur': 1,
  'server': 2,
  'softwar': 1,
  'sourc': 1,
  'special': 1,
  'specialist': 1,
  'strong': 1,
  'system': 1,
  'tco': 1,
  'team': 1,
  'technolog': 2,
  'transform': 1,
  'util': 1,
  'vpn': 1,
  'window': 1},
 178: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(11, 12), match='0'>,
  'First': 'n',
  'Last': '1',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'advertis': 1,
  'art': 2,
  'artist': 1,
  'campaign': 1,
  'colleg': 1,
  'creat': 1,
  'deep': 1,
  'degre': 1,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'face': 1,
  'facebook_connected': False,
  'financ': 1,
  'fine': 1,
  'four': 1,
  'graduat': 1,
  'graphic': 1,
  'holi': 1,
  'identity_verified': False,
  'industri': 1,
  'major': 1,
  'makeup': 1,
  'mini': 1,
  'moonlight': 1,
  'neck': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'profile_complete': True,
  'skill': 1,
  'spirit': 1,
  'telecommun': 1,
  'thesi': 1,
  'top': 1,
  'two': 1,
  'well': 1,
  'work': 2,
  'year': 2},
 179: {'3dsmax': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
  'First': 'm',
  'Last': '0',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'cad': 1,
  'coredraw': 1,
  'deposit_made': True,
  'design': 3,
  'dreamweav': 1,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'good': 1,
  'identity_verified': False,
  'like': 1,
  'logo': 1,
  'mani': 1,
  'max': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photo': 1,
  'photoshop': 1,
  'profile_complete': True,
  'project': 1,
  'websit': 1},
 180: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
  'Digit': None,
  'First': 'J',
  'Last': 'e',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'brief': 1,
  'capabl': 1,
  'deposit_made': False,
  'email_verified': True,
  'execut': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'good': 1,
  'guarante': 1,
  'hi': 1,
  'high': 1,
  'identity_verified': False,
  'learn': 1,
  'name': 1,
  'new': 1,
  'order': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'qualiti': 1,
  'quit': 1,
  'space': 1,
  'time': 1,
  'willing': 1},
 181: {"'m": 1,
  '...': 2,
  '200': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'g',
  'Numchar': 3,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'believ': 1,
  'best': 1,
  'cheapest': 1,
  'commun': 1,
  'complet': 1,
  'custom': 1,
  'data': 1,
  'deposit_made': True,
  'design9': 1,
  'designing3': 1,
  'email_verified': True,
  'entri': 1,
  'expert': 1,
  'facebook': 2,
  'facebook_connected': True,
  'fan': 1,
  'follow': 1,
  'good': 1,
  'googl': 1,
  'hello': 1,
  'honesti': 1,
  'identity_verified': False,
  'internet': 2,
  'joomla': 1,
  'linkedin': 1,
  'logo': 1,
  'make': 1,
  'market': 2,
  'mini': 1,
  'network': 1,
  'new': 1,
  'page': 2,
  'payment_verified': True,
  'phone_verified': True,
  'php': 1,
  'plu': 1,
  'press': 1,
  'profile_complete': True,
  'profit': 1,
  'provid': 1,
  'qualiti': 2,
  'reach': 1,
  'satisfact': 2,
  'servic': 2,
  'shall': 1,
  'social': 1,
  'solut': 1,
  'timelin': 1,
  'twitter': 1,
  'video': 1,
  'way': 1,
  'websit': 3,
  'word': 1,
  'youtub': 1},
 182: {'.net': 1,
  '2010/2013': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'd',
  'Last': '6',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'c': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'sharepoint': 1},
 183: {"'ll": 1,
  'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'r',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'catch': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': True,
  'help': 1,
  'identity_verified': True,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'success': 1},
 184: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='1'>,
  'First': 'K',
  'Last': 't',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(6, 7), match='a'>,
  'american': 1,
  'base': 1,
  'contact': 1,
  'copywrit': 1,
  'deposit_made': False,
  'discuss': 1,
  'editor': 1,
  'email_verified': True,
  'end': 1,
  'facebook_connected': False,
  'fifteen': 1,
  'freelanc': 1,
  'hesit': 1,
  'identity_verified': False,
  'look': 1,
  'make': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pleas': 1,
  'polish': 1,
  'profession': 1,
  'profile_complete': True,
  'proof': 1,
  'reader': 1,
  'requir': 1,
  'search': 1,
  'shine': 1,
  'uk': 1,
  'work': 1,
  'year': 1},
 185: {'2.0': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'o',
  'Numchar': 4,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  '\\xc3\\xa0': 2,
  'afin': 2,
  'analys': 1,
  'au': 1,
  'client': 1,
  'commun': 1,
  'connaiss': 2,
  'critiqu': 1,
  'cs': 1,
  'cs3': 4,
  'dan': 3,
  'de': 13,
  'deposit_made': False,
  'domain': 1,
  'dreamweav': 1,
  'du': 1,
  'effect': 1,
  'email_verified': True,
  'en': 3,
  'et': 5,
  'expertis': 1,
  'facebook_connected': False,
  'flash': 1,
  'fort': 1,
  'html': 1,
  'identity_verified': False,
  'illustr': 2,
  'imag': 1,
  'indesign': 1,
  'la': 3,
  'le': 6,
  'linux': 1,
  'm\\xc3\\xaam': 1,
  'mac': 1,
  'messag': 1,
  'observ': 1,
  'organis': 1,
  'ou': 1,
  'page': 1,
  'payment_verified': False,
  'pc': 1,
  'phone_verified': False,
  'photoshop': 1,
  'php': 1,
  'pro': 1,
  'profile_complete': True,
  'quark': 1,
  'que': 1,
  'satisfact': 1,
  'se': 1,
  'situat': 1,
  'son': 1,
  'sur': 2,
  'text': 1,
  'travail': 2,
  'un': 2,
  'vo': 1,
  'xml': 1},
 186: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='1'>,
  'First': 'g',
  'Last': 'b',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
  'best': 1,
  'client': 1,
  'come': 1,
  'commun': 1,
  'deposit_made': True,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'good': 1,
  'graphic': 1,
  'identif': 1,
  'identity_verified': False,
  'need': 1,
  'part-tim': 1,
  'passion': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'realli': 1,
  'valu': 1,
  'visual': 1,
  'web': 1},
 187: {'5': 1,
  '51': 1,
  '9i': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'd',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'addit': 1,
  'alway': 1,
  'appoint': 1,
  'attribut': 1,
  'basic': 1,
  'bd': 1,
  'best': 1,
  'case': 1,
  'certifi': 3,
  'code': 1,
  'confid': 1,
  'content': 1,
  'cours': 1,
  'data': 1,
  'databas': 2,
  'dba': 2,
  'dear': 1,
  'deliveri': 1,
  'deposit_made': False,
  'design': 3,
  'develop': 2,
  'dhaka': 1,
  'dhanmondi': 1,
  'diploma': 1,
  'durat': 1,
  'effort': 1,
  'email_verified': True,
  'end': 1,
  'entri': 1,
  'experi': 1,
  'experienc': 1,
  'extra': 1,
  'facebook_connected': False,
  'field': 1,
  'finish': 2,
  'form': 1,
  'freelanc': 1,
  'fulli': 1,
  'h': 1,
  'hard': 1,
  'honesti': 1,
  'id': 1,
  'identity_verified': False,
  'job': 1,
  'local': 1,
  'ltd.': 1,
  'main': 1,
  'manag': 1,
  'ms': 1,
  'newcom': 1,
  'oper': 1,
  'oracl': 3,
  'organ': 1,
  'outsourc': 1,
  'patienc': 1,
  'payment_verified': False,
  'per': 1,
  'phone_verified': False,
  'pl/sql': 1,
  'play': 1,
  'profession': 3,
  'profile_complete': True,
  'programm': 1,
  'provid': 2,
  'qualif': 1,
  'qualiti': 1,
  'r': 1,
  'report': 1,
  'requir': 1,
  'satisfi': 1,
  'server': 1,
  'softwar': 1,
  'specif': 1,
  'sql': 3,
  'three': 1,
  'time': 1,
  'urgent': 1,
  'use': 1,
  'web': 1,
  'websit': 1,
  'work': 4,
  'xhtml': 1},
 188: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'y',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'academ': 1,
  'air': 1,
  'argentina': 1,
  'bueno': 1,
  'creativ': 1,
  'critic': 1,
  'cultur': 1,
  'de': 1,
  'deposit_made': False,
  'drama': 1,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'film': 1,
  'identity_verified': False,
  'interest': 1,
  'linguist': 1,
  'literari': 1,
  'literatur': 2,
  'nativ': 1,
  'payment_verified': False,
  'philosophi': 1,
  'phone_verified': False,
  'polit': 1,
  'profile_complete': True,
  'scienc': 1,
  'social': 1,
  'spanish': 2,
  'speaker': 1,
  'special': 1,
  'student': 1,
  'subject': 1,
  'universidad': 1,
  'write': 1},
 189: {'--': 8,
  '2000': 1,
  '8i': 1,
  '98': 1,
  'Caps': <_sre.SRE_Match object; span=(6, 7), match='B'>,
  'Digit': None,
  'First': 'h',
  'Last': 'a',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'c': 1,
  'c++': 1,
  'css': 1,
  'deposit_made': False,
  'designing\\t': 1,
  'email_verified': True,
  'facebook_connected': True,
  'html': 1,
  'identity_verified': False,
  'java': 1,
  'joomla': 1,
  'languag': 1,
  'mysql': 1,
  'oracl': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 2,
  'profici': 1,
  'profile_complete': True,
  'python': 1,
  'script': 1,
  'softwar': 1,
  'system': 1,
  'window': 1,
  'xml': 1},
 190: {'3dsmax': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'd',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'anyth': 1,
  'archicad': 1,
  'architectur': 2,
  'complet': 1,
  'deposit_made': False,
  'distanc': 1,
  'effect': 1,
  'email_verified': True,
  'ethic': 1,
  'facebook_connected': False,
  'go': 1,
  'good': 2,
  'happi': 1,
  'identity_verified': False,
  'im': 1,
  'incept': 1,
  'make': 1,
  'mani': 1,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': True,
  'photoshop': 1,
  'produc': 1,
  'profici': 1,
  'profile_complete': True,
  'project': 1,
  'qualiti': 1,
  'technologist': 1,
  'version': 1,
  'way': 1,
  'will': 1,
  'work': 3},
 191: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'e',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'also': 1,
  'blog': 1,
  'blogger': 1,
  'current': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 2,
  'game': 1,
  'identity_verified': False,
  'latest': 1,
  'media': 1,
  'nich': 1,
  'offer': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'review': 1,
  'servic': 1,
  'social': 1,
  'special': 1,
  'tech': 1,
  'technolog': 1,
  'updat': 1,
  'web': 1,
  'write': 1,
  'writer': 1},
 192: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
  'First': 's',
  'Last': '2',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'adob': 1,
  'aim': 1,
  'alway': 1,
  'bgh': 1,
  'current': 1,
  'custom': 2,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'experi': 1,
  'expert': 1,
  'facebook_connected': False,
  'field': 1,
  'get': 1,
  'happi': 1,
  'host': 2,
  'identity_verified': False,
  'keep': 1,
  'kind': 1,
  'like': 1,
  'mainli': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'servic': 1,
  'softwar': 1,
  'solut': 2,
  'suppli': 1,
  'web': 2,
  'work': 2},
 193: {'7': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'v',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'area': 1,
  'dear': 1,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'flyer': 1,
  'follow': 1,
  'forward': 1,
  'identity_verified': False,
  'interest': 1,
  'look': 1,
  'madam': 1,
  'payment_verified': False,
  'phone_verified': False,
  'poster': 1,
  'profession': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'servic': 1,
  'sir': 1,
  'site': 1,
  'video': 1,
  'work': 1,
  'year': 1},
 194: {"'m": 2,
  "'ve": 1,
  '3d': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'M',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'anim': 1,
  'deposit_made': False,
  'effect': 1,
  'email_verified': True,
  'engin': 1,
  'experi': 1,
  'facebook_connected': False,
  'game': 1,
  'identity_verified': False,
  'like': 1,
  'mani': 1,
  'mari': 1,
  'max': 1,
  'maya': 1,
  'model': 1,
  'motionbuild': 1,
  'mudbox': 1,
  'nuke': 1,
  'other': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'profile_complete': True,
  'project': 1,
  'rigger': 1,
  'textur': 1,
  'unity3d': 2,
  'unreal': 1,
  'well': 1,
  'work': 1,
  'year': 1,
  'zbrush': 1},
 195: {'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'capabl': 1,
  'deliveri': 1,
  'deposit_made': False,
  'email_verified': True,
  'ensur': 1,
  'environ': 1,
  'facebook_connected': False,
  'fast-pac': 1,
  'identity_verified': False,
  'independ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'specialist': 1,
  'time': 1,
  'work': 3},
 196: {'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'n',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'autom': 1,
  'case': 1,
  'creation': 1,
  'current': 1,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'function': 1,
  'identity_verified': False,
  'long': 1,
  'manag': 1,
  'nine': 1,
  'payment_verified': False,
  'phone_verified': False,
  'plan': 1,
  'profile_complete': True,
  'qa': 1,
  'rich': 1,
  'seek': 1,
  'softwar': 1,
  'term': 1,
  'test': 5,
  'work': 1,
  'year': 1},
 197: {'.net': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': None,
  'First': 'D',
  'Last': 'D',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'algorithm': 1,
  'also': 1,
  'asp.net': 1,
  'azur': 1,
  'background': 1,
  'c': 1,
  'contest': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'java': 1,
  'judg': 1,
  'languag': 1,
  'microsoft': 1,
  'mostli': 1,
  'mvc': 1,
  'onlin': 1,
  'particip': 1,
  'past': 1,
  'payment_verified': True,
  'phone_verified': True,
  'problem': 1,
  'profile_complete': True,
  'program': 1,
  'python': 1,
  'relat': 1,
  'solid': 1,
  'solv': 1,
  'sport': 1,
  'structur': 1,
  'technolog': 1,
  'window': 1,
  'work': 1},
 198: {'200': 1,
  '50': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'n',
  'Last': '4',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'abl': 1,
  'accordingli': 1,
  'almost': 1,
  'although': 1,
  'anyth': 1,
  'articl': 3,
  'award': 2,
  'base': 1,
  'bid': 2,
  'busi': 1,
  'choic': 1,
  'comment': 1,
  'compet': 1,
  'consid': 1,
  'consider': 1,
  'creativ': 1,
  'data': 1,
  'day': 1,
  'deadlin': 1,
  'deliv': 1,
  'depend': 1,
  'deposit_made': False,
  'detail': 1,
  'divers': 1,
  'e-book': 1,
  'email_verified': True,
  'employ': 1,
  'entri': 1,
  'experi': 1,
  'facebook_connected': False,
  'five': 2,
  'forward': 1,
  'freelanc': 1,
  'guarante': 1,
  'hard': 1,
  'identity_verified': False,
  'includ': 1,
  'job': 2,
  'job.mi': 1,
  'later': 1,
  'list': 1,
  'look': 1,
  'meet': 1,
  'much': 1,
  'orient': 1,
  'payment_verified': False,
  'phone_verified': False,
  'previou': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'readi': 1,
  'regard': 1,
  'requir': 1,
  'servic': 1,
  'similar': 1,
  'special': 1,
  'sure': 1,
  'thank': 1,
  'truli': 1,
  'utmost': 1,
  'varieti': 1,
  'work': 3,
  'worker': 1,
  'write': 1,
  'writer': 1,
  'written': 1,
  'year': 1},
 199: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
  'Digit': None,
  'First': 'K',
  'Last': 'e',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'area': 1,
  'child': 1,
  'deposit_made': False,
  'dj': 1,
  'drop': 1,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'femal': 1,
  'identity_verified': False,
  'look': 1,
  'messag': 1,
  'narrat': 1,
  'payment_verified': False,
  'philadelphia': 1,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'prompt': 1,
  'talent': 1,
  'voic': 2},
 200: {'100': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'u',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'accuraci': 1,
  'advanc': 1,
  'deliveri': 1,
  'deposit_made': False,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'good': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'take': 1,
  'time': 1},
 201: {"'m": 3,
  "'ve": 1,
  '8': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
  'First': 'm',
  'Last': '0',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'advic': 1,
  'also': 1,
  'bangladesh.i': 1,
  'beauti': 1,
  'code': 4,
  'cool': 1,
  'creat': 1,
  'cross': 1,
  'cross-brows': 1,
  'css': 1,
  'css3': 1,
  'debug': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'devic': 3,
  'dhaka': 1,
  'dynam': 1,
  'email': 1,
  'email_verified': True,
  'end': 1,
  'engag': 1,
  'engin': 1,
  'exist': 1,
  'facebook_connected': False,
  'follow': 1,
  'front': 1,
  'front-end': 2,
  'give': 1,
  'happi': 1,
  'hire': 1,
  'html5': 2,
  'identity_verified': False,
  'improv': 1,
  'interfac': 1,
  'javascript': 1,
  'large-scal': 1,
  'list': 1,
  'loss': 1,
  'mass': 1,
  'mean': 1,
  'modern': 2,
  'newslett': 1,
  'nice': 1,
  'one': 2,
  'optim': 1,
  'payment_verified': False,
  'perform': 1,
  'phone_verified': False,
  'profile_complete': True,
  'program': 2,
  'project': 2,
  'qualiti': 1,
  'review': 3,
  'search': 1,
  'sinc': 2,
  'small': 1,
  'stack': 1,
  'tag': 1,
  'techniqu': 1,
  'test': 3,
  'use': 1,
  'user': 1,
  'want': 1,
  'web': 2,
  'well': 1,
  'without': 1,
  'workshop': 1,
  'year': 1},
 202: {"'m": 2,
  '.net.i': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
  'First': 'o',
  'Last': '7',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'certifi': 1,
  'code': 1,
  'databas': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'forms.mi': 1,
  'four': 1,
  'fulli': 1,
  'identity_verified': False,
  'microsoft': 1,
  'newest': 1,
  'oracl': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'servic': 1,
  'sql': 1,
  'technolog': 1,
  'wcf': 1,
  'web': 1,
  'window': 1,
  'work': 1,
  'wpf': 1,
  'year': 1},
 203: {'-year': 2,
  '1.': 1,
  '3': 2,
  '5': 1,
  '6': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'basic': 3,
  'commun': 1,
  'coordin': 1,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'english': 1,
  'experi': 4,
  'facebook_connected': False,
  'familiar': 1,
  'html': 1,
  'identity_verified': False,
  'imag': 1,
  'javascript': 1,
  'joomla': 2,
  'jqueri': 1,
  'know': 1,
  'linux': 1,
  'main': 1,
  'month': 1,
  'mysql': 1,
  'oscommerc': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'php': 1,
  'platform': 1,
  'profile_complete': True,
  'recent': 1,
  'skill': 2,
  'slice': 1,
  'svn': 1,
  'use': 3,
  'well': 1,
  'work': 1,
  'year': 1},
 204: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
  'Digit': None,
  'First': 'L',
  'Last': 'u',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'build': 1,
  'career': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'job': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'respect': 1,
  'want': 1},
 205: {'5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
  'First': 'f',
  'Last': '2',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'data': 2,
  'deposit_made': False,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'manipul': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'queri': 1,
  'valid': 1,
  'variou': 2,
  'work': 2,
  'written': 1,
  'year': 1},
 206: {'.net': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
  'Digit': None,
  'First': 'K',
  'Last': 'k',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'c': 1,
  'custom': 1,
  'deposit_made': False,
  'email_verified': True,
  'enterpris': 1,
  'experienc': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'inventori': 1,
  'oracl': 1,
  'payment_verified': False,
  'phone_verified': False,
  'plan': 1,
  'profile_complete': True,
  'relat': 1,
  'resourc': 1,
  'sql': 1,
  'vb': 1},
 207: {"'m": 2,
  '60': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
  'Digit': None,
  'First': 'J',
  'Last': 'n',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'avail': 1,
  'base': 2,
  'becom': 1,
  'coast': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'england': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'howev': 1,
  'identity_verified': False,
  'kent': 1,
  'london': 1,
  'look': 1,
  'mile': 1,
  'north': 1,
  'payment_verified': False,
  'phone_verified': False,
  'place': 1,
  'profile_complete': True,
  'right': 1,
  'seem': 1,
  'sure': 1,
  'us': 1,
  'work': 3},
 208: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'v',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'aggress': 1,
  'attitud': 1,
  'believ': 1,
  'complet': 1,
  'consult': 1,
  'deposit_made': True,
  'effici': 1,
  'email_verified': True,
  'facebook_connected': False,
  'field': 1,
  'give': 1,
  'help': 2,
  'identity_verified': False,
  'impart': 1,
  'knowledg': 1,
  'maximum': 1,
  'other': 2,
  'payment_verified': False,
  'perfect': 1,
  'period': 1,
  'person': 1,
  'phone_verified': False,
  'pleasur': 1,
  'product': 1,
  'profile_complete': True,
  'provid': 1,
  'short': 1,
  'skill': 1,
  'systemat': 1,
  'task': 1,
  'te': 1,
  'time': 1,
  'tri': 1,
  'use': 1,
  'variou': 1,
  'within': 1,
  'work': 3},
 209: {"'m": 2,
  "'ve": 2,
  '2007': 1,
  '203': 1,
  '3': 1,
  '9': 1,
  'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 'e',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'abil': 1,
  'almost': 1,
  'app': 1,
  'articl': 1,
  'bad': 1,
  'build': 1,
  'busi': 1,
  'campaign': 1,
  'could': 1,
  'current': 1,
  'dabbl': 1,
  'decemb': 1,
  'deposit_made': False,
  'email_verified': True,
  'employ': 1,
  'erp': 1,
  'etc.i': 1,
  'experi': 1,
  'facebook_connected': True,
  'familiar': 1,
  'fan': 1,
  'forward': 1,
  'good': 1,
  'handl': 1,
  'hi': 1,
  'identity_verified': False,
  'j.': 1,
  'learn': 1,
  'littl': 1,
  'maintain': 1,
  'mani': 1,
  'microsoft': 1,
  'mountain': 1,
  'new': 1,
  'offic': 1,
  'past': 1,
  'payment_verified': False,
  'pdf': 1,
  'phone_verified': True,
  'poem': 2,
  'poetri': 1,
  'portfolio': 1,
  'present': 1,
  'prior': 1,
  'product': 1,
  'profile_complete': True,
  'relationship': 1,
  'reput': 1,
  'servic': 1,
  'sinc': 1,
  'skill': 1,
  'softwar': 1,
  'soon': 1,
  'space': 1,
  'stephen': 1,
  'telemarket': 1,
  'thing': 1,
  'time.i': 1,
  'virtual': 1,
  'well': 1,
  'work': 3,
  'write': 1,
  'writer': 1,
  'written': 1,
  'year': 3,
  'yoga': 1},
 210: {'...': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 't',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'convert': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'email_verified': True,
  'facebook_connected': False,
  'html/css': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'plugin': 1,
  'profile_complete': True,
  'psd': 1,
  'respons': 1,
  'theme': 3,
  'wordpress': 1},
 211: {"'m": 1,
  '15.': 1,
  '2': 2,
  'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'i',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'anoth': 1,
  'deposit_made': True,
  'disast': 1,
  'editor': 1,
  'email_verified': True,
  'enjoy': 2,
  'facebook_connected': False,
  'fl': 1,
  'form': 1,
  'identity_verified': False,
  'increas': 1,
  'knowledg': 1,
  'live': 1,
  'major': 1,
  'need': 1,
  'newspap': 2,
  'one': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'report': 1,
  'sinc': 1,
  'small': 1,
  'sunni': 1,
  'work': 1,
  'write': 1},
 212: {'--': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  '``': 2,
  'account': 1,
  'almost': 1,
  'also': 1,
  'applic': 1,
  'basic': 1,
  'book': 1,
  'cm': 1,
  'compos': 1,
  'comput': 2,
  'computer': 1,
  'coreldraw': 1,
  'creat': 1,
  'custom': 1,
  'data': 2,
  'deposit_made': False,
  'document': 1,
  'done': 1,
  'drupal': 1,
  'dtp': 2,
  'email_verified': True,
  'english': 1,
  'etc': 3,
  'exam': 1,
  'experi': 1,
  'facebook_connected': False,
  'fairli': 1,
  'familiar': 1,
  'filter': 1,
  'format': 2,
  'game': 1,
  'good': 1,
  'googl': 1,
  'great': 1,
  'gujarati': 1,
  'hindi': 1,
  'hundr': 1,
  'identity_verified': False,
  'includ': 1,
  'internet': 1,
  'joomla': 1,
  'know': 1,
  'languag': 1,
  'made': 1,
  'magic': 1,
  'marathi': 1,
  'master': 1,
  'mess': 1,
  'ms-offic': 2,
  'onlin': 1,
  'paper': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'practic': 1,
  'process': 1,
  'profile_complete': True,
  'say': 1,
  'search': 1,
  'student': 1,
  'tackl': 1,
  'task': 1,
  'taught': 1,
  'these': 1,
  'thousand': 1,
  'typeset': 1,
  'wordpress': 1,
  'wow': 1},
 213: {"'ll": 1,
  '16': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'h',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'assign': 1,
  'assur': 1,
  'back': 1,
  'birth': 1,
  'come': 1,
  'compani': 2,
  'comput': 3,
  'dear': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'fashion': 3,
  'field': 1,
  'financ': 1,
  'free': 1,
  'garment': 1,
  'hardwar': 1,
  'hi': 1,
  'identity_verified': False,
  'indian': 1,
  'industri': 1,
  'intern': 2,
  'invest': 1,
  'lastli': 1,
  'leadership': 1,
  'manufactur': 1,
  'market': 1,
  'multi': 1,
  'next': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profil': 1,
  'profile_complete': True,
  'program': 1,
  'reader': 1,
  'rest': 1,
  'safe': 1,
  'sale': 1,
  'sam': 1,
  'say': 1,
  'still': 1,
  'sure': 1,
  'time': 1,
  'total': 1,
  'tri': 1,
  'work': 4,
  'year': 1},
 214: {"'m": 1,
  '10': 1,
  '15': 1,
  '2': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='Y'>,
  'Digit': None,
  'First': 'Y',
  'Last': 'F',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'agenc': 1,
  'air': 1,
  'also': 1,
  'app': 1,
  'argentina': 1,
  'base': 1,
  'brand': 2,
  'bueno': 1,
  'coca-cola': 1,
  'compani': 1,
  'corpor': 1,
  'cours': 1,
  'creativ': 1,
  'custom': 1,
  'dedic': 1,
  'degre': 1,
  'deposit_made': True,
  'design': 16,
  'digit': 2,
  'ebook': 1,
  'email_verified': True,
  'etc': 1,
  'experi': 2,
  'facebook_connected': False,
  'field': 1,
  'focu': 1,
  'freelanc': 2,
  'full-tim': 1,
  'graphic': 2,
  'high': 1,
  'ident': 1,
  'identity_verified': False,
  'includ': 1,
  'innov': 1,
  'interact': 1,
  'interfac': 1,
  'like': 1,
  'logo': 1,
  'mani': 2,
  'media': 1,
  'mobil': 1,
  'new': 1,
  'notch': 1,
  'number': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'portfolio': 1,
  'profession': 1,
  'profile_complete': True,
  'prototyp': 1,
  'provid': 1,
  'qualiti': 1,
  'relat': 1,
  'reliabl': 1,
  'see': 1,
  'servic': 1,
  'soni': 1,
  'startup': 1,
  'top': 1,
  'ui': 2,
  'user': 2,
  'ux': 2,
  'web': 1,
  'well': 2,
  'wirefram': 1,
  'work': 2,
  'year': 2},
 215: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'r',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'japanes': 1,
  'love': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'spanish': 1,
  'speak': 1,
  'type': 1,
  'write': 1},
 216: {'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'y',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'analog': 1,
  'deposit_made': True,
  'design': 1,
  'digit': 1,
  'electron': 1,
  'email_verified': True,
  'embed': 1,
  'engin': 1,
  'experi': 1,
  'facebook_connected': True,
  'good': 1,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'set': 1,
  'skill': 1,
  'system': 2},
 217: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 's',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'app': 1,
  'backend': 1,
  'basic': 1,
  'complex': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'everyth': 1,
  'facebook_connected': False,
  'frontend': 1,
  'identity_verified': False,
  'javascript': 1,
  'love': 1,
  'mainli': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'web': 2,
  'websit': 1,
  'wordpress': 1,
  'work': 1},
 218: {'2d': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='4'>,
  'First': 'p',
  'Last': 'o',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'anim': 1,
  'brazil': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'game': 1,
  'identity_verified': False,
  'live': 1,
  'name': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'tradit': 1,
  'web': 1,
  'work': 1},
 219: {"'d": 1,
  "'m": 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'h',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'advanc': 1,
  'alway': 1,
  'camtasia': 1,
  'creat': 2,
  'deadlin': 1,
  'deposit_made': False,
  'email_verified': True,
  'exampl': 1,
  'facebook_connected': False,
  'happi': 1,
  'high': 1,
  'identity_verified': False,
  'meet': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pride': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'request': 1,
  'studio': 1,
  'thank': 1,
  'upon': 1,
  'user': 1,
  'video': 2,
  'work': 1,
  'year': 1},
 220: {'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'y',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'best': 1,
  'bring': 1,
  'complet': 1,
  'condit': 1,
  'confid': 1,
  'critic': 1,
  'deposit_made': False,
  'design': 5,
  'email_verified': True,
  'enjoy': 1,
  'experi': 1,
  'experienc': 1,
  'facebook_connected': False,
  'frame': 1,
  'good': 1,
  'graphic': 3,
  'hard': 1,
  'hire': 1,
  'identity_verified': False,
  'mani': 1,
  'output': 1,
  'outsourc': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'promis': 1,
  'respons': 1,
  'stipul': 1,
  'talent': 1,
  'task': 1,
  'time': 1,
  'utmost': 1,
  'within': 1,
  'work': 2,
  'worker': 1,
  'year': 1},
 221: {'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'aliv': 1,
  'api': 1,
  'applic': 2,
  'base': 1,
  'big': 1,
  'bring': 1,
  'cakephp': 1,
  'codeignit': 1,
  'deposit_made': True,
  'develop': 1,
  'dream': 1,
  'email_verified': True,
  'expert': 1,
  'facebook_connected': True,
  'friendli': 1,
  'idea': 1,
  'identity_verified': False,
  'implement': 1,
  'jqueri': 1,
  'meet': 1,
  'mysql': 1,
  'nepal': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'see': 1,
  'servic': 1,
  'small': 1,
  'team': 1,
  'tool': 1,
  'us': 1,
  'use': 1,
  'vari': 1,
  'web': 3},
 222: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
  'First': 's',
  'Last': '0',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'confid': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'hard': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'worker': 1},
 223: {'3': 1,
  'Caps': None,
  'Digit': None,
  'First': 'z',
  'Last': 'c',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
  'also': 1,
  'build': 1,
  'cgi': 1,
  'colleg': 1,
  'css': 1,
  'current': 1,
  'custom': 1,
  'data': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'english': 1,
  'experi': 1,
  'facebook_connected': False,
  'html': 1,
  'identity_verified': False,
  'industri': 1,
  'java': 1,
  'larg': 1,
  'major': 2,
  'manag': 1,
  'mysql': 1,
  'network': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'scale': 1,
  'servic': 1,
  'technolog': 1,
  'telecom': 1,
  'variou': 1,
  'web': 1,
  'work': 2,
  'year': 1},
 224: {"'ve": 1,
  '200': 1,
  '8': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
  'Digit': None,
  'First': 'L',
  'Last': 'u',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'includ': 1,
  'intern': 1,
  'jqueri': 1,
  'mysql': 1,
  'past': 1,
  'payment_verified': True,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'project': 2,
  'web': 1,
  'work': 1,
  'year': 1},
 225: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
  'Digit': None,
  'First': 'N',
  'Last': 'n',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'anoth': 1,
  'best': 1,
  'client': 1,
  'compani': 2,
  'dear': 1,
  'deposit_made': False,
  'deserv': 1,
  'design': 2,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'galleri': 1,
  'identity_verified': False,
  'inform': 1,
  'make': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'portal': 1,
  'portfolio': 2,
  'profession': 1,
  'profile_complete': True,
  'remark': 1,
  'see': 1,
  'strive': 1,
  'uniqu': 1,
  'way': 1,
  'work': 1},
 226: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
  'First': 'v',
  'Last': '1',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'achiev': 1,
  'alway': 1,
  'assur': 1,
  'dedic': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'given': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'qualiti': 1,
  'timelin': 1,
  'work': 1},
 227: {'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'deposit_made': False,
  'email_verified': True,
  'extra': 1,
  'facebook_connected': True,
  'find': 1,
  'identity_verified': False,
  'job': 1,
  'local': 1,
  'money': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'small': 1,
  'tri': 1,
  'tv': 1,
  'work': 1},
 228: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='1'>,
  'First': 'n',
  'Last': '1',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'adob': 1,
  'amount': 1,
  'android': 1,
  'app': 1,
  'balsamiq': 1,
  'brand': 1,
  'build': 1,
  'class': 1,
  'compani': 1,
  'creativ': 1,
  'deposit_made': False,
  'design': 2,
  'disappoint': 1,
  'dot': 2,
  'email_verified': True,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': True,
  'great': 1,
  'hire': 1,
  'icon': 1,
  'identity_verified': False,
  'illustr': 1,
  'io': 1,
  'keynot': 1,
  'logo': 3,
  'mobil': 2,
  'mock': 1,
  'much': 1,
  'name': 1,
  'payment_verified': True,
  'phone_verified': False,
  'photoshop': 1,
  'profile_complete': True,
  'reach': 1,
  'scratch': 1,
  'sketch': 1,
  'sure': 1,
  'ui': 1,
  'ui/ux': 1,
  'work': 2,
  'world': 1},
 229: {'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'k',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  'comput': 1,
  'current': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'especi': 1,
  'experi': 1,
  'facebook_connected': False,
  'frontend': 1,
  'identity_verified': False,
  'mani': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'scienc': 1,
  'studi': 1,
  'switzerland': 1,
  'technolog': 1,
  'web': 2,
  'year': 1,
  'young': 1},
 230: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
  'First': 'm',
  'Last': '4',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'actual': 1,
  'anim': 1,
  'attempt': 1,
  'build': 2,
  'comprehend': 1,
  'connect': 1,
  'daili': 1,
  'deposit_made': False,
  'design': 4,
  'desktop': 1,
  'develop': 1,
  'digit': 1,
  'email_verified': True,
  'experi': 2,
  'facebook_connected': True,
  'film': 1,
  'help': 2,
  'i\\xe2\\u20ac\\u2122m': 1,
  'identity_verified': False,
  'illustr': 1,
  'individu': 1,
  'interfac': 1,
  'ios/android': 1,
  'know-how': 1,
  'latest': 2,
  'love': 1,
  'make': 1,
  'mind': 1,
  'onlin': 1,
  'other': 1,
  'passion': 1,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': True,
  'pro': 1,
  'profile_complete': True,
  'ration': 1,
  'real': 1,
  'refus': 1,
  'sens': 1,
  'skill': 1,
  'someth': 1,
  'startup': 1,
  'stun': 1,
  'tool': 1,
  'trend': 1,
  'ui/ux': 1,
  'video': 1,
  'web': 1,
  'websit': 1,
  'wordpress': 2,
  'year': 1},
 231: {"''": 1,
  '..': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
  'First': 's',
  'Last': '0',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '``': 1,
  'add': 1,
  'also': 1,
  'background': 1,
  'banner': 1,
  'base': 1,
  'believ': 1,
  'best': 1,
  'book': 1,
  'club': 1,
  'collect': 1,
  'color': 1,
  'confid': 1,
  'correct': 1,
  'deposit_made': False,
  'design': 5,
  'edit': 2,
  'email_verified': True,
  'etc': 1,
  'experi': 1,
  'expert': 1,
  'facebook_connected': False,
  'fashion': 1,
  'full': 1,
  'garment': 1,
  'graphic': 1,
  'i\\xe2\\u20ac\\u2122m': 1,
  'identity_verified': False,
  'imag': 1,
  'manipul': 1,
  'much': 1,
  'object': 1,
  'parti': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photo': 1,
  'photoshop': 1,
  'poster': 1,
  'profession': 1,
  'profile_complete': True,
  'remov': 2,
  'respons': 1,
  'retouch': 2,
  't-shirt': 1,
  'theme': 1,
  'type': 1,
  'wear': 2,
  'word': 1,
  'work': 2},
 232: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': None,
  'First': 'M',
  'Last': 'r',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'addit': 1,
  'articl': 1,
  'content': 1,
  'current': 1,
  'deposit_made': False,
  'edit': 1,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'french': 1,
  'hundr': 1,
  'identity_verified': False,
  'japanes': 1,
  'music': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'proofread': 1,
  'sever': 1,
  'spanish': 1,
  'translat': 1,
  'two': 1,
  'write': 1,
  'writer': 1,
  'written': 1},
 233: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'alway': 1,
  'assign': 1,
  'creat': 1,
  'creativ': 1,
  'deliv': 1,
  'deposit_made': False,
  'email_verified': True,
  'ensur': 1,
  'excit': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'love': 1,
  'new': 1,
  'paper': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pleasantli': 1,
  'profile_complete': True,
  'put': 1,
  'soul': 1,
  'surpris': 1,
  'task': 1,
  'thank': 1,
  'whenev': 1,
  'world': 2,
  'write': 1},
 234: {'3': 1,
  '5+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'k',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'american': 1,
  'applic': 1,
  'best': 2,
  'brand': 2,
  'challeng': 1,
  'classifi': 1,
  'client': 1,
  'compani': 1,
  'competit': 1,
  'content': 1,
  'cover': 2,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'end': 1,
  'european': 1,
  'execut': 1,
  'experi': 1,
  'experienc': 1,
  'extens': 1,
  'facebook_connected': True,
  'fashion': 1,
  'financ': 1,
  'given': 1,
  'high': 1,
  'identity_verified': False,
  'includ': 1,
  'increas': 1,
  'industry.i': 1,
  'insight': 1,
  'intern': 1,
  'landscap': 1,
  'love': 1,
  'mani': 1,
  'market': 4,
  'media': 1,
  'mobil': 1,
  'money': 1,
  'mortgag': 1,
  'onlin': 2,
  'optim': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pleasur': 1,
  'possibl': 1,
  'presenc': 1,
  'profile_complete': True,
  'properti': 1,
  'save': 1,
  'search': 1,
  'seo': 1,
  'social': 1,
  'strategi': 1,
  'success': 1,
  'travel': 1,
  'uk': 1,
  'vertic': 1,
  'work': 4,
  'year': 2},
 235: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'm',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'api': 1,
  'applic': 1,
  'architectur': 1,
  'aw': 1,
  'busi': 1,
  'capac': 2,
  'cdn': 1,
  'cloud': 2,
  'compani': 2,
  'demand': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 1,
  'either': 1,
  'email_verified': True,
  'enterpris': 1,
  'even': 1,
  'experienc': 1,
  'facebook_connected': False,
  'fruit': 1,
  'gateway': 1,
  'googl': 1,
  'guru': 1,
  'identity_verified': False,
  'individu': 1,
  'invest': 1,
  'kind': 1,
  'larg': 1,
  'level': 1,
  'load': 1,
  'love': 3,
  'mainten': 1,
  'make': 1,
  'manag': 2,
  'mid-level': 1,
  'mongodb': 1,
  'mostli': 1,
  'nodej': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'platform': 3,
  'profession': 1,
  'profile_complete': True,
  'programm': 1,
  'project': 1,
  'scalabl': 1,
  'scale': 1,
  'secur': 1,
  'small': 1,
  'solut': 1,
  'storag': 1,
  'sustain': 1,
  'web': 1,
  'whole': 1,
  'work': 2,
  'would': 1},
 236: {'14': 1,
  '2d': 1,
  '3d': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'i',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'anim': 1,
  'architectur': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'graphic': 1,
  'identity_verified': False,
  'industri': 1,
  'logo': 1,
  'media': 1,
  'motion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'work': 1,
  'year': 1},
 237: {'15': 5,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'm',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'ago': 5,
  'c++': 5,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'guy': 5,
  'identity_verified': True,
  'linux': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 5,
  'profile_complete': True,
  'sinc': 5,
  'sql': 1,
  'sqllinux': 4,
  'year': 5},
 238: {"'s": 1,
  '.net': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
  'First': 'A',
  'Last': '6',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'asp': 1,
  'asp.net': 1,
  'beyond': 1,
  'c/c': 1,
  'casino': 1,
  'corpor': 1,
  'databas': 1,
  'deposit_made': True,
  'done': 1,
  'email_verified': True,
  'expect': 1,
  'facebook_connected': False,
  'financ': 1,
  'first': 1,
  'get': 1,
  'group': 1,
  'host': 1,
  'identity_verified': False,
  'joomla': 1,
  'lot': 1,
  'manag': 1,
  'mortgag': 1,
  'mysql': 1,
  'one': 1,
  'oracl': 2,
  'payment_verified': True,
  'perform': 1,
  'phone_verified': True,
  'php': 1,
  'profession': 1,
  'profile_complete': True,
  'roof': 1,
  'script': 1,
  'tech': 1,
  'techi': 1,
  'work': 1,
  'would': 1},
 239: {'2007': 1,
  'Caps': <_sre.SRE_Match object; span=(5, 6), match='I'>,
  'Digit': None,
  'First': 't',
  'Last': 'y',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'advertis': 1,
  'also': 2,
  'around': 1,
  'auckland': 1,
  'avail': 1,
  'base': 1,
  'basi': 1,
  'cat': 1,
  'clock': 1,
  'conveni': 1,
  'cover': 1,
  'current': 1,
  'daili': 1,
  'day': 1,
  'deposit_made': True,
  'design': 1,
  'differ': 1,
  'discuss': 1,
  'document': 1,
  'email_verified': True,
  'end': 1,
  'facebook_connected': False,
  'financi': 1,
  'first': 1,
  'free': 1,
  'freelanc': 1,
  'get': 1,
  'happi': 1,
  'hesit': 1,
  'highli': 1,
  'identity_verified': False,
  'immedi': 1,
  'industri': 1,
  'italian': 2,
  'legal': 2,
  'local': 1,
  'manag': 1,
  'might': 1,
  'nativ': 1,
  'new': 1,
  'payment_verified': False,
  'perform': 1,
  'phone_verified': True,
  'pleas': 1,
  'press': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 3,
  'quit': 1,
  'receiv': 1,
  'releas': 1,
  'reliabl': 1,
  'respons': 1,
  'script': 2,
  'show': 1,
  'sinc': 1,
  'sites.i': 1,
  'specif': 1,
  'technic': 1,
  'test': 1,
  'text': 2,
  'therefor': 1,
  'time': 3,
  'tools.i': 1,
  'touch': 1,
  'trado': 1,
  'translat': 6,
  'trial': 1,
  'urgent': 1,
  'use': 1,
  'varieti': 1,
  'web': 1,
  'work': 3,
  'zealand': 1,
  'zone': 3},
 240: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
  'First': 'r',
  'Last': '2',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'expos': 1,
  'facebook_connected': False,
  'field': 1,
  'freelanc': 1,
  'give': 1,
  'identity_verified': False,
  'knowledg': 1,
  'need': 1,
  'new': 1,
  'opportun': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pleas': 1,
  'profile_complete': True,
  'work': 1},
 241: {"''": 1,
  '1': 1,
  '1981': 1,
  '19th': 1,
  '32': 1,
  '5.': 1,
  '7.': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'i',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  '\\xe2\\u20ac\\u201c': 2,
  'administr': 1,
  'agre': 1,
  'also': 1,
  'among': 1,
  'arabia': 1,
  'arteri': 1,
  'articl': 1,
  'basic': 1,
  'build': 1,
  'busi': 1,
  'cancer': 1,
  'certif': 1,
  'chief': 1,
  'china': 1,
  'comput': 1,
  'continu': 1,
  'control': 1,
  'deposit_made': True,
  'develop': 1,
  'diagnosi': 1,
  'diploma': 1,
  'diseas': 1,
  'dissert': 1,
  'dutch': 1,
  'dynam': 1,
  'e': 1,
  'email_verified': True,
  'engin': 2,
  'english': 1,
  'excel': 1,
  'experi': 1,
  'exploit': 1,
  'facebook_connected': False,
  'form': 1,
  'freelanc': 1,
  'given': 1,
  'globe': 1,
  'health': 4,
  'help': 1,
  'human': 1,
  'identity_verified': False,
  'introduct': 1,
  'januari': 1,
  'journal': 2,
  'knowledg': 1,
  'learn': 1,
  'manag': 2,
  'medic': 2,
  'method': 1,
  'ministri': 1,
  'motion': 1,
  'new': 1,
  'nois': 1,
  'other': 1,
  'paper': 1,
  'pass': 1,
  'patient': 1,
  'payment_verified': False,
  'peripher': 1,
  'phone_verified': True,
  'polici': 1,
  'post-gradu': 1,
  'pp': 1,
  'precis': 1,
  'profession.i': 1,
  'profile_complete': True,
  'program': 1,
  'publish': 2,
  'rapport': 1,
  'research': 3,
  'retir': 2,
  'review': 1,
  'saudi': 1,
  'scienc': 1,
  'sever': 2,
  'strateg': 1,
  'student': 1,
  'top': 1,
  'topic': 1,
  'uk': 1,
  'us': 1,
  'way': 1,
  'windowsnt': 1,
  'woman': 1,
  'workbook': 2,
  'worker': 1,
  'write': 2,
  'writer': 1,
  'year': 1,
  'zealand': 1},
 242: {'4': 1,
  '5': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'adult': 1,
  'avail': 1,
  'biggest': 1,
  'budapest': 1,
  'children': 1,
  'co.': 1,
  'commun': 1,
  'concept': 1,
  'convey': 1,
  'custom': 1,
  'deposit_made': True,
  'document': 1,
  'email_verified': True,
  'english': 1,
  'esl': 1,
  'experi': 3,
  'facebook_connected': False,
  'foreign': 1,
  'hungari': 1,
  'hungarian': 2,
  'idea': 1,
  'identity_verified': False,
  'languag': 2,
  'manag': 1,
  'materi': 1,
  'motiv': 1,
  'nativ': 1,
  'necessari': 1,
  'offic': 1,
  'one': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'sampl': 1,
  'self': 1,
  'servic': 1,
  'skill': 1,
  'teach': 1,
  'trade': 1,
  'translat': 4,
  'work': 1,
  'year': 2},
 243: {'5+': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'a',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '\\xe2\\u20ac\\xa2': 2,
  'area': 1,
  'assur': 1,
  'base': 1,
  'compani': 1,
  'content': 1,
  'custom': 2,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'e-commerc': 1,
  'email_verified': True,
  'end': 2,
  'enterpris': 2,
  'experi': 1,
  'facebook_connected': True,
  'follow': 1,
  'identity_verified': False,
  'includ': 1,
  'java\\xe2\\u20ac\\xa2': 1,
  'learn': 1,
  'manag': 1,
  'management\\xe2\\u20ac\\xa2': 2,
  'microsoft': 4,
  'offer': 1,
  'offshor': 1,
  'open': 1,
  'payment_verified': False,
  'phone_verified': False,
  'platform': 1,
  'point': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 1,
  'qa': 1,
  'qualiti': 1,
  'rang': 2,
  'relationship': 1,
  'resourc': 1,
  'share': 1,
  'softwar': 3,
  'solut': 2,
  'solutions\\xe2\\u20ac\\xa2': 2,
  'sourc': 1,
  'system\\xe2\\u20ac\\xa2': 1,
  'technolog': 1,
  'testing\\xe2\\u20ac\\xa2': 1,
  'web': 1,
  'wide': 1,
  'year': 1},
 244: {'-1.': 1,
  '40': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'i',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'a.': 1,
  'cost': 1,
  'data': 1,
  'deliv': 1,
  'deposit_made': False,
  'desktop': 1,
  'email_verified': True,
  'energi': 1,
  'engin': 1,
  'engineer2': 1,
  'expertis': 1,
  'facebook_connected': False,
  'hii': 1,
  'identity_verified': False,
  'industri': 2,
  'manag': 1,
  'market': 1,
  'master': 1,
  'mcp': 1,
  'mechan': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'power': 1,
  'process': 1,
  'profile_complete': True,
  'qualiti': 1,
  'support': 3,
  'team': 2,
  'time': 1,
  'work': 2},
 245: {"'m": 1,
  '...': 1,
  '20': 1,
  'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'administr': 2,
  'cm': 1,
  'comput': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'internet': 1,
  'joomla': 1,
  'microsoft': 1,
  'name': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photographi': 1,
  'profile_complete': True,
  'research': 1,
  'skill': 1,
  'top': 1,
  'web': 1,
  'wordpress': 1,
  'year': 1},
 246: {"'m": 1,
  '18': 1,
  '8': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='5'>,
  'First': 'E',
  'Last': '0',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'compact': 1,
  'corpor': 1,
  'deposit_made': True,
  'design': 5,
  'disc': 1,
  'email_verified': True,
  'exper': 1,
  'experi': 2,
  'facebook_connected': False,
  'forward': 1,
  'freelanc': 1,
  'graphic': 1,
  'help': 1,
  'identity_verified': False,
  'imag': 1,
  'interact': 1,
  'logo': 1,
  'look': 1,
  'mora': 1,
  'need': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'put': 1,
  'rang': 1,
  'servic': 1,
  'sinc': 1,
  'web': 1,
  'wide': 1,
  'year': 1},
 247: {"'d": 1,
  "'ll": 2,
  "'re": 1,
  "'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'l',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'adob': 1,
  'autom': 1,
  'back': 1,
  'bring': 1,
  'busi': 4,
  'campaign': 1,
  'creation': 1,
  'css': 1,
  'custom': 1,
  'deposit_made': False,
  'design-': 1,
  'dive': 1,
  'email_verified': True,
  'end': 1,
  'eye': 1,
  'facebook_connected': False,
  'foundat': 1,
  'get': 1,
  'graphic': 1,
  'grow': 1,
  'hand': 1,
  'hear': 1,
  'help': 1,
  'html': 1,
  'identity_verified': False,
  'illustr': 1,
  'includ': 1,
  'indesign': 1,
  'land': 1,
  'limit': 1,
  'love': 1,
  'manag': 2,
  'market': 1,
  'media': 1,
  'membership': 1,
  'oper': 1,
  'page': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'place': 1,
  'plan': 1,
  'process': 2,
  'product': 1,
  'profile_complete': True,
  'review': 1,
  'scale': 1,
  'set': 3,
  'setup': 1,
  'site': 1,
  'skill': 1,
  'social': 1,
  'someth': 1,
  'special': 1,
  'standard': 1,
  'system': 1,
  'take': 1,
  'team': 1,
  'time': 1,
  'togeth': 1,
  'webinar': 1,
  'websit': 1,
  'work': 1,
  'world': 1},
 248: {'2.0': 1,
  '7': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'l',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'adob': 1,
  'ajax': 1,
  'also': 1,
  'area': 1,
  'build': 1,
  'busi': 1,
  'business.i': 1,
  'compani': 1,
  'compet': 1,
  'complet': 1,
  'core': 1,
  'css3': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'dhtml': 1,
  'dnn': 1,
  'dot': 1,
  'dream': 1,
  'email_verified': True,
  'end-end': 1,
  'experi': 1,
  'facebook_connected': True,
  'follow': 1,
  'good': 1,
  'ground': 1,
  'html5': 1,
  'identity_verified': False,
  'includ': 1,
  'jqueri': 1,
  'last': 1,
  'lie': 1,
  'manag': 1,
  'mysql': 1,
  'net': 1,
  'new': 1,
  'nuke': 1,
  'oop': 1,
  'opportun': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'rang': 1,
  'seek': 1,
  'site': 1,
  'small': 1,
  'softwar': 1,
  'sql': 1,
  'start': 1,
  'test': 1,
  'use': 1,
  'weaver': 1,
  'web': 1,
  'websit': 2,
  'wide': 1,
  'year': 1},
 249: {"'ll": 1,
  "'m": 1,
  "'s": 1,
  '1985.': 1,
  '2009.': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
  'First': 'e',
  'Last': '5',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'absolut': 1,
  'accur': 1,
  'ad': 1,
  'add': 1,
  'aim': 1,
  'alway': 1,
  'articl': 2,
  'aspect': 1,
  'assign': 2,
  'auckland': 1,
  'august': 1,
  'bachelor': 1,
  'blog': 1,
  'born': 1,
  'ca': 1,
  'color': 1,
  'confid': 1,
  'content': 2,
  'copi': 1,
  'copywrit': 1,
  'definit': 1,
  'degre': 1,
  'delight': 1,
  'deliv': 1,
  'deposit_made': True,
  'ebook': 1,
  'email_verified': True,
  'everi': 1,
  'experi': 1,
  'expertli': 1,
  'facebook_connected': False,
  'feel': 1,
  'fiji': 2,
  'freelanc': 1,
  'gener': 1,
  'give': 1,
  'great': 1,
  'hardwork': 1,
  'high': 2,
  'honest': 1,
  'identity_verified': True,
  'includ': 1,
  'interest': 1,
  'island': 1,
  'life': 1,
  'march': 1,
  'money': 1,
  'motiv': 1,
  "n't": 1,
  'new': 2,
  'newslett': 1,
  'occasion': 1,
  'passion': 1,
  'payment_verified': True,
  'phone_verified': True,
  'post': 1,
  'power': 1,
  'pride': 1,
  'produc': 1,
  'profile_complete': True,
  'project': 1,
  'pursu': 1,
  'qualiti': 1,
  'rather': 1,
  'read': 1,
  'requir': 1,
  'research': 1,
  'self': 1,
  'seo': 1,
  'sinc': 1,
  'someth': 3,
  'specialti': 1,
  'standard': 1,
  'structur': 1,
  'studi': 1,
  'subject': 1,
  'submit': 1,
  'take': 3,
  'technolog': 1,
  'tell': 1,
  'times.i': 1,
  'univers': 1,
  'wast': 1,
  'way': 1,
  'web': 1,
  'well': 1,
  'whatev': 1,
  'work': 3,
  'worth': 1,
  'write': 2,
  'written': 1,
  'zealand': 1},
 250: {'12': 1,
  '15': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
  'Digit': None,
  'First': 'B',
  'Last': 'i',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'account': 1,
  'comput': 1,
  'cpa': 1,
  'deposit_made': False,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'properti': 1,
  'softwar': 1,
  'year': 2},
 251: {"'m": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'Digit': None,
  'First': 'I',
  'Last': 'g',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'app': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'mobil': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'web': 1},
 252: {'4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'h',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'certifi': 1,
  'crm': 2,
  'deposit_made': False,
  'develop': 2,
  'dynam': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'ms': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'yr': 1},
 253: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'cm': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'host': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'seo': 1,
  'special': 1,
  'virtuemart': 1,
  'websit': 1,
  'work': 1},
 254: {"'d": 1,
  "'m": 1,
  '12': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'i',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abil': 2,
  'abl': 1,
  'accomplish': 2,
  'account': 1,
  'adapt': 1,
  'apt': 1,
  'back': 1,
  'background': 1,
  'best': 2,
  'brochur': 1,
  'budget': 2,
  'busi': 2,
  'class': 1,
  'client': 1,
  'commun': 1,
  'comput': 1,
  'conclus': 1,
  'conscienti': 1,
  'contact': 1,
  'convers': 1,
  'creativ': 1,
  'data': 2,
  'deadlin': 2,
  'deposit_made': False,
  'design-': 3,
  'detail': 1,
  'directli': 1,
  'document': 1,
  'dreamweaver-': 1,
  'effect': 1,
  'email_verified': True,
  'endeavor': 1,
  'enthusiasm': 1,
  'entry-': 1,
  'excel': 1,
  'expertis': 1,
  'extract': 1,
  'facebook_connected': True,
  'fast': 1,
  'feel': 1,
  'field': 1,
  'first': 1,
  'focus': 1,
  'free': 1,
  'freelanc': 1,
  'fuse': 1,
  'get': 1,
  'goal': 2,
  'googl': 1,
  'graphic': 1,
  'highli': 1,
  'hire': 1,
  'hour': 1,
  'html-': 1,
  'humor': 1,
  'identity_verified': False,
  'includ': 1,
  'internet': 1,
  'known': 1,
  'linkedin-': 1,
  'love': 1,
  'manag': 1,
  'meet': 1,
  'ms': 1,
  'multipl': 1,
  'object': 1,
  'organ': 2,
  'orient': 2,
  'payment_verified': True,
  'phone_verified': True,
  'photoshop': 1,
  'pleas': 1,
  'priorit': 1,
  'prioriti': 1,
  'processing-': 1,
  'profile_complete': True,
  'provid': 2,
  'question': 1,
  'research-': 1,
  'result': 1,
  'satisfact': 1,
  'scienc': 1,
  'search-': 1,
  'self': 1,
  'servic': 1,
  'set': 1,
  'skill': 2,
  'spreadsheet': 1,
  'starter': 1,
  'task': 1,
  'therefor': 1,
  'tight': 1,
  'time': 1,
  'time-': 1,
  'varieti': 1,
  'versatil': 1,
  'websit': 1,
  'websites-': 1,
  'within': 1,
  'work': 1},
 255: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'i',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'awar': 1,
  'busi': 2,
  'cheap': 1,
  'compani': 1,
  'demand': 1,
  'deposit_made': True,
  'develop': 1,
  'dynam': 1,
  'effect': 1,
  'effici': 1,
  'email_verified': True,
  'engin': 2,
  'facebook_connected': False,
  'give': 1,
  'good': 1,
  'high': 1,
  'identity_verified': False,
  'look': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'provid': 1,
  'rank': 1,
  'search': 2,
  'seo': 1,
  'solut': 3,
  'suitabl': 1,
  'therefor': 1,
  'web': 2,
  'well': 1},
 256: {'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'c': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'experienc': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'learn': 1,
  'machin': 1,
  'payment_verified': True,
  'phone_verified': False,
  'process': 1,
  'profile_complete': True,
  'python': 1},
 257: {"'m": 1,
  '10': 1,
  '110': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'p',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'adword': 1,
  'android': 4,
  'api': 1,
  'app': 4,
  'applic': 4,
  'applications-': 1,
  'backend': 1,
  'best': 1,
  'book': 1,
  'client': 1,
  'complet': 2,
  'content': 1,
  'creation': 1,
  'custom': 1,
  'deliveri': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 5,
  'development-': 3,
  'email': 1,
  'email_verified': True,
  'engin': 1,
  'engine-': 1,
  'extra': 1,
  'facebook_connected': True,
  'feel': 1,
  'free': 1,
  'give': 1,
  'googl': 1,
  'identity_verified': False,
  'import': 1,
  'infograph': 1,
  'inform': 1,
  'io': 2,
  'manag': 1,
  'marketing-': 3,
  'messag': 1,
  'mobil': 2,
  'optim': 1,
  'passion': 1,
  'payment_verified': True,
  'phone_verified': True,
  'port': 2,
  'portal': 1,
  'profile_complete': True,
  'promotion-': 1,
  'question': 1,
  'satisfact': 1,
  'search': 1,
  'send': 1,
  'seo': 1,
  'servic': 1,
  'share': 1,
  'softwar': 2,
  'solut': 2,
  'solution-': 1,
  'support.-': 1,
  'system-': 1,
  'test': 2,
  'us': 2,
  'web': 3,
  'work': 1},
 258: {"'m": 1,
  "'ve": 1,
  '30': 1,
  'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'c',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  '\\\\': 1,
  'awesom': 1,
  'cairo': 1,
  'career': 1,
  'craft': 1,
  'current': 1,
  'deposit_made': False,
  'egypt': 1,
  'email_verified': True,
  'enthusiast': 1,
  'facebook_connected': True,
  'hi': 1,
  'home': 1,
  'identity_verified': False,
  'influenc': 1,
  'live': 1,
  'mani': 1,
  'name': 1,
  'old': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'spend': 1,
  'technolog': 1,
  'thing': 1,
  'time': 1,
  'work': 2,
  'year': 1},
 259: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'm',
  'Last': '9',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='i'>,
  'also': 1,
  'asp.net': 1,
  'c': 1,
  'deposit_made': False,
  'done': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'like': 1,
  'microsoft': 1,
  'ms': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'server': 1,
  'skill': 1,
  'sql': 1,
  'ssi': 1,
  'ssr': 1,
  'technolog': 1},
 260: {"'m": 4,
  '1983': 1,
  '3': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': None,
  'First': 'D',
  'Last': 'l',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'account': 1,
  'algol': 1,
  'almost': 1,
  'applic': 2,
  'associ': 1,
  'better': 1,
  'c': 1,
  'citizen': 1,
  'class': 1,
  'client': 1,
  'commun': 1,
  'compani': 1,
  'convers': 1,
  'danish': 1,
  'delphi': 1,
  'deposit_made': False,
  'done': 1,
  'dotnetnuk': 1,
  'drupal': 1,
  'els': 1,
  'email_verified': True,
  'embed': 1,
  'everybodi': 1,
  'facebook_connected': False,
  'follow': 1,
  'forth': 1,
  'fortran': 1,
  'found': 1,
  'get': 2,
  'happi': 1,
  'hat': 1,
  'host': 2,
  'hous': 1,
  'identity_verified': False,
  'joomla': 1,
  'keep': 1,
  'kind': 2,
  'known': 1,
  'languag': 1,
  'like': 3,
  'live': 1,
  'magento': 1,
  'mani': 3,
  'method': 2,
  'microprocessor': 1,
  'more.i': 1,
  'much': 1,
  'network': 1,
  'ocommerc': 1,
  'one': 1,
  'pascal': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'program': 3,
  'programm': 1,
  'protocol': 1,
  'result': 2,
  'seo': 2,
  'setup': 1,
  'sinc': 1,
  'softwar': 2,
  'special': 1,
  'std': 1,
  'structur': 1,
  'surveil': 1,
  'tag': 1,
  'techniqu': 1,
  'text': 1,
  'thing': 1,
  'thorough': 1,
  'titl': 1,
  'top': 1,
  'use': 1,
  'way': 1,
  'white': 1,
  'wordpress': 1,
  'work': 6,
  'world': 1,
  'year': 1,
  'years.i': 1},
 261: {'2001': 1,
  '2005': 4,
  '2006': 2,
  '2008': 5,
  '2009': 2,
  '2010': 2,
  '65': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'v',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  '\\t': 13,
  '\\xe2\\u20ac\\u201c': 7,
  '\\xe2\\u20ac\\xa2\\tparticip': 1,
  '\\xe2\\u20ac\\xa2\\tprofici': 1,
  'activ': 1,
  'administr': 1,
  'advanc': 1,
  'also': 1,
  'appoint': 2,
  'appropri': 1,
  'approxim': 1,
  'arriv': 1,
  'assist': 1,
  'attend': 1,
  'attent': 1,
  'avail': 1,
  'barron': 2,
  'basi': 1,
  'busi': 2,
  'check': 1,
  'choir': 2,
  'class': 1,
  'client': 2,
  'club': 1,
  'code': 1,
  'colleg': 1,
  'collier': 2,
  'complet': 1,
  'comput': 1,
  'correct': 1,
  'cours': 1,
  'custom': 1,
  'customers\\xe2\\u20ac\\u2122': 1,
  'deadlin': 1,
  'degre': 1,
  'deliv': 2,
  'depart': 1,
  'deposit_made': False,
  'design': 1,
  'diploma': 1,
  'director': 1,
  'dish': 1,
  'drama': 1,
  'effici': 1,
  'email_verified': True,
  'ensur': 2,
  'equal': 1,
  'everi': 1,
  'excel': 2,
  'experi': 1,
  'facebook_connected': False,
  'file': 1,
  'find': 1,
  'first': 1,
  'fl': 3,
  'fraud': 1,
  'french': 1,
  'fresh': 1,
  'friendli': 1,
  'furnish': 1,
  'get': 1,
  'govern': 1,
  'gpa': 1,
  'graphic': 1,
  'guest': 2,
  'head': 1,
  'hewitt': 1,
  'high': 3,
  'highest': 1,
  'hollywood': 1,
  'honor': 2,
  'hotlin': 1,
  'hour': 1,
  'html': 1,
  'human': 1,
  'i.e': 1,
  'identity_verified': False,
  'inform': 3,
  'innov': 1,
  'input': 1,
  'inspect': 1,
  'involv': 1,
  'italian': 1,
  'jan.': 4,
  'job': 1,
  'jrotc': 2,
  'juli': 1,
  'leader': 3,
  'leadership': 1,
  'letter': 1,
  'list': 2,
  'long': 2,
  'maintain': 1,
  'manag': 1,
  'march': 1,
  'may': 1,
  'member': 1,
  'met': 2,
  'miami': 2,
  'microsoft': 1,
  'multi-task': 1,
  'napl': 2,
  'new': 2,
  'nile': 1,
  'nov.': 4,
  'ny': 1,
  'oh': 5,
  'oper': 1,
  'order': 2,
  'page': 1,
  'payment_verified': False,
  'payrol': 1,
  'perform': 1,
  'person': 1,
  'phone': 1,
  'phone_verified': False,
  'pleas': 1,
  'posit': 1,
  'powerpoint': 1,
  'prepar': 1,
  'present': 1,
  'pressur': 1,
  'product': 1,
  'profile_complete': True,
  'program': 1,
  'provid': 1,
  'rank': 1,
  'receiv': 4,
  'refer': 1,
  'reform': 1,
  'refund': 1,
  'regular': 1,
  'report': 1,
  'request': 1,
  'requir': 1,
  'resourc': 1,
  'restaur': 1,
  'return': 2,
  'rigid': 1,
  'sale': 1,
  'satisfact': 1,
  'satisfi': 1,
  'schedul': 1,
  'school': 2,
  'second': 1,
  'section': 2,
  'sept.': 1,
  'set': 1,
  'shift': 1,
  'skill': 2,
  'spanish': 1,
  'special': 1,
  'succeed': 1,
  'tabl': 2,
  'take': 1,
  'task': 1,
  'tax': 3,
  'theater': 1,
  'time': 1,
  'toward': 1,
  'union': 1,
  'updat': 1,
  'upon': 1,
  'use': 2,
  'variou': 3,
  'varsiti': 2,
  'web': 1,
  'weekli': 1,
  'west': 1,
  'without': 1,
  'word': 1,
  'work': 3,
  'would': 1,
  'wpm': 1,
  'year': 2,
  'york': 1},
 262: {"'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'm',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'also': 1,
  'alway': 1,
  'applic': 1,
  'belgrad': 1,
  'believ': 1,
  'compani': 1,
  'consid': 1,
  'couchdb': 1,
  'data': 1,
  'deposit_made': False,
  'develop': 1,
  'distribut': 1,
  'email_verified': True,
  'emerg': 1,
  'especi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'javascript': 1,
  'librari': 1,
  'like': 1,
  'locat': 1,
  'mani': 1,
  'model': 1,
  'nosql': 1,
  'one': 1,
  'page': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'prove': 1,
  'recommend': 2,
  'relat': 1,
  'reliabl': 1,
  'run': 1,
  'sens': 1,
  'serbia': 1,
  'site': 1,
  'softwar': 1,
  'solut': 2,
  'special': 1,
  'store': 1,
  'system': 1,
  'technolog': 1,
  'today': 1,
  'tradit': 1,
  'valu': 1,
  'web': 1,
  'world': 1},
 263: {"'m": 1,
  '2009': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
  'Digit': None,
  'First': 'R',
  'Last': 'K',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'android': 1,
  'app': 1,
  'deposit_made': True,
  'email_verified': True,
  'english': 1,
  'experienc': 1,
  'facebook_connected': True,
  'freelanc': 1,
  'game': 1,
  'german': 1,
  'good': 1,
  'html': 1,
  'identity_verified': False,
  'inform': 1,
  'io': 1,
  'knowledg': 1,
  'languag': 1,
  'local': 1,
  'mobil': 1,
  'nativ': 1,
  'payment_verified': False,
  'perform': 1,
  'phone': 1,
  'phone_verified': True,
  'php': 1,
  'plain': 1,
  'platforms.i': 1,
  'portugues': 2,
  'profile_complete': True,
  'relat': 1,
  'sinc': 1,
  'special': 1,
  'support': 1,
  'text': 1,
  'translat': 3,
  'visit': 1,
  'websit': 1,
  'window': 1},
 264: {"''": 1,
  '12': 1,
  '8': 1,
  '800': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
  'First': 'v',
  'Last': 'y',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '``': 1,
  'across': 1,
  'adult': 1,
  'alway': 2,
  'articles-': 1,
  'audienc': 1,
  'blog': 1,
  'break': 1,
  'busi': 2,
  'captiv': 1,
  'compat': 1,
  'content': 3,
  'content-': 4,
  'deliv': 3,
  'deposit_made': True,
  'descriptions-': 1,
  'develop': 1,
  'easi': 1,
  'effort': 1,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'good': 1,
  'great': 1,
  'identity_verified': True,
  'internet': 1,
  'keyword': 2,
  'make': 1,
  'market': 2,
  'media': 1,
  "n't": 1,
  'need': 1,
  'nich': 1,
  'offer': 1,
  'onlin': 2,
  'payment_verified': False,
  'phone_verified': True,
  'posts-': 2,
  'press': 1,
  'product': 1,
  'profile_complete': True,
  'project': 1,
  'punctual': 1,
  'read': 1,
  'releas': 1,
  'requir': 1,
  'research': 1,
  'sale': 2,
  'seo': 1,
  'services-': 1,
  'social': 1,
  'success': 1,
  'uniqu': 1,
  'web': 1,
  'write': 1,
  'year': 2},
 265: {"'ll": 1,
  "'s": 1,
  '3d': 2,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'achiev': 1,
  'architectur': 1,
  'bottom': 1,
  'brand': 2,
  'bring': 1,
  'budgetari': 1,
  'build': 1,
  'case': 1,
  'client': 1,
  'compani': 1,
  'concept': 1,
  'constraint': 1,
  'continu': 1,
  'creativ': 1,
  'deposit_made': False,
  'design': 4,
  'develop': 1,
  'display': 1,
  'dynam': 1,
  'email_verified': True,
  'enjoy': 1,
  'event': 2,
  'exhibit': 1,
  'experi': 1,
  'explain': 1,
  'exterior': 1,
  'facebook_connected': True,
  'give': 1,
  'graphic': 1,
  'guidelin': 1,
  'hello': 1,
  'hope': 2,
  'idea': 1,
  'identity_verified': False,
  'includ': 1,
  'india': 1,
  'interior': 1,
  'intern': 1,
  'jargon': 1,
  'job': 1,
  'kiosk': 1,
  'let': 1,
  'limit': 1,
  'line': 1,
  'offer': 1,
  'order': 1,
  'payment_verified': False,
  'phone_verified': False,
  'posit': 1,
  'profile_complete': True,
  'regard': 1,
  'respons': 1,
  'retail': 1,
  'seeker': 1,
  'servic': 1,
  'space': 2,
  'stage': 1,
  'stall': 1,
  'success': 1,
  'talk': 1,
  'trust': 1,
  'venu': 2,
  'vimal': 1,
  'visual': 2,
  'warm': 1,
  'work': 3,
  'year': 1},
 266: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': None,
  'First': 'M',
  'Last': 'K',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'done': 1,
  'email_verified': True,
  'extra': 1,
  'facebook_connected': False,
  'get': 1,
  'go': 1,
  'hardwork': 1,
  'identity_verified': False,
  'job': 1,
  'mile': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'will': 1},
 267: {'05': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'd',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'content': 1,
  'deposit_made': False,
  'electr': 1,
  'email_verified': True,
  'engin': 1,
  'experi': 1,
  'facebook_connected': False,
  'good': 1,
  'identity_verified': False,
  'ms': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'skill': 1,
  'telecommun': 1,
  'year': 1},
 268: {'--': 3,
  '.net': 2,
  '/sql': 3,
  '100': 1,
  '10th': 1,
  '11': 1,
  '12th': 2,
  '13': 1,
  '14': 1,
  '15th': 1,
  '18th': 1,
  '1995': 1,
  '1997': 1,
  '1998': 3,
  '1st': 2,
  '2000': 2,
  '2001': 2,
  '2002': 2,
  '2003': 2,
  '2004': 4,
  '2005': 3,
  '2005.': 1,
  '2006': 4,
  '2007': 3,
  '2008': 3,
  '20th': 3,
  '21': 1,
  '21st': 1,
  '24th': 2,
  '25th': 1,
  '27': 1,
  '27th': 1,
  '2nd': 1,
  '3': 2,
  '30th': 5,
  '31st': 4,
  '3rd': 2,
  '5': 3,
  '50': 1,
  '5th': 1,
  '6': 4,
  '6th': 1,
  '7': 2,
  '7th': 1,
  '9': 3,
  '9001:2000': 4,
  'Caps': <_sre.SRE_Match object; span=(8, 9), match='I'>,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='0'>,
  'First': 's',
  'Last': 'a',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'abil': 1,
  'achiev': 1,
  'acquaint': 1,
  'activ': 2,
  'analysi': 3,
  'applic': 2,
  'apr': 2,
  'april': 2,
  'asp': 1,
  'asp.net': 1,
  'assur': 1,
  'australia': 1,
  'australian': 2,
  'backup': 1,
  'base': 1,
  'basic': 1,
  'big': 1,
  'british': 2,
  'busi': 2,
  'c': 2,
  'career': 2,
  'certif': 1,
  'client': 5,
  'client-serv': 2,
  'code': 1,
  'compani': 6,
  'complet': 2,
  'configur': 1,
  'consult': 4,
  'coordin': 1,
  'craft': 1,
  'cross-funct': 1,
  'cyber': 1,
  'cycl': 2,
  'czech': 2,
  'data': 1,
  'dec': 2,
  'decemb': 1,
  'decent': 1,
  'dedic': 1,
  'demonstr': 1,
  'deposit_made': False,
  'design': 5,
  'develop': 7,
  'differ': 1,
  'divers': 2,
  'dutch': 1,
  'email_verified': True,
  'energet': 1,
  'entir': 1,
  'etc': 2,
  'except': 1,
  'experi': 5,
  'experienc': 1,
  'export': 1,
  'exposur': 3,
  'facebook_connected': False,
  'fairli': 1,
  'fast': 1,
  'februari': 1,
  'focu': 1,
  'follow-through': 1,
  'formerli': 2,
  'franc': 1,
  'full': 1,
  'gamma': 1,
  'gener': 1,
  'germani': 1,
  'global': 1,
  'group': 1,
  'grow': 2,
  'handl': 1,
  'hardcor': 1,
  'hardwar': 1,
  'highli': 1,
  'hospit': 1,
  'hous': 3,
  'identity_verified': False,
  'implement': 2,
  'includ': 1,
  'india': 4,
  'inform': 1,
  'infosystem': 1,
  'intrasoft': 1,
  'involv': 2,
  'iso': 4,
  'jan': 2,
  'januari': 1,
  'javascript': 1,
  'jul': 1,
  'jun': 1,
  'june': 1,
  'kanika': 2,
  'knowledg': 2,
  'known': 1,
  'languag': 1,
  'larg': 1,
  'lead': 2,
  'leader': 2,
  'leader/manag': 3,
  'level': 2,
  'life': 1,
  'limit': 10,
  'logic': 1,
  'ltd.': 9,
  'major': 1,
  'manag': 21,
  'mar': 1,
  'march': 2,
  'matrix': 1,
  'may': 4,
  'meet': 1,
  'model': 1,
  'month': 10,
  'motiv': 1,
  'multin': 1,
  'multipl': 3,
  'n': 1,
  'need': 1,
  'netherland': 1,
  'next': 1,
  'nov': 2,
  'oct': 2,
  'octob': 2,
  'organ': 2,
  'oversea': 1,
  'p': 1,
  'payment_verified': False,
  'phone_verified': False,
  'physic': 1,
  'platform': 1,
  'possess': 1,
  'privat': 4,
  'process': 1,
  'profession': 2,
  'profile_complete': True,
  'program': 1,
  'programm': 3,
  'project': 24,
  'proven': 1,
  'pti': 2,
  'pvt': 7,
  'qualiti': 1,
  'rdbm': 1,
  'record': 1,
  'relat': 1,
  'republ': 1,
  'schedul': 1,
  'sei': 1,
  'senior': 3,
  'sep': 1,
  'sept': 2,
  'server': 5,
  'servic': 1,
  'sever': 1,
  'size': 1,
  'skill': 1,
  'small': 1,
  'softwar': 11,
  'solut': 5,
  'spider': 1,
  'sql': 2,
  'success': 1,
  'summari': 1,
  'support': 1,
  'system': 7,
  'team': 2,
  'technic': 1,
  'techniqu': 1,
  'technolog': 2,
  'throughout': 1,
  'time': 1,
  'tool': 2,
  'track': 1,
  'uk': 2,
  'understand': 1,
  'us': 1,
  'usa': 1,
  'use': 1,
  'variou': 2,
  'vb.net': 1,
  'vision': 1,
  'visual': 1,
  'web': 2,
  'well': 2,
  'work': 18,
  'year': 7},
 269: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'Digit': None,
  'First': 'E',
  'Last': 't',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'look': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pleas': 1,
  'profile_complete': True,
  'visit': 1,
  'websit': 1,
  'work': 1},
 270: {'1-year': 2,
  '2': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
  'First': 'N',
  'Last': '5',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'administr': 1,
  'algebra': 1,
  'bachelor': 1,
  'busi': 2,
  'compani': 1,
  'corel': 1,
  'deposit_made': False,
  'econom': 1,
  'email_verified': True,
  'english': 2,
  'entrepreneurship': 1,
  'experi': 1,
  'experinc': 4,
  'facebook_connected': False,
  'field': 1,
  'flash': 1,
  'geometri': 1,
  'gmat': 2,
  'gre': 1,
  'home': 1,
  'hr': 1,
  'html': 1,
  'identity_verified': False,
  'kip': 1,
  'lahor': 2,
  'level': 1,
  'manag': 2,
  'market': 2,
  'math': 1,
  'mathemat': 1,
  'mx': 1,
  'part': 2,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'privat': 1,
  'process': 1,
  'profile_complete': True,
  'qualif': 1,
  'relat': 1,
  'sat': 1,
  'scienc': 1,
  'strategi': 1,
  'teach': 2,
  'time': 2,
  'tutor': 1,
  'word': 1,
  'year': 1},
 271: {'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'x',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'afford': 1,
  'bid': 1,
  'ca': 1,
  'care': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'everi': 1,
  'facebook_connected': False,
  'feel': 1,
  'free': 1,
  'high': 1,
  'identity_verified': False,
  'individu': 1,
  'invit': 1,
  'load': 1,
  'mean': 1,
  "n't": 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'place': 1,
  'precis': 1,
  'profile_complete': True,
  'project': 2},
 272: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
  'Digit': None,
  'First': 'T',
  'Last': 'h',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'art': 1,
  'assist': 1,
  'complet': 1,
  'consider': 1,
  'contact': 1,
  'crimin': 1,
  'current': 1,
  'degre': 1,
  'deposit_made': False,
  'divers': 1,
  'editori': 1,
  'eleg': 1,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'facebook_connected': True,
  'flexibl': 1,
  'freelanc': 2,
  'happi': 1,
  'hope': 1,
  'human': 1,
  'identity_verified': False,
  'incom': 1,
  'journalist': 1,
  'law': 2,
  'lot': 1,
  'media': 1,
  'payment_verified': False,
  'phd': 1,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'qualifi': 1,
  'rang': 1,
  'reliabl': 1,
  'research': 1,
  'right': 1,
  'skill': 1,
  'spare': 1,
  'style': 1,
  'suit': 1,
  'supplement': 1,
  'tailor': 1,
  'time': 1,
  'undergradu': 1,
  'undertak': 1,
  'uniqu': 1,
  'work': 1,
  'write': 3},
 273: {"'s": 1,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'y',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'accept': 1,
  'cart': 1,
  'checkout': 1,
  'cm': 1,
  'commun': 1,
  'connect': 1,
  'content': 1,
  'convert': 1,
  'databas': 2,
  'deploy': 1,
  'deposit_made': True,
  'develop': 3,
  'developmenti': 2,
  'email_verified': True,
  'etc': 1,
  'experi': 3,
  'experienc': 1,
  'facebook_connected': True,
  'field': 1,
  'function': 1,
  'hand-on': 1,
  'html': 1,
  'identity_verified': True,
  'includ': 2,
  'inventori': 1,
  'kind': 1,
  'manag': 4,
  'mani': 1,
  'modul': 1,
  'oop': 1,
  'payment_verified': True,
  'paypal': 1,
  'phone_verified': True,
  'php': 4,
  'plugin': 2,
  'prefer': 1,
  'profile_complete': True,
  'request': 1,
  'server': 1,
  'shop': 1,
  'soap': 1,
  'system': 4,
  'theme': 2,
  'user': 1,
  'vast': 1,
  'web': 1,
  'wide': 1,
  'wordpress': 3,
  'work': 2,
  'year': 1},
 274: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
  'Digit': None,
  'First': 'R',
  'Last': 'a',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='u'>,
  'applic': 1,
  'creat': 1,
  'deposit_made': True,
  'dynam': 1,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'multimedia': 1,
  'payment_verified': False,
  'phone_verified': False,
  'present': 1,
  'profile_complete': True,
  'web': 1,
  'websit': 1},
 275: {'18': 1,
  '2': 1,
  '3d': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='Y'>,
  'Digit': None,
  'First': 'Y',
  'Last': 'i',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'better': 1,
  'blender': 1,
  'degre': 1,
  'deposit_made': True,
  'email_verified': True,
  'english': 1,
  'etc': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'faster': 1,
  'game': 1,
  'identity_verified': False,
  'improv': 1,
  'leisur': 1,
  'less': 1,
  'life': 1,
  'like': 1,
  'make': 2,
  'master': 1,
  'minimum': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'program': 1,
  'programmer/analyst': 1,
  'russian.i': 1,
  'scienc': 1,
  'second': 1,
  'simpl': 1,
  'softwar': 1,
  'task': 1,
  'uniti': 1,
  'vision': 1,
  'year': 1},
 276: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
  'Digit': None,
  'First': 'N',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'articl': 1,
  'creativ': 1,
  'data': 1,
  'definit': 1,
  'deposit_made': False,
  'dilig': 1,
  'effici': 1,
  'email_verified': True,
  'english': 1,
  'entri': 1,
  'excel': 1,
  'excel.i': 1,
  'facebook_connected': False,
  'fast': 1,
  'identity_verified': False,
  'includ': 1,
  'payment_verified': False,
  'person': 2,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'proofread': 1,
  'read': 1,
  'short': 1,
  'skill': 1,
  'type': 1,
  'work': 1,
  'write': 2},
 277: {'7+': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(3, 4), match='7'>,
  'First': 'r',
  'Last': '7',
  'Numchar': 7,
  'Vowel': None,
  'app': 1,
  'assur': 1,
  'complet': 1,
  'deposit_made': False,
  'design': 3,
  'develop': 3,
  'dhtml': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'forward': 1,
  'html': 1,
  'html5': 1,
  'identity_verified': False,
  'includ': 1,
  'interest': 1,
  'look': 1,
  'mobil': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'project': 2,
  'rang': 1,
  'site': 1,
  'togeth': 1,
  'use': 1,
  'web': 1,
  'websit': 1,
  'wide': 1,
  'work': 1,
  'xhtml': 1,
  'xml': 1},
 278: {'31': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
  'First': 'z',
  'Last': '1',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'abdul': 1,
  'achiev': 1,
  'attitud': 1,
  'big': 1,
  'boy': 1,
  'career': 1,
  'competit': 1,
  'cut': 1,
  'day': 1,
  'depart': 1,
  'deposit_made': False,
  'develop': 1,
  'dynam': 1,
  'email_verified': True,
  'energet': 1,
  'excel': 2,
  'except': 1,
  'experi': 1,
  'facebook_connected': False,
  'forward': 1,
  'go': 1,
  'habit': 1,
  'identity_verified': False,
  'inc.': 1,
  'industri': 1,
  'keen': 1,
  'limit': 1,
  'littl': 1,
  'look': 1,
  'matter': 1,
  'offic': 1,
  'pakistan': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'safeti': 1,
  'thing': 1,
  'wast': 1,
  'work': 3,
  'year': 1,
  'young': 1,
  'zohaib': 1},
 279: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'y',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'accentur': 2,
  'accord': 1,
  'also': 1,
  'analyst': 2,
  'anticip': 1,
  'appli': 1,
  'assess': 1,
  'assist': 1,
  'background': 1,
  'best': 1,
  'busi': 1,
  'capabl': 1,
  'career': 1,
  'client': 2,
  'coach': 1,
  'committe': 1,
  'consist': 1,
  'current': 1,
  'cycl': 1,
  'daili': 1,
  'deliv': 1,
  'deposit_made': False,
  'develop': 1,
  'duti': 1,
  'email_verified': True,
  'empow': 1,
  'engin': 1,
  'enrol': 1,
  'ensur': 1,
  'facebook_connected': False,
  'follow': 1,
  'function': 1,
  'go': 1,
  'goal': 1,
  'highli': 1,
  'identity_verified': False,
  'individu': 1,
  'lead': 2,
  'life': 1,
  'ltd.': 1,
  'mainli': 1,
  'manger': 1,
  'mauritiu': 1,
  'measur': 1,
  'member': 1,
  'monitor': 1,
  'moreov': 1,
  'motiv': 1,
  'mysql': 1,
  'offshor': 2,
  'oper': 3,
  'oracl': 1,
  'payment_verified': False,
  'peopl': 1,
  'peoplesoft': 1,
  'perform': 1,
  'phone_verified': False,
  'php': 1,
  'pl/sql': 1,
  'plan': 2,
  'prioriti': 1,
  'profile_complete': True,
  'program': 1,
  'progress': 1,
  'recognis': 1,
  'regular': 1,
  'report': 1,
  'respons': 1,
  'risk': 1,
  'send': 1,
  'senior': 1,
  'servic': 1,
  'smoothli': 1,
  'softwar': 1,
  'solut': 1,
  'system': 1,
  'task': 1,
  'team': 3,
  'team\\xe2\\u20ac\\u2122': 1,
  'weekli': 1,
  'work': 1,
  'yearli': 1},
 280: {'20': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'assist': 1,
  'b.a': 1,
  'chair': 1,
  'countless': 1,
  'depart': 1,
  'deposit_made': True,
  'educ': 2,
  'email_verified': True,
  'english': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'm.a': 1,
  'payment_verified': False,
  'phone_verified': False,
  'princip': 1,
  'profile_complete': True,
  'report': 1,
  'school': 1,
  'secondari': 2,
  'teacher': 1,
  'written': 1,
  'year': 1},
 281: {'--': 4,
  '6': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': None,
  'First': 'P',
  'Last': 'm',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'applic': 1,
  'avail': 1,
  'award': 1,
  'awesom': 1,
  'cakephp': 1,
  'codeignit': 1,
  'comput': 1,
  'css': 1,
  'custom': 1,
  'deposit_made': False,
  'development.w': 1,
  'drupal': 1,
  'email': 1,
  'email_verified': True,
  'engin': 1,
  'etc': 1,
  'experi': 1,
  'experience.i': 1,
  'expert': 1,
  'facebook_connected': False,
  'framework': 1,
  'freelanc': 1,
  'goal': 1,
  'gtalk': 1,
  'html': 1,
  'identity_verified': False,
  'javascript': 1,
  'joomla': 1,
  'jqueri': 1,
  'know': 1,
  'magento': 1,
  'main': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pleas': 1,
  'profil': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 1,
  'qualiti': 1,
  'read': 1,
  'scienc': 1,
  'servic': 1,
  'skype': 1,
  'via': 1,
  'visit': 1,
  'web': 1,
  'wordpress': 1,
  'yahoo': 1,
  'year': 1,
  'zend': 1},
 282: {'.net': 1,
  '5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 'y',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'applic': 1,
  'bug': 1,
  'case': 1,
  'deposit_made': False,
  'develop': 1,
  'director': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'kind': 1,
  'manag': 1,
  'manti': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'plan': 1,
  'profile_complete': True,
  'redmin': 1,
  'report': 1,
  'softwar': 1,
  'test': 4,
  'tool': 2,
  'web': 1,
  'year': 1},
 283: {"'s": 1,
  '10': 1,
  '3d': 2,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'b',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'architectur': 1,
  'competit': 1,
  'cost': 1,
  'deposit_made': False,
  'design': 2,
  'easi': 1,
  'effect': 1,
  'email_verified': True,
  'experi': 1,
  'exterior': 1,
  'facebook_connected': False,
  'fast': 1,
  'field': 1,
  'identity_verified': False,
  'industri': 1,
  'interior': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'provid': 1,
  'quick': 1,
  'render': 1,
  'respons': 1,
  'sever': 1,
  'turnaround': 1,
  'work': 1,
  'year': 1},
 284: {'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'k',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'although': 1,
  'art': 1,
  'ba': 1,
  'bfa': 1,
  'busi': 1,
  'colleg': 1,
  'creat': 1,
  'deposit_made': False,
  'design': 3,
  'develop': 1,
  'diego': 1,
  'draw': 1,
  'either': 1,
  'email_verified': True,
  'facebook_connected': False,
  'fashion': 2,
  'favorit': 1,
  'fiction': 1,
  'human': 1,
  'identity_verified': False,
  'logo': 1,
  'love': 1,
  'opinion': 1,
  'other': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'review': 1,
  'san': 1,
  'sketch': 1,
  'thing': 1,
  'uc': 1,
  'write': 1},
 285: {"'m": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'L',
  'Last': '4',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'audio': 1,
  'come': 1,
  'cost-effect': 1,
  'deposit_made': False,
  'detail': 1,
  'ear': 1,
  'edit': 1,
  'email': 1,
  'email_verified': True,
  'facebook_connected': True,
  'file': 1,
  'first': 1,
  'hand': 1,
  'handl': 1,
  'hour': 1,
  'identity_verified': False,
  'mind': 1,
  'offer': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'qualiti': 2,
  'sacrif': 1,
  'thing': 1,
  'time': 1,
  'transcrib': 1,
  'transcript': 1,
  'two': 1,
  'valu': 1,
  'whenev': 1,
  'without': 1,
  'work': 1},
 286: {"'d": 1,
  "'re": 3,
  "'ve": 3,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='4'>,
  'First': 'k',
  'Last': '5',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'access': 1,
  'allow': 1,
  'also': 2,
  'assist': 1,
  'best': 1,
  'blog': 1,
  'bunch': 1,
  'class': 1,
  'client': 1,
  'clients.w': 1,
  'come': 1,
  'compon': 1,
  'content': 3,
  'creat': 1,
  'custom': 1,
  'day': 2,
  'deploy': 1,
  'deposit_made': False,
  'design': 2,
  'develop': 1,
  'drupal': 1,
  'dynam': 1,
  'e-commerc': 3,
  'edit': 1,
  'email_verified': True,
  'expert': 2,
  'extend': 1,
  'facebook_connected': False,
  'flexibl': 2,
  'fort': 1,
  'glad': 1,
  'good': 1,
  'got': 1,
  'identity_verified': False,
  'joomla': 2,
  'like': 1,
  'list': 1,
  'lm': 1,
  'magento': 1,
  'manag': 2,
  'need': 2,
  'ocommerc': 1,
  'open': 1,
  'opensourc': 1,
  'part': 1,
  'payment_verified': False,
  'phone_verified': False,
  'platform': 2,
  'power': 1,
  'profile_complete': True,
  'program': 1,
  'scalabl': 1,
  'servic': 1,
  'shini': 1,
  'skin': 1,
  'sourc': 1,
  'style': 1,
  'system': 1,
  'theme': 1,
  'umbraco': 1,
  'web': 2,
  'websit': 3,
  'without': 1,
  'wordpress': 2,
  'work': 1,
  'world': 1},
 287: {"'ve": 1,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 'r',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'add': 1,
  'agenc': 1,
  'alway': 1,
  'background': 1,
  'best': 1,
  'build': 1,
  'care': 1,
  'client': 2,
  'close': 1,
  'complex': 1,
  'deadlin': 1,
  'deposit_made': True,
  'develop': 5,
  'digit': 1,
  'email_verified': True,
  'enabl': 1,
  'enhanc': 1,
  'everi': 2,
  'experi': 1,
  'expertis': 1,
  'extern': 1,
  'facebook_connected': False,
  'focu': 1,
  'front-end': 1,
  'ground': 1,
  'guarante': 1,
  'handl': 1,
  'identity_verified': False,
  'keep': 1,
  'knowledg': 1,
  'mainli': 1,
  'mani': 1,
  'meet': 1,
  'passion': 1,
  'past': 1,
  'payment_verified': True,
  'phone_verified': True,
  'presenc': 1,
  'profile_complete': True,
  'project': 2,
  'qualiti': 1,
  'relationship': 1,
  'sever': 1,
  'site': 1,
  'strong': 1,
  'supplier': 1,
  'take': 1,
  'tight': 1,
  'time': 1,
  'understand': 1,
  'valu': 1,
  'websit': 4,
  'work': 4,
  'year': 1},
 288: {'6': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
  'Digit': None,
  'First': 'O',
  'Last': 'm',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>,
  'abl': 1,
  'analysi': 1,
  'cycl': 1,
  'databas': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 5,
  'email_verified': True,
  'enjoy': 1,
  'experi': 1,
  'facebook_connected': False,
  'familiar': 1,
  'full': 1,
  'identity_verified': False,
  'implement': 1,
  'integr': 1,
  'learn': 1,
  'new': 1,
  'payment_verified': False,
  'phone_verified': False,
  'product': 1,
  'profile_complete': True,
  'singl': 1,
  'softwar': 2,
  'system': 1,
  'team': 1,
  'thing': 1,
  'tri': 1,
  'web': 1,
  'work': 1,
  'year': 1},
 289: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 's',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'deposit_made': False,
  'develop': 1,
  'drupal': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'framework': 1,
  'great': 1,
  'identity_verified': False,
  'joomla': 1,
  'like': 1,
  'mysql': 1,
  'numer': 1,
  'opencart': 1,
  'opensourc': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'popular': 1,
  'profile_complete': True,
  'use': 1,
  'websit': 1,
  'wordpress': 2,
  'work': 1},
 290: {'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'g',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'abl': 1,
  'advantag': 1,
  'asid': 1,
  'busi': 1,
  'chines': 1,
  'compani': 1,
  'current': 1,
  'definit': 1,
  'deposit_made': False,
  'email_verified': True,
  'english': 2,
  'ethic': 1,
  'facebook_connected': True,
  'good': 1,
  'hard': 1,
  'hope': 1,
  'identity_verified': False,
  'japanes': 1,
  'kill': 1,
  'know': 1,
  'korean': 1,
  'languag': 3,
  'like': 1,
  'long': 1,
  'minim': 1,
  'nation': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profici': 1,
  'profile_complete': True,
  'relationship': 1,
  'supervis': 1,
  'take': 1,
  'term': 1,
  'train': 1,
  'trainer': 1,
  'trust': 1,
  'valu': 1,
  'without': 1,
  'work': 4,
  'would': 1},
 291: {'2d': 1,
  '3': 1,
  '5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'analysi': 1,
  'android': 1,
  'appli': 1,
  'applic': 1,
  'auto': 3,
  'base': 1,
  'build': 1,
  'captcha': 1,
  'client': 2,
  'command': 2,
  'core': 2,
  'crawl': 1,
  'data': 2,
  'deposit_made': True,
  'design': 1,
  'desktop': 1,
  'eclips': 1,
  'email_verified': True,
  'engin': 1,
  'experi': 1,
  'facebook_connected': True,
  'fake': 1,
  'game': 3,
  'hibern': 1,
  'http': 1,
  'identity_verified': False,
  'io': 1,
  'ip': 1,
  'java': 5,
  'languag': 3,
  'libgdx': 1,
  'logic': 1,
  'member': 2,
  'mssql': 1,
  'multi': 2,
  'multithread': 1,
  'mysql': 2,
  'payment_verified': False,
  'phone_verified': True,
  'platform': 1,
  'poker': 1,
  'posit': 2,
  'process': 1,
  'profile_complete': True,
  'project': 6,
  'proxi': 1,
  'receiv': 1,
  'run': 1,
  'send': 1,
  'server': 3,
  'smartfox': 1,
  'strut': 1,
  'tcp': 1,
  'udp': 1,
  'ui': 1,
  'use': 1,
  'user': 1,
  'web': 1,
  'websit': 1,
  'written': 1},
 292: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'j',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'hp': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'selenium': 1,
  'test': 1,
  'web': 1},
 293: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'e',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'blog': 1,
  'check': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'profile_complete': True},
 294: {'8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'analys': 1,
  'autocad': 1,
  'corpor': 1,
  'data': 1,
  'demand': 1,
  'deposit_made': False,
  'design-': 1,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'expertise-': 1,
  'facebook_connected': False,
  'follow': 1,
  'formula': 1,
  'identity_verified': False,
  'layout': 1,
  'payment_verified': True,
  'phone_verified': True,
  'plan': 1,
  'profile_complete': True,
  'sourc': 1,
  'year': 1},
 295: {"'ve": 1,
  'Caps': None,
  'Digit': None,
  'First': 'u',
  'Last': 'g',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
  'administration-': 1,
  'analysi': 1,
  'automation-': 1,
  'busi': 2,
  'chang': 1,
  'client': 1,
  'compani': 1,
  'corner': 1,
  'corpor': 1,
  'creat': 1,
  'crm': 1,
  'current': 1,
  'databas': 1,
  'decad': 1,
  'deposit_made': False,
  'design': 4,
  'develop': 3,
  'development-': 1,
  'ecommerc': 1,
  'educ': 1,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'focus': 1,
  'global': 1,
  'goal': 1,
  'help': 1,
  'home': 1,
  'ident': 1,
  'identity_verified': False,
  'industri': 2,
  'institut': 1,
  'interfac': 1,
  'intern': 1,
  'internet': 1,
  'last': 1,
  'linux': 1,
  'management-': 1,
  'matter': 1,
  'memor': 1,
  'network': 1,
  'onlin': 1,
  'optim': 2,
  'optimization-': 1,
  'organ': 1,
  'past': 1,
  'payment_verified': False,
  'phone_verified': False,
  'portfolio': 1,
  'post': 1,
  'pre': 1,
  'presenc': 1,
  'process': 1,
  'profile_complete': True,
  'project': 3,
  'renown': 1,
  'scope': 1,
  'search': 1,
  'serv': 1,
  'server': 1,
  'shop': 1,
  'site': 1,
  'size': 1,
  'social': 1,
  'success': 1,
  'team': 1,
  'technic': 1,
  'user': 1,
  'web': 3,
  'well': 2,
  'within': 1,
  'work': 3},
 296: {'3': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'n',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'ajax': 1,
  'current': 2,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'done': 1,
  'email_verified': True,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'field': 2,
  'freelanc': 2,
  'html': 2,
  'identity_verified': False,
  'javascript': 1,
  'joomla': 1,
  'kerala': 1,
  'locat': 1,
  'member': 1,
  'mysql': 1,
  'name': 1,
  'past': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'program': 1,
  'project': 2,
  'softwar': 1,
  'success': 1,
  'team': 1,
  'web': 2,
  'wordpress': 1,
  'work': 2,
  'year': 1},
 297: {'2000.': 1,
  '9': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='8'>,
  'First': 'l',
  'Last': '8',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'advertis': 2,
  'compani': 1,
  'cours': 1,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'finish': 1,
  'graduat': 1,
  'graphic': 1,
  'hello': 1,
  'hope': 1,
  'identity_verified': False,
  'li': 1,
  'logo': 1,
  'major': 1,
  'organ': 1,
  'payment_verified': False,
  'perfectli': 1,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'univers': 1,
  'work': 1,
  'year': 1},
 298: {'100': 1,
  '9': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='3'>,
  'First': 'a',
  'Last': 'd',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'afford': 1,
  'alreadi': 1,
  'also': 1,
  'background': 1,
  'chat': 1,
  'commun': 1,
  'custom': 1,
  'deposit_made': True,
  'design': 2,
  'directli': 1,
  'electron': 1,
  'email_verified': True,
  'facebook_connected': True,
  'freelanc': 1,
  'give': 1,
  'graphic': 2,
  'identity_verified': True,
  'inbox': 1,
  'india': 1,
  'intern': 1,
  'internet': 1,
  'item': 1,
  'jingl': 1,
  'kind': 1,
  'lot': 1,
  'market': 1,
  'music': 1,
  'one': 1,
  'one-on-on': 1,
  'outsourc': 1,
  'past': 1,
  'pay': 1,
  'payment_verified': True,
  'per': 1,
  'phone_verified': True,
  'print': 1,
  'produc': 1,
  'profile_complete': True,
  'provid': 2,
  'right': 1,
  'satisfact': 1,
  'satisfi': 1,
  'score': 1,
  'see': 1,
  'servic': 2,
  'sinc': 1,
  'solut': 1,
  'song': 1,
  'time': 2,
  'updat': 1,
  'variou': 1,
  'web': 2,
  'well': 1,
  'work': 1,
  'years.i': 1},
 299: {'10': 1,
  '2': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 's',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  '\\t\\t': 2,
  '\\xe2\\u20ac\\xa2\\tgraph': 1,
  '\\xe2\\u20ac\\xa2\\tmicrosoft': 1,
  'apart': 1,
  'appli': 1,
  'bachelor': 1,
  'birth': 2,
  'career': 1,
  'cebu': 2,
  'central': 1,
  'citi': 1,
  'citymobil': 1,
  'comput': 3,
  'cours': 1,
  'decemb': 1,
  'deposit_made': False,
  'design': 2,
  'e.': 1,
  'email_verified': True,
  'erni': 2,
  'experi': 1,
  'f.': 1,
  'facebook_connected': False,
  'graphic': 1,
  'identity_verified': False,
  'inform': 2,
  'institut': 3,
  'internet': 1,
  'israel': 1,
  'ken': 1,
  'knowledg': 1,
  'l.': 1,
  'laboratori': 1,
  'mae': 1,
  'major': 1,
  'mother\\xe2\\u20ac\\u2122': 1,
  'multimedia': 2,
  'name': 2,
  'objectiveto': 1,
  'occup': 1,
  'page': 1,
  'payment_verified': False,
  'phone_verified': False,
  'portfolio': 1,
  'profici': 1,
  'profile_complete': True,
  'sm': 1,
  'staff': 1,
  'street': 1,
  'technolog': 1,
  'v.': 1},
 300: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'a',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'custom': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'import': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'satisfact': 1,
  'success': 1},
 301: {"'re": 1,
  '.net': 2,
  '3d': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='7'>,
  'First': 't',
  'Last': '9',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'ajax': 1,
  'brochur': 1,
  'c': 1,
  'css': 1,
  'deposit_made': False,
  'email_verified': True,
  'event': 1,
  'facebook_connected': False,
  'flash': 1,
  'flex': 1,
  'html': 1,
  'identity_verified': False,
  'illustr': 1,
  'javascript': 1,
  'jqueri': 1,
  'logo': 1,
  'mail': 1,
  'make': 1,
  'manag': 1,
  'nhibern': 1,
  'nuke': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'profile_complete': True,
  'project': 1,
  'readi': 1,
  'servic': 1,
  'tran': 1,
  'xml': 1},
 302: {"'m": 3,
  "'s": 2,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': None,
  'First': 'D',
  'Last': 'r',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'bonu': 1,
  'cash': 1,
  'deposit_made': False,
  'email_verified': True,
  'employ': 1,
  'facebook_connected': False,
  'first': 1,
  'fun': 1,
  'gain': 1,
  'help': 1,
  'hobbi': 1,
  'identity_verified': False,
  'littl': 1,
  'mark': 1,
  'next': 1,
  'nice': 1,
  'other': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pocket': 1,
  'prioriti': 1,
  'profile_complete': True,
  'put': 1,
  'singl': 1,
  'tri': 1,
  'websit': 1,
  'well': 1},
 303: {'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'i',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'assert': 1,
  'believ': 1,
  'commun': 1,
  'creativ': 1,
  'deposit_made': False,
  'driven': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'keep': 1,
  'led': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profess': 1,
  'profile_complete': True,
  'simpl': 1,
  'techniqu': 1,
  'thing': 2,
  'write': 1},
 304: {'.net': 3,
  '2.0,3.5,4.0': 1,
  '2000': 1,
  '2003': 2,
  '2005': 1,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'r',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '\\t': 1,
  '\\tasp.net': 1,
  '\\thtml': 1,
  '\\tsql': 1,
  '\\tvisual': 1,
  'abil': 1,
  'action': 1,
  'adob': 2,
  'analysi': 1,
  'analyt': 1,
  'attitud': 1,
  'c': 1,
  'cm': 1,
  'code': 1,
  'commun': 1,
  'comput': 1,
  'control': 1,
  'cs3': 2,
  'databas': 1,
  'debug': 1,
  'degre': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'excel': 1,
  'facebook_connected': False,
  'framework': 1,
  'googl': 1,
  'host': 1,
  'html5': 1,
  'identity_verified': False,
  'implement': 1,
  'includ': 2,
  'independ': 1,
  'integr': 1,
  'interfac': 1,
  'item': 1,
  'javascript': 3,
  'jqueri': 1,
  'languages\\t': 3,
  'map': 2,
  'markup': 1,
  'master': 1,
  'net': 1,
  'obfusc': 2,
  'oral': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'posit': 1,
  'problem': 2,
  'profile_complete': True,
  'reactor': 2,
  'requir': 1,
  'results-ori': 1,
  'script': 1,
  'server': 1,
  'skill': 1,
  'softwar': 1,
  'solv': 2,
  'sql': 1,
  'store': 1,
  'strong': 1,
  'studio': 2,
  't-sql': 1,
  'team': 1,
  'technic': 1,
  'telerik': 1,
  'univers': 1,
  'use': 1,
  'user': 1,
  'v2': 1,
  'v3': 1,
  'vb.net': 1,
  'version': 1,
  'visual': 1,
  'web': 2,
  'websit': 1,
  'work': 2,
  'written': 1,
  'xml': 1,
  'xpath': 1,
  'xslt': 1},
 305: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(10, 11), match='0'>,
  'First': 'v',
  'Last': '4',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'build': 1,
  'daili': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'everyday': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'keep': 1,
  'learn': 1,
  'like': 1,
  'motto': 1,
  'new': 2,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'renew': 1,
  'softwar': 1,
  'thing': 2,
  'want': 1},
 306: {'.net': 2,
  '2.0': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 's',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'abl': 1,
  'ajax': 1,
  'ambit': 1,
  'applic': 1,
  'argentina': 1,
  'asp.net': 1,
  'autom': 1,
  'back': 1,
  'best': 1,
  'c': 1,
  'challeng': 1,
  'client': 1,
  'com': 1,
  'come': 1,
  'commit': 1,
  'commun': 1,
  'compani': 1,
  'cope': 1,
  'css': 1,
  'data': 1,
  'db': 2,
  'definit': 1,
  'deliv': 1,
  'deliveri': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'email_verified': True,
  'end': 1,
  'engin': 1,
  'environ': 1,
  'ethic': 1,
  'excel': 1,
  'experi': 1,
  'expertis': 2,
  'facebook_connected': False,
  'five': 1,
  'form': 1,
  'foundat': 1,
  'foundation-': 1,
  'framework': 2,
  'graduat': 1,
  'honest': 1,
  'html': 1,
  'identity_verified': False,
  'ii': 1,
  'inform': 1,
  'innumer': 1,
  'interop': 1,
  'invok': 1,
  'languag': 1,
  'linkedin': 1,
  'look': 1,
  'make': 1,
  'manner': 1,
  'microsoft': 2,
  'ms': 1,
  'multi-thread': 1,
  'offic': 1,
  'oportun': 1,
  'payment_verified': False,
  'perform': 1,
  'phone_verified': False,
  'platform': 1,
  'possibl': 1,
  'product': 1,
  'profession': 2,
  'profil': 1,
  'profile_complete': True,
  'qualiti': 2,
  'rang': 1,
  'renown': 1,
  'satisfact': 1,
  'server': 2,
  'servic': 3,
  'skill': 1,
  'softwar': 1,
  'sql': 1,
  'synchron': 1,
  'system': 1,
  't-sql': 1,
  'team': 1,
  'time': 1,
  'trigger': 1,
  'troubleshoot': 1,
  'tuning-': 1,
  'univers': 1,
  'virtual': 1,
  'web': 2,
  'wide': 1,
  'win32': 1,
  'window': 1,
  'work': 2,
  'year': 1},
 307: {'7': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  'brick': 1,
  'build': 1,
  'busi': 1,
  'call': 1,
  'center': 1,
  'commerci': 1,
  'deposit_made': True,
  'email_verified': True,
  'experi': 1,
  'expertis': 2,
  'facebook_connected': False,
  'first': 1,
  'identity_verified': False,
  'major': 1,
  'need': 1,
  'open': 1,
  'payment_verified': False,
  'phone_verified': True,
  'product': 1,
  'profile_complete': True,
  'solut': 2,
  'sourc': 1,
  'suggest': 1,
  'voip': 2,
  'year': 1},
 308: {"'ve": 2,
  '15': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'e',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'adapt': 1,
  'allow': 1,
  'also': 1,
  'anyth': 1,
  'area': 1,
  'articl': 1,
  'busi': 1,
  'command': 1,
  'concern': 1,
  'content': 1,
  'creation': 1,
  'creativ': 1,
  'current': 1,
  'deliveri': 1,
  'deposit_made': False,
  'educ': 1,
  'email_verified': True,
  'english': 1,
  'experi': 2,
  'expertis': 1,
  'facebook_connected': False,
  'far': 1,
  'firm': 1,
  'flexibl': 1,
  'forward': 1,
  'full': 1,
  'gener': 1,
  'hard-work': 1,
  'identity_verified': False,
  'internet': 1,
  'kind': 2,
  'knowledg': 1,
  'languag': 1,
  'look': 1,
  'mainli': 1,
  'manag': 1,
  'market': 1,
  'materi': 1,
  'newspap': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'possess': 1,
  'press': 1,
  'profile_complete': True,
  'project': 1,
  'projects.i': 1,
  'psycholog': 1,
  'rate': 1,
  'releas': 1,
  'reliabl': 1,
  'requir': 1,
  'schedul': 1,
  'scienc': 1,
  'social': 1,
  'spanish': 1,
  'tackl': 1,
  'time': 1,
  'translat': 4,
  'type': 2,
  'variou': 1,
  'websit': 1,
  'work': 2,
  'write': 1,
  'written': 1,
  'year': 1},
 309: {'Caps': None,
  'Digit': None,
  'First': 'z',
  'Last': 'e',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': True,
  'idea': 1,
  'identity_verified': False,
  'knowledg': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True},
 310: {"'m": 1,
  "'s": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'J',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'aim': 1,
  'alreadi': 1,
  'anoth': 1,
  'anyth': 1,
  'articl': 2,
  'avoid': 2,
  'base': 2,
  'caus': 1,
  'check': 1,
  'client': 3,
  'commun': 1,
  'consider': 1,
  'constantli': 1,
  'crazi': 1,
  'creat': 1,
  'creativ': 2,
  'critic': 1,
  'deposit_made': True,
  'deriv': 1,
  'determin': 1,
  'differ': 1,
  'domain': 1,
  'email_verified': True,
  'everi': 2,
  'exist': 1,
  'facebook_connected': False,
  'fail': 1,
  'freelanc': 1,
  'health': 1,
  'honesti': 1,
  'honestli': 1,
  'hospit': 1,
  'idea': 1,
  'identity_verified': False,
  'integr': 2,
  'keep': 1,
  'lag': 1,
  'life': 2,
  'make': 2,
  'mental': 1,
  'much': 1,
  'new': 2,
  'past': 1,
  'payment_verified': False,
  'perhap': 1,
  'person': 2,
  'phone_verified': False,
  'piec': 2,
  'pleasur': 1,
  'produc': 2,
  'product': 3,
  'profile_complete': True,
  'regret': 2,
  'regularli': 1,
  'requir': 2,
  'respect': 1,
  'satisfact': 1,
  'somewher': 1,
  'still': 1,
  'sure': 1,
  'thing': 1,
  'three': 1,
  'time': 1,
  'tire': 1,
  'tri': 1,
  'troubl': 1,
  'two': 1,
  'unnecessari': 1,
  'util': 1,
  'valu': 1,
  'virtu': 1,
  'word': 2,
  'work': 3,
  'world': 1,
  'would': 1,
  'write': 6,
  'zeal': 1},
 311: {'...': 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'n',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'alway': 1,
  'beauti': 1,
  'build': 1,
  'client': 1,
  'creat': 1,
  'deposit_made': False,
  'design': 4,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'field': 1,
  'graphic': 2,
  'identity_verified': False,
  'indonesia': 1,
  'logo': 1,
  'long': 1,
  'look': 1,
  'love': 1,
  'mani': 1,
  'market': 1,
  'outsourc': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'rang': 1,
  'relationship': 1,
  'solut': 1,
  'term': 1,
  'time': 1,
  'uniqu': 1,
  'web': 2,
  'web-servic': 1,
  'wide': 1,
  'work': 3},
 312: {'4': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'm',
  'Last': '7',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'servic': 1,
  'web': 1,
  'work': 1,
  'year': 1,
  'zend': 1},
 313: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
  'Digit': None,
  'First': 'L',
  'Last': 'p',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='I'>,
  'creativ': 1,
  'deposit_made': True,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'hardwork': 1,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'talent': 1},
 314: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'r',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'aim': 1,
  'android': 1,
  'asp.net': 1,
  'css': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': True,
  'html': 1,
  'identity_verified': False,
  'linq': 1,
  'mobil': 1,
  'mysql': 1,
  'new': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'provid': 1,
  'readi': 1,
  'solut': 1,
  'sql': 1,
  'technolog': 3,
  'use': 2,
  'web': 1,
  'work': 1,
  'xhtml': 1},
 315: {'.o': 1,
  'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'i',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'admin': 2,
  'also': 1,
  'applic': 1,
  'author': 1,
  'bengal': 1,
  'binari': 1,
  'code': 1,
  'colleg': 1,
  'compani': 1,
  'creat': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 5,
  'display': 2,
  'doc': 1,
  'downlin': 2,
  'email_verified': True,
  'event': 1,
  'facebook_connected': True,
  'format': 1,
  'forum': 1,
  'get': 1,
  'give': 1,
  'graphic': 2,
  'hard': 1,
  'identity_verified': False,
  'import': 2,
  'level': 1,
  'look': 1,
  'matter': 1,
  'mlm': 1,
  'nation': 1,
  'new': 1,
  'panel': 2,
  'parti': 2,
  'payment_verified': False,
  'perfectli': 1,
  'person': 1,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'regist': 1,
  'see': 1,
  'share': 1,
  'tree': 1,
  'updat': 1,
  'use': 1,
  'user': 1,
  'way': 1,
  'websit': 3,
  'west': 1,
  'without': 1,
  'work': 1},
 316: {'Caps': None,
  'Digit': None,
  'First': 'u',
  'Last': 'i',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
  'accordingli': 1,
  'agil': 1,
  'along': 1,
  'also': 1,
  'approach': 2,
  'ask': 1,
  'blocker': 1,
  'certain': 1,
  'client': 1,
  'coordin': 1,
  'deadlin': 1,
  'deposit_made': False,
  'design': 1,
  'directli': 1,
  'document': 2,
  'done': 1,
  'email_verified': True,
  'engin': 2,
  'execut': 2,
  'experi': 1,
  'expertis': 1,
  'extens': 1,
  'facebook_connected': False,
  'gather': 1,
  'get': 1,
  'happen': 2,
  'help': 1,
  'identity_verified': False,
  'job': 1,
  'lead': 2,
  'make': 1,
  'manag': 1,
  'master': 1,
  'meet': 1,
  'mitig': 1,
  "n't": 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': True,
  'plan': 1,
  'possibl': 1,
  'prepar': 1,
  'profile_complete': True,
  'project': 6,
  'put': 1,
  'remov': 1,
  'requir': 2,
  'resourc': 2,
  'risk': 1,
  'scenario': 1,
  'schedul': 1,
  'scrum': 1,
  'situat': 1,
  'softwar': 6,
  'success': 2,
  'team': 1,
  'technic': 1,
  'test': 2,
  'testing.i': 1,
  'tri': 3,
  'us': 1,
  'use': 1,
  'variou': 2,
  'well': 1,
  'work': 3},
 317: {'6': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='7'>,
  'First': 'h',
  'Last': '8',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'accur': 1,
  'comput': 1,
  'contact': 1,
  'depend': 1,
  'deposit_made': False,
  'dual': 1,
  'email_verified': True,
  'facebook_connected': False,
  'fast': 1,
  'first': 1,
  'futur': 1,
  'high': 1,
  'home': 1,
  'honest': 1,
  'identity_verified': False,
  'job': 1,
  'monitor': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'right': 1,
  'speed': 1,
  'time': 1,
  'work': 2,
  'year': 1},
 318: {"'ll": 1,
  "'m": 1,
  '100': 3,
  '2008': 1,
  '2009': 1,
  '2011': 1,
  '5': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
  'Digit': None,
  'First': 'R',
  'Last': 'n',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='i'>,
  'actual': 1,
  'advis': 1,
  'anyth': 1,
  'around': 1,
  'becam': 1,
  'broaden': 1,
  'cake': 1,
  'career': 1,
  'cash': 1,
  'commun': 1,
  'core': 1,
  'current': 1,
  'decid': 1,
  'deliv': 1,
  'deposit_made': True,
  'direct': 2,
  'email_verified': True,
  'engin': 1,
  'excel': 1,
  'facebook_connected': True,
  'flow': 1,
  'focu': 1,
  'free': 1,
  'freelanc': 2,
  'happi': 1,
  'heavi': 1,
  'identity_verified': True,
  'improv': 1,
  'includ': 1,
  'innov': 1,
  'interperson': 1,
  'invest': 1,
  'later': 1,
  'learn': 1,
  'limit': 1,
  'main': 2,
  "n't": 1,
  'payment_verified': True,
  'phone_verified': True,
  'piec': 1,
  'potenti': 1,
  'profile_complete': True,
  'project': 4,
  'punctual': 1,
  'quality-': 1,
  'record': 1,
  'recruit': 1,
  'review': 1,
  'sale': 2,
  'see': 1,
  'sever': 1,
  'skill': 1,
  'small': 2,
  'softwar': 2,
  'spanish': 1,
  'standard': 1,
  'star': 1,
  'start': 1,
  'start-up': 1,
  'take': 1,
  'time': 2,
  'trainer': 1,
  'translat': 1,
  'travel': 2,
  'undertak': 1,
  'want': 1,
  'work': 1,
  'world': 1,
  'write': 1},
 319: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 's',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'level': 1,
  'offer': 1,
  'oppurtun': 1,
  'optimum': 1,
  'payment_verified': False,
  'perform': 1,
  'phone_verified': False,
  'profile_complete': True,
  'seek': 1},
 320: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'r',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'c': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'good': 1,
  'identity_verified': False,
  'mine': 1,
  'payment_verified': True,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'project': 1},
 321: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'i',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'end': 1,
  'facebook_connected': True,
  'front': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'web': 1},
 322: {'10': 1,
  '3': 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'd',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'advertis': 1,
  'concept': 2,
  'concern': 1,
  'creat': 1,
  'deposit_made': True,
  'design': 4,
  'email_verified': True,
  'experi': 2,
  'explor': 1,
  'facebook_connected': False,
  'graphic': 1,
  'idea': 1,
  'identity_verified': False,
  'like': 1,
  'logo': 2,
  'payment_verified': True,
  'phone_verified': False,
  'power': 1,
  'profile_complete': True,
  'simpl': 1,
  'specialist': 1,
  'strong': 1,
  'work': 1,
  'year': 2},
 323: {'9': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 's',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'advertis': 1,
  'approv': 1,
  'area': 1,
  'arrang': 1,
  'assembl': 1,
  'associ': 1,
  'avail': 1,
  'background': 1,
  'cad/cam': 1,
  'call': 1,
  'chang': 2,
  'check': 1,
  'compani': 1,
  'conceptu': 1,
  'consider': 1,
  'conveni': 1,
  'custom': 1,
  'cut': 1,
  'dear': 1,
  'depart': 2,
  'deposit_made': True,
  'design': 5,
  'detail': 1,
  'develop': 1,
  'discuss': 1,
  'draw': 4,
  'educ': 1,
  'email_verified': True,
  'enclos': 1,
  'engin': 3,
  'enquiri': 1,
  'entail': 1,
  'entir': 1,
  'equip': 2,
  'exist': 2,
  'experi': 3,
  'extract': 1,
  'facebook_connected': False,
  'final': 3,
  'first': 1,
  'follow': 1,
  'identifi': 1,
  'identity_verified': False,
  'improv': 2,
  'industri': 1,
  'interview': 2,
  'mainten': 1,
  'manag': 2,
  'mass': 1,
  'meet': 1,
  'model': 4,
  'mutual': 1,
  'new': 1,
  'oper': 1,
  'organ': 1,
  'part': 1,
  'payment_verified': True,
  'pertain': 1,
  'phone_verified': False,
  'plan': 1,
  'problem': 1,
  'procedur': 1,
  'product': 6,
  'profile_complete': True,
  'project': 1,
  'qualif': 1,
  'qualiti': 2,
  'quotat': 1,
  'relat': 1,
  'releas': 1,
  'requir': 2,
  'resolv': 1,
  'respond': 1,
  'resum': 1,
  'sampl': 1,
  'schedul': 1,
  'select': 1,
  'show': 1,
  'sincer': 1,
  'sir': 1,
  'solid': 1,
  'solut': 1,
  'specif': 2,
  'staff': 1,
  'studi': 2,
  'task': 1,
  'team': 1,
  'test': 1,
  'thank': 1,
  'time': 2,
  'tool': 1,
  'total': 1,
  'translat': 1,
  'use': 1,
  'variou': 2,
  'vendor': 1,
  'year': 1},
 324: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
  'Digit': None,
  'First': 'T',
  'Last': 'r',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'aspect': 3,
  'call': 1,
  'center': 1,
  'comput': 1,
  'conflict': 1,
  'corpor': 1,
  'custom': 2,
  'data': 2,
  'deposit_made': True,
  'edit': 2,
  'email_verified': True,
  'entri': 2,
  'experienc': 4,
  'facebook_connected': False,
  'identity_verified': False,
  'includ': 1,
  'legal': 1,
  'main': 1,
  'medic': 1,
  'ms': 1,
  'offic': 1,
  'oper': 1,
  'order': 1,
  'payment_verified': True,
  'person': 1,
  'phone_verified': True,
  'product': 1,
  'profile_complete': True,
  'program': 1,
  'proofread': 1,
  'resolut': 1,
  'servic': 2,
  'strength': 1,
  'support': 2,
  'system': 1,
  'tech': 1,
  'telephon': 1,
  'transcript': 1,
  'variou': 1,
  'verif': 1,
  'window': 2,
  'write': 1},
 325: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'z',
  'Last': 'a',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'applic': 4,
  'base': 1,
  'call': 1,
  'cm': 1,
  'compani': 2,
  'comput': 1,
  'confidenti': 2,
  'control': 1,
  'creat': 1,
  'current': 1,
  'deposit_made': False,
  'develop': 3,
  'email_verified': True,
  'embed': 1,
  'engin': 1,
  'extens': 1,
  'facebook_connected': True,
  'framework': 1,
  'graduat': 1,
  'help': 1,
  'identity_verified': False,
  'improv': 1,
  'interest': 1,
  'iphon': 1,
  'job': 1,
  'joomla': 1,
  'let': 1,
  'licens': 1,
  'mechan': 1,
  'methodolog': 1,
  'mobil': 1,
  'mostli': 1,
  'mvc': 1,
  'oop': 1,
  'open': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'softwar': 1,
  'someth': 1,
  'sourc': 2,
  'special': 1,
  'technolog': 1,
  'uniqu': 1,
  'use': 2,
  'version': 1,
  'web': 2,
  'work': 5,
  'wrote': 1,
  'xcode': 1,
  'year': 1},
 326: {"'s": 1,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'r',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'address': 2,
  'aforesaid': 1,
  'applic': 1,
  'back': 1,
  'backpag': 1,
  'capabl': 1,
  'catalog': 1,
  'classifi': 1,
  'client': 2,
  'clients.5': 1,
  'come': 1,
  'compani': 2,
  'contact': 1,
  'content': 1,
  'continu': 1,
  'convert': 1,
  'copi': 3,
  'cost.mi': 1,
  'data': 2,
  'deposit_made': True,
  'edit': 1,
  'effici': 1,
  'email': 1,
  'email_verified': True,
  'emails.6': 1,
  'enter': 1,
  'especi': 1,
  'excel': 1,
  'exchang': 1,
  'expert': 1,
  'facebook_connected': False,
  'feel': 1,
  'find': 1,
  'forward': 1,
  'fraction': 1,
  'free': 1,
  'high': 1,
  'identity_verified': False,
  'internet': 2,
  'like': 1,
  'link': 1,
  'list': 1,
  'mail': 1,
  'may': 2,
  'ms': 1,
  'name': 1,
  'necessari': 1,
  'new': 1,
  'number': 1,
  'offic': 1,
  'olx': 1,
  'onlin': 1,
  'past': 2,
  'payment_verified': True,
  'phone_verified': True,
  'possibl': 1,
  'post': 1,
  'product': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 3,
  'qualiti': 1,
  'research': 2,
  'satisfi': 1,
  'search': 2,
  'seo': 1,
  'servic': 3,
  'session': 1,
  'sharpen': 1,
  'shop': 1,
  'singer': 1,
  'skill': 1,
  'specialist': 2,
  'termin': 1,
  'time': 1,
  'train': 2,
  'url': 1,
  'websit': 2,
  'websites3': 1,
  'work': 6,
  'would': 2},
 327: {"'m": 2,
  "'ve": 1,
  '.net': 2,
  '7+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'r',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'angularj': 1,
  'api': 2,
  'applic': 3,
  'asp.net': 1,
  'c': 1,
  'complet': 1,
  'deposit_made': False,
  'desktop': 1,
  'develop': 3,
  'email_verified': True,
  'experi': 1,
  'experienc': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'integr': 2,
  'interest': 1,
  'linq': 1,
  'mani': 1,
  'mvc': 1,
  'page': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 3,
  'servic': 1,
  'signalr': 1,
  'singl': 1,
  'softwar': 1,
  'success': 1,
  'technolog': 2,
  'use': 1,
  'web': 2,
  'websit': 1,
  'window': 1,
  'years\\xe2\\u20ac\\u2122': 1},
 328: {'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 's',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'know': 1,
  'need': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True},
 329: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'o',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'artist': 1,
  'board': 1,
  'complet': 1,
  'deposit_made': True,
  'effici': 1,
  'email_verified': True,
  'enabl': 1,
  'entertain': 1,
  'environ': 1,
  'facebook_connected': False,
  'fashion': 1,
  'game': 1,
  'high': 1,
  'identity_verified': False,
  'industry.i': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'qualiti': 1,
  'set': 1,
  'sever': 1,
  'ship': 1,
  'skill': 1,
  'task': 1,
  'time': 1,
  'titl': 1,
  'work': 1},
 330: {'1983.': 1,
  '2005': 1,
  '2007': 1,
  '2011': 2,
  '3d': 1,
  '6': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='U'>,
  'Digit': None,
  'First': 'U',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='U'>,
  'accent': 1,
  'art': 1,
  'award': 2,
  'born': 1,
  'citi': 1,
  'competit': 1,
  'deposit_made': False,
  'design': 5,
  'educ': 1,
  'email_verified': True,
  'exhibit': 1,
  'facebook_connected': False,
  'fan': 1,
  'graduat': 1,
  'graphic': 1,
  'home': 1,
  'identity_verified': False,
  'industri': 2,
  'interior': 1,
  'intern': 1,
  'moscow': 1,
  'mount': 1,
  'nation': 1,
  'one': 1,
  'page': 1,
  'pari': 1,
  'particip': 1,
  'payment_verified': False,
  'phone_verified': True,
  'prize': 1,
  'profile_complete': True,
  'receiv': 2,
  'studio': 1,
  'ukrain': 1,
  'visual': 1,
  'wall': 1,
  'work': 1},
 331: {'.net': 1,
  '7+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'a',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'also': 1,
  'android': 2,
  'applic': 4,
  'autom': 2,
  'base': 2,
  'browser': 1,
  'case': 2,
  'center': 1,
  'certifi': 1,
  'client': 1,
  'compat': 1,
  'contact': 1,
  'cross': 1,
  'cycl': 1,
  'databas': 1,
  'deliv': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'domain': 1,
  'dynam': 1,
  'ecommerc': 1,
  'educ': 1,
  'effici': 1,
  'elearn': 1,
  'email_verified': True,
  'erp': 1,
  'execut': 1,
  'experi': 3,
  'experienc': 1,
  'expert': 1,
  'expertis': 1,
  'facebook_connected': False,
  'financ': 1,
  'function': 1,
  'healthcar': 1,
  'high': 1,
  'highli': 1,
  'hp': 1,
  'identity_verified': False,
  'io': 1,
  'ipad': 1,
  'iphon': 1,
  'istqb': 1,
  'java': 1,
  'jira': 1,
  'jmeter': 1,
  'life': 1,
  'like': 1,
  'look': 1,
  'manag': 2,
  'manti': 1,
  'me.i': 1,
  'mobil': 2,
  'mssql': 1,
  'mysql': 1,
  'network': 1,
  'oracl': 1,
  'payment_verified': False,
  'perform': 1,
  'phone_verified': True,
  'php': 1,
  'plan': 1,
  'platform.i': 1,
  'pleas': 1,
  'profici': 1,
  'profile_complete': True,
  'project': 1,
  'proven': 1,
  'qa': 1,
  'qualiti': 3,
  'quickli': 1,
  'rang': 1,
  'scenario': 1,
  'selenium': 1,
  'servic': 1,
  'skill': 1,
  'soapui': 1,
  'social': 1,
  'softwar': 1,
  'standard': 1,
  'stlc': 1,
  'technolog': 1,
  'test': 12,
  'tester': 1,
  'tool': 1,
  'usabl': 1,
  'use': 4,
  'variou': 1,
  'web': 3,
  'work': 1,
  'year': 1},
 332: {'7': 1,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'h',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'area': 1,
  'asp.net': 1,
  'corpor': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experience.mi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profici': 1,
  'profile_complete': True,
  'softwar': 1,
  'year': 1},
 333: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'r',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'corpor': 1,
  'dedic': 1,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'experienc': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'recent': 1,
  'softwar': 1,
  'special': 1,
  'spoken': 1,
  'switch': 1,
  'technolog': 1,
  'web': 1,
  'well': 1,
  'work': 1,
  'year': 1},
 334: {'.net': 1,
  '1': 1,
  '1978': 1,
  '1983': 2,
  '1983.': 1,
  '1985': 1,
  '1985.': 1,
  '1988': 1,
  '1989': 1,
  '1989.': 1,
  '1990': 2,
  '1991': 2,
  '1991.': 2,
  '1992': 1,
  '1993.': 1,
  '1994': 1,
  '1994.': 1,
  '1996': 1,
  '1996.': 1,
  '1997': 1,
  '1999': 1,
  '1999.': 1,
  '2': 2,
  '2000': 1,
  '2001': 1,
  '2002': 1,
  '2002.': 1,
  '2003': 4,
  '2004': 3,
  '2005': 3,
  '2005.': 1,
  '2006': 1,
  '2006.': 1,
  '2007': 3,
  '2007.': 1,
  '2011': 1,
  '3': 1,
  '3.1': 1,
  '3.2': 1,
  '4': 1,
  '400': 1,
  '48': 2,
  '5': 2,
  '5.1': 2,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 't',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  '\\xe2\\u20ac\\u0153inform': 2,
  '\\xe2\\u20ac\\u201c': 1,
  '\\xe2\\u20ac\\x9d': 1,
  'access': 2,
  'accessori': 1,
  'achiev': 1,
  'acm': 1,
  'acrobat': 1,
  'administr': 7,
  'adob': 1,
  'advanc': 4,
  'age\\xe2\\u20ac\\x9d': 2,
  'align': 1,
  'allow': 1,
  'along': 1,
  'american': 1,
  'antholog': 2,
  'aol': 1,
  'appli': 3,
  'applic': 1,
  'april': 2,
  'archiv': 1,
  'area': 2,
  'asp.net': 1,
  'assign': 1,
  'assist': 4,
  'associ': 3,
  'audio': 1,
  'audit': 1,
  'august': 9,
  'award': 1,
  'bachelor': 3,
  'backup': 1,
  'bank': 1,
  'basic': 2,
  'begin': 2,
  'bill': 1,
  'black': 1,
  'bring': 1,
  'busi': 3,
  'call': 1,
  'capella': 3,
  'carolina': 1,
  'cascad': 1,
  'cashier': 3,
  'catalog': 1,
  'cell': 1,
  'cellular': 1,
  'certif': 2,
  'cgi': 1,
  'chang': 1,
  'channel': 1,
  'charlott': 1,
  'check': 1,
  'children': 1,
  'choic': 1,
  'church': 1,
  'cisco': 6,
  'classroom': 3,
  'clean': 1,
  'clerk': 2,
  'club': 1,
  'collect': 2,
  'colleg': 2,
  'commerci': 1,
  'compani': 3,
  'complet': 2,
  'comput': 5,
  'concern': 1,
  'conduct': 1,
  'configur': 1,
  'connect': 2,
  'consist': 2,
  'consum': 1,
  'contest': 1,
  'contractor': 1,
  'control': 1,
  'corpor': 2,
  'creat': 1,
  'creation': 1,
  'creativ': 1,
  'credit': 1,
  'cricket': 1,
  'critiqu': 1,
  'cum': 1,
  'custom': 10,
  'daili': 1,
  'dakota': 9,
  'danc': 1,
  'data': 2,
  'databas': 2,
  'deadlin': 3,
  'decemb': 5,
  'degre': 1,
  'delta': 1,
  'depart': 2,
  'deposit_made': True,
  'design': 2,
  'develop': 2,
  'devil': 7,
  'dhtml': 1,
  'distribut': 1,
  'document': 7,
  'dolphin': 1,
  'dreamweav': 1,
  'dvd': 1,
  'e-busi': 1,
  'editor\\xe2\\u20ac\\u2122': 1,
  'educ': 1,
  'electr': 1,
  'electron': 2,
  'elementari': 1,
  'email_verified': True,
  'engin': 5,
  'entri': 2,
  'environ': 1,
  'equip': 2,
  'establish': 1,
  'estat': 7,
  'ethic': 1,
  'evalu': 2,
  'even': 1,
  'examin': 2,
  'exceed': 2,
  'excel': 1,
  'execut': 4,
  'expect': 3,
  'experi': 1,
  'facebook_connected': True,
  'fall': 1,
  'famili': 1,
  'famou': 2,
  'fargo': 1,
  'farm': 1,
  'field': 1,
  'final': 1,
  'firework': 1,
  'firm': 2,
  'fish': 1,
  'flash': 1,
  'format': 2,
  'freelanc': 1,
  'fuel': 2,
  'fundament': 1,
  'ga': 1,
  'gener': 2,
  'gpa': 3,
  'grand': 1,
  'graphic': 2,
  'group': 2,
  'hardwar': 2,
  'high': 3,
  'holiday': 1,
  'honeywel': 1,
  'hr': 4,
  'html': 1,
  'http': 1,
  'hug': 1,
  'human': 1,
  'hunt': 1,
  'ibm': 1,
  'identity_verified': False,
  'ieee': 2,
  'illustr': 1,
  'imagereadi': 1,
  'inbound': 1,
  'independ': 1,
  'individu': 1,
  'inform': 7,
  'instal': 2,
  'institut': 1,
  'instruct': 2,
  'instructor': 1,
  'insur': 1,
  'intellig': 1,
  'interact': 1,
  'intern': 4,
  'internet': 1,
  'interview': 1,
  'inventori': 2,
  'invest': 2,
  'invisalign': 1,
  'ivn': 2,
  'januari': 1,
  'javascript': 2,
  'jewel': 1,
  'june': 6,
  'lake': 9,
  'lan': 1,
  'larg': 2,
  'laud': 1,
  'law': 4,
  'leas': 2,
  'legal': 4,
  'leonard': 1,
  'level': 1,
  'librari': 1,
  'licens': 2,
  'life': 2,
  'linux': 1,
  'loan': 1,
  'locat': 3,
  'logo': 1,
  'machineri': 1,
  'macromedia': 1,
  'magazin': 1,
  'main': 1,
  'maintain': 2,
  'manag': 5,
  'mani': 1,
  'master': 2,
  'materi': 1,
  'may': 2,
  'medic': 1,
  'medium': 1,
  'meet': 5,
  'member': 4,
  'membership': 2,
  'merchandis': 1,
  'met': 1,
  'methodolog': 1,
  'microcomput': 1,
  'microsoft': 7,
  'middl': 1,
  'minneapoli': 9,
  'minnesota': 15,
  'month': 1,
  'monthli': 1,
  'mortgag': 1,
  'multimedia': 2,
  'mx': 1,
  'mysql': 1,
  'netwar': 2,
  'network': 6,
  'new': 1,
  'nomin': 1,
  'north': 10,
  'northern': 2,
  'novel': 2,
  'novemb': 5,
  'octob': 2,
  'offer': 2,
  'offic': 9,
  'one': 1,
  'oper': 2,
  'optim': 1,
  'order': 4,
  'organ': 1,
  'os': 1,
  'packag': 1,
  'part': 2,
  'part-tim': 5,
  'partial': 1,
  'pass': 1,
  'paul': 2,
  'payment': 1,
  'payment_verified': False,
  'pca': 1,
  'peopl': 1,
  'perl': 1,
  'perman': 1,
  'person': 1,
  'personnel': 4,
  'phone': 2,
  'phone_verified': False,
  'photo': 2,
  'photograph': 5,
  'photographi': 3,
  'photoshop': 1,
  'php': 1,
  'plan': 1,
  'poem': 3,
  'poet': 2,
  'poetri': 1,
  'portrait': 5,
  'posit': 1,
  'powerpoint': 1,
  'pre-school': 1,
  'present': 2,
  'president\\xe2\\u20ac\\u2122': 1,
  'process': 8,
  'processor': 1,
  'produc': 1,
  'product': 4,
  'profession': 5,
  'profile_complete': True,
  'program': 4,
  'project': 5,
  'promot': 1,
  'properti': 3,
  'provid': 2,
  'prudenti': 2,
  'publish': 4,
  'qtr': 4,
  'qualiti': 2,
  'qvc': 1,
  'radio': 1,
  'real': 7,
  'receiv': 1,
  'recognit': 1,
  'record': 3,
  'refresh': 1,
  'region': 2,
  'releas': 1,
  'repres': 4,
  'requir': 1,
  'research': 1,
  'respons': 1,
  'restaur': 1,
  'retail': 3,
  'review': 2,
  'rout': 1,
  'router': 2,
  'sale': 6,
  'satisfact': 1,
  'scan': 1,
  'school': 4,
  'scienc': 3,
  'search': 1,
  'season': 2,
  'secretari': 7,
  'secur': 1,
  'separ': 1,
  'septemb': 1,
  'server': 5,
  'servic': 10,
  'shack': 1,
  'sheet': 1,
  'shop': 1,
  'side': 1,
  'signal': 1,
  'skill': 1,
  'slide': 1,
  'social': 1,
  'societi': 2,
  'softwar': 1,
  'solari': 1,
  'sold': 2,
  'south': 1,
  'special': 2,
  'specialist': 3,
  'spring': 1,
  'sql': 2,
  'st.': 1,
  'state': 2,
  'state-of-the-art': 1,
  'station': 2,
  'stock': 2,
  'store': 4,
  'street': 1,
  'student': 3,
  'studi': 1,
  'studio': 6,
  'style': 1,
  'suit': 1,
  'summer': 1,
  'super': 1,
  'supervis': 2,
  'switch': 3,
  'system': 2,
  'tank': 1,
  'tax': 1,
  'technic': 1,
  'technician': 1,
  'technolog': 8,
  'teeth': 1,
  'telemarket': 2,
  'televis': 1,
  'temporari': 2,
  'throughout': 1,
  'ticket': 1,
  'today\\xe2\\u20ac\\u2122': 2,
  'tool': 1,
  'topolog': 1,
  'train': 1,
  'transact': 1,
  'travel': 3,
  'troubleshoot': 2,
  'two': 1,
  'uml': 1,
  'univers': 4,
  'unix': 2,
  'use': 4,
  'valu': 1,
  'verizon': 1,
  'video': 2,
  'visio': 1,
  'visual': 3,
  'walmart': 1,
  'wang': 1,
  'web': 2,
  'white': 1,
  'window': 1,
  'wing': 1,
  'winner': 1,
  'wireless': 1,
  'word': 6,
  'wordperfect': 2,
  'work': 5,
  'write': 2,
  'xhtml': 1,
  'xml': 2,
  'xp': 2,
  'year': 1,
  'york': 1},
 335: {'--': 3,
  '2': 1,
  '25': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'h',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'adept': 1,
  'advanc': 1,
  'android': 2,
  'app': 1,
  'c': 1,
  'cakephp': 1,
  'case': 1,
  'client': 1,
  'codeignit': 1,
  'collabor': 1,
  'cost': 1,
  'deposit_made': True,
  'detect': 1,
  'develop': 7,
  'devic': 1,
  'driver': 2,
  'email_verified': True,
  'face': 2,
  'facebook_connected': False,
  'factori': 1,
  'fix': 1,
  'follow': 1,
  'hand': 1,
  'held': 1,
  'hourli': 1,
  'identity_verified': True,
  'imag': 1,
  'includ': 1,
  'job': 1,
  'laravel': 1,
  'linux': 1,
  'long': 1,
  'magento': 1,
  'maintain': 1,
  'mobil': 1,
  'morph': 1,
  'mvvm': 1,
  'os': 1,
  'pattern': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php/mysql': 1,
  'prefer': 1,
  'profile_complete': True,
  'provid': 1,
  'recognit': 2,
  'relationship': 1,
  'repositori': 1,
  'scraper': 1,
  'scrapi': 1,
  'selenium': 1,
  'server': 1,
  'servic': 1,
  'smile': 1,
  'solut': 1,
  'speech': 1,
  'sql': 1,
  'strive': 1,
  'studio': 1,
  'task': 1,
  'term': 2,
  'us': 1,
  'use': 2,
  'ver': 1,
  'web': 1,
  'webapi': 1,
  'window': 1,
  'wordpress/woocommerc': 1},
 336: {'--': 40,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'cart': 1,
  'css': 1,
  'deposit_made': True,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'follow': 1,
  'html': 1,
  'identity_verified': False,
  'industri': 1,
  'onlin': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 2,
  'profile_complete': True,
  'respons': 1,
  'shop': 1,
  'special': 1,
  'websit': 1,
  'work': 1},
 337: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='9'>,
  'First': 'm',
  'Last': '7',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'abl': 1,
  'assign': 1,
  'bilingu': 1,
  'complet': 1,
  'comput': 1,
  'data': 2,
  'dedic': 1,
  'deposit_made': True,
  'develop': 1,
  'effici': 1,
  'email_verified': True,
  'entri': 2,
  'environ': 1,
  'facebook_connected': True,
  'fast-pac': 1,
  'goal-ori': 1,
  'hard': 1,
  'identity_verified': False,
  'last': 1,
  'meticul': 1,
  'multitask': 1,
  'organ': 1,
  'payment_verified': True,
  'phone_verified': True,
  'pressur': 1,
  'problem': 1,
  'profici': 1,
  'profile_complete': True,
  'self-motiv': 1,
  'skill': 4,
  'solv': 1,
  'special': 1,
  'strong': 2,
  'superior': 1,
  'task': 3,
  'technic': 1,
  'time': 1,
  'variou': 2,
  'web': 1,
  'well': 1,
  'work': 4,
  'year': 1},
 338: {'300+': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
  'Digit': None,
  'First': 'O',
  'Last': 'l',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>,
  'also': 3,
  'articl': 3,
  'automobil': 1,
  'build': 1,
  'carri': 1,
  'client': 1,
  'cruis': 1,
  'deposit_made': True,
  'done': 2,
  'email_verified': True,
  'etc': 1,
  'except': 1,
  'facebook_connected': True,
  'far': 1,
  'french': 1,
  'gaf': 3,
  'identity_verified': False,
  'medicin': 1,
  'monument': 1,
  'one': 1,
  'page': 1,
  'part': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profil': 1,
  'profile_complete': True,
  'project': 2,
  'quit': 1,
  'research': 1,
  'review': 1,
  'rewrit': 1,
  'secur': 1,
  'seen': 3,
  'spanish': 1,
  'subject': 1,
  'system': 1,
  't-shirt': 1,
  'url': 1,
  'varieti': 1,
  'whose': 1,
  'write': 1,
  'written': 2},
 339: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'g',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'alway': 1,
  'app': 1,
  'client': 1,
  'deposit_made': False,
  'develop': 3,
  'email_verified': True,
  'everi': 1,
  'everyth': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'goal': 1,
  'hi': 1,
  'identity_verified': False,
  'independ': 1,
  'keep': 1,
  'orient': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'profile_complete': True,
  'requir': 1,
  'sake': 1,
  'self': 1,
  'technolog': 1,
  'updat': 1,
  'web': 1,
  'will': 1,
  'years.i': 1},
 340: {'Caps': None,
  'Digit': None,
  'First': 'u',
  'Last': 'a',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
  'adept': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'illustr': 1,
  'payment_verified': True,
  'phone_verified': True,
  'portfolio': 1,
  'profile_complete': True,
  'recent': 1,
  'recreat': 1,
  'vector': 1,
  'work': 1},
 341: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='7'>,
  'First': 's',
  'Last': '4',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'commun': 1,
  'deposit_made': False,
  'email_verified': True,
  'excel': 1,
  'expert': 1,
  'facebook_connected': False,
  'great': 1,
  'greet': 1,
  'happi': 1,
  'identity_verified': False,
  'immediately.ch': 1,
  'intermediari': 1,
  'look': 1,
  'part': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'programm': 1,
  'project': 1,
  'role': 1,
  'sever': 1,
  'similar': 1,
  'skill': 1,
  'stan': 1,
  'start': 1,
  'time': 1,
  'work': 2,
  'would': 1,
  'year': 1},
 342: {'.net': 1,
  '2.0,3.5,4.0': 1,
  '8.5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'r',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'bengal': 1,
  'colleg': 1,
  'comput': 1,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'exp': 1,
  'facebook_connected': False,
  'framework': 1,
  'identity_verified': False,
  'includ': 1,
  'microsoft': 1,
  'pass': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'scienc': 1,
  'ssi': 1,
  'ssr': 1,
  'technolog': 1,
  'univers': 1,
  'wcf': 1,
  'wpf': 1,
  'year': 1},
 343: {'.-': 2,
  '10': 1,
  '15+': 1,
  '20+': 1,
  'Caps': <_sre.SRE_Match object; span=(5, 6), match='K'>,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='0'>,
  'First': 'r',
  'Last': 'K',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'android': 2,
  'deposit_made': True,
  'develop': 2,
  'email_verified': True,
  'etc': 1,
  'experi': 2,
  'expert': 1,
  'facebook_connected': False,
  'googl': 1,
  'identity_verified': False,
  'includ': 1,
  'integr': 1,
  'locat': 1,
  'maintenance.-': 1,
  'map': 1,
  'messag': 1,
  'mobil': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profici': 1,
  'profile_complete': True,
  'sdk': 1,
  'servic': 1,
  'softwar': 1,
  'year': 3},
 344: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
  'Digit': None,
  'First': 'H',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': False,
  'portfolio': 1,
  'profile_complete': True},
 345: {'5': 1,
  'Caps': <_sre.SRE_Match object; span=(5, 6), match='L'>,
  'Digit': None,
  'First': 'h',
  'Last': 'r',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'book': 1,
  'c': 1,
  'command': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'good': 1,
  'identity_verified': False,
  'java': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'program': 2,
  'publish': 1,
  'silverlight': 1,
  'thank': 1,
  'year': 1},
 346: {'.net': 2,
  '2.0': 1,
  '2008': 2,
  '3': 2,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'adob': 1,
  'associ': 1,
  'base': 1,
  'basi': 1,
  'best': 1,
  'c': 1,
  'compani': 1,
  'consist': 1,
  'cs4': 1,
  'css': 1,
  'custom': 1,
  'deposit_made': False,
  'develop': 3,
  'dhtml': 1,
  'email_verified': True,
  'enterpris': 1,
  'etc': 1,
  'expand': 1,
  'experi': 1,
  'facebook_connected': False,
  'flash': 1,
  'follow': 1,
  'global': 1,
  'great': 1,
  'html': 1,
  'identity_verified': False,
  'india': 11,
  'industri': 1,
  'innov': 1,
  'jsp': 1,
  'kingdom': 1,
  'last': 1,
  'long': 1,
  'look': 1,
  'ltd': 1,
  'ms': 1,
  'nation': 1,
  'overal': 1,
  'packag': 1,
  'partner': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'profile_complete': True,
  'provid': 2,
  'pvt': 1,
  'qualiti': 1,
  'relat': 1,
  'servic': 3,
  'sinc': 1,
  'softwar': 1,
  'sql': 1,
  'support': 1,
  'technolog': 1,
  'term': 1,
  'trivedi': 1,
  'uk': 4,
  'unit': 2,
  'us': 1,
  'vb.net': 1,
  'web': 1,
  'websit': 2,
  'xml': 1,
  'year': 1,
  'yr': 1},
 347: {'*web': 1,
  '2.0': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 's',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'activ': 1,
  'avail': 1,
  'best': 1,
  'big': 1,
  'bookmark': 1,
  'build': 1,
  'compani': 2,
  'comput': 1,
  'deposit_made': False,
  'develop': 1,
  'differ': 2,
  'directori': 2,
  'effort': 1,
  'email_verified': True,
  'engin': 1,
  'entri': 1,
  'etc': 1,
  'exert': 1,
  'experi': 1,
  'experienc': 1,
  'expos': 1,
  'facebook_connected': False,
  'fast': 1,
  'follow': 1,
  'good': 1,
  'guarante': 1,
  'hire': 1,
  'identity_verified': False,
  'involv': 1,
  'job': 2,
  'link': 2,
  'list': 1,
  'local': 2,
  'lot': 1,
  'opportun': 1,
  'optim': 2,
  'orient': 1,
  'page': 2,
  'particularli': 1,
  'payment_verified': False,
  'phone_verified': False,
  'post': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'relat': 1,
  'render': 1,
  'satisfi': 1,
  'search': 1,
  'seek': 1,
  'self': 1,
  'skill': 1,
  'small': 1,
  'smm': 1,
  'someon': 1,
  'specif': 1,
  'submiss': 1,
  'thing': 1,
  'time': 1,
  'use': 1,
  'well': 1,
  'will': 1,
  'work': 2},
 348: {'12+': 1,
  '2': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'n',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'colleagu': 1,
  'deposit_made': True,
  'dotnet': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'technolog': 1,
  'year': 1},
 349: {'15': 1,
  '25': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
  'Digit': None,
  'First': 'C',
  'Last': 't',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'adob': 1,
  'advertis': 1,
  'alway': 1,
  'art': 2,
  'artist': 2,
  'audio': 1,
  'band': 1,
  'beauti': 1,
  'behind': 1,
  'busi': 1,
  'captiv': 1,
  'card': 1,
  'contempl': 1,
  'convey': 1,
  'creat': 1,
  'creativ': 1,
  'current': 1,
  'daili': 1,
  'deposit_made': False,
  'design': 1,
  'desir': 1,
  'email_verified': True,
  'embrac': 1,
  'empir': 1,
  'experi': 1,
  'explos': 1,
  'facebook_connected': False,
  'femal': 1,
  'identity_verified': False,
  'import': 1,
  'intrus': 1,
  'leav': 1,
  'lyricist': 1,
  'magazin': 1,
  'main': 1,
  'make': 1,
  'mean': 1,
  'music': 2,
  "n't": 1,
  'needless': 1,
  'nois': 1,
  'observ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'primarili': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 2,
  'purpos': 1,
  'qualiti': 1,
  'rang': 1,
  'record': 2,
  'road': 1,
  'see': 1,
  'shot': 1,
  'signag': 1,
  'sorri': 1,
  'southern': 1,
  'stage': 1,
  'suit': 1,
  'viabl': 1,
  'visual': 2,
  'vocalist': 2,
  'voic': 1,
  'want': 1,
  'within': 1,
  'wo': 1,
  'work': 2,
  'year': 2},
 350: {'5+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'o',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'autom': 1,
  'bot': 1,
  'creat': 1,
  'current': 1,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'engin': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'main': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'platform': 1,
  'plugin': 1,
  'profile_complete': True,
  'softwar': 2,
  'web': 1,
  'wordpress': 1,
  'year': 1},
 351: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': None,
  'First': 'D',
  'Last': 'g',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
  'client': 1,
  'custom': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'experienc': 1,
  'extrem': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'lot': 1,
  'offlin': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'satisfact': 1,
  'score': 1,
  'sound': 1,
  'well': 1,
  'work': 1},
 352: {'10': 2,
  '2.': 1,
  '3.': 1,
  '7.': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(10, 11), match='2'>,
  'First': 'o',
  'Last': '9',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'android': 1,
  'angular': 1,
  'area': 1,
  'backbon': 1,
  'browser': 1,
  'compani': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'expertis': 1,
  'express': 1,
  'facebook_connected': True,
  'framework': 1,
  'identity_verified': False,
  'includ': 1,
  'io': 1,
  'iphon': 1,
  'javascript': 1,
  'jqueri': 2,
  'js': 2,
  'last': 1,
  'less': 1,
  'medium': 1,
  'mobil': 1,
  'node': 1,
  'oscommerce6': 1,
  'payment_verified': False,
  'phantom': 1,
  'phone_verified': True,
  'phonegap': 1,
  'php': 1,
  'profile_complete': True,
  'rang': 1,
  'react': 1,
  'ror': 1,
  'site': 1,
  'small': 1,
  'start-up': 1,
  'use': 1,
  'version': 1,
  'websit': 1,
  'wide': 1,
  'year': 1,
  'zend': 1},
 353: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(2, 3), match='7'>,
  'First': 'h',
  'Last': '6',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'hello': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True},
 354: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'W',
  'Last': '4',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='A'>,
  'anim': 1,
  'articl': 1,
  'blog': 1,
  'blue': 1,
  'busi': 1,
  'client': 2,
  'custom': 2,
  'data': 1,
  'deliv': 1,
  'deposit_made': True,
  'design': 2,
  'develop': 1,
  'email_verified': True,
  'entri': 1,
  'establish': 1,
  'expertis': 1,
  'facebook_connected': False,
  'field': 1,
  'focu': 1,
  'freelanc': 1,
  'full': 1,
  'give': 1,
  'graphic': 1,
  'group': 1,
  'help': 1,
  'identity_verified': False,
  'long': 1,
  'manner': 1,
  'object': 2,
  'payment_verified': False,
  'philippin': 1,
  'phone_verified': False,
  'primari': 2,
  'profession': 1,
  'profile_complete': True,
  'program': 1,
  'project': 1,
  'provid': 1,
  'rang': 1,
  'relationship': 1,
  'requir': 1,
  'satisfact': 2,
  'second': 1,
  'servic': 3,
  'strive': 1,
  'term': 1,
  'time': 1,
  'top-notch': 1,
  'understand': 1,
  'us': 1,
  'web': 1,
  'wordpress': 1,
  'write': 1},
 355: {"'m": 1,
  '2004': 1,
  '2005': 1,
  '2006': 1,
  '3d': 1,
  '4d': 1,
  '7': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
  'Digit': None,
  'First': 'L',
  'Last': 'a',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abob': 1,
  'accept': 1,
  'access': 2,
  'adob': 1,
  'aftereffect': 1,
  'applic': 2,
  'area': 1,
  'ask': 1,
  'asp': 1,
  'asp.net': 1,
  'automat': 1,
  'avail': 1,
  'believ': 1,
  'best': 1,
  'build': 1,
  'c': 2,
  'c++': 1,
  'c/c++': 1,
  'career': 1,
  'cascad': 1,
  'cinema': 1,
  'circuit': 1,
  'client': 1,
  'compani': 1,
  'compat': 1,
  'comput': 2,
  'css': 1,
  'custom': 1,
  'databas': 1,
  'decid': 1,
  'deliv': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 4,
  'drive': 1,
  'ecdl': 1,
  'effort': 1,
  'email_verified': True,
  'even': 1,
  'excel': 1,
  'experi': 1,
  'experience.in': 1,
  'expertis': 1,
  'facebook_connected': False,
  'faculti': 1,
  'forward': 1,
  'freelanc': 1,
  'ga': 1,
  'guaranti': 1,
  'help': 1,
  'identity_verified': False,
  'impress': 2,
  'inform': 2,
  'integr': 2,
  'java': 1,
  'javascript': 2,
  'jsp': 1,
  'knowledg': 1,
  'languag': 2,
  'larg': 1,
  'licens': 1,
  'linux': 1,
  'local': 1,
  'look': 1,
  'lua': 2,
  'make': 2,
  'manag': 1,
  'matlab': 1,
  'max': 1,
  'microcomput': 1,
  'microsoft': 3,
  'mod': 1,
  'mt': 1,
  'mysql': 1,
  'object-ori': 1,
  'offic': 1,
  'part': 1,
  'pascal': 1,
  'pawn': 2,
  'payment_verified': True,
  'peopl': 1,
  'perfectionist': 1,
  'petroleum': 1,
  'phone_verified': True,
  'photoshop': 1,
  'php': 2,
  'plc': 1,
  'powerpoint': 1,
  'pro': 1,
  'profile_complete': True,
  'program': 2,
  'project': 4,
  'put': 1,
  'python': 1,
  'relat': 1,
  'resum': 1,
  'sa': 2,
  'seek': 1,
  'server': 2,
  'sever': 1,
  'sharepoint': 1,
  'sheet': 1,
  'show': 1,
  'softwar': 1,
  'solid': 1,
  'soni': 1,
  'sql': 1,
  'start': 1,
  'studio': 1,
  'style': 1,
  'success': 1,
  'support': 1,
  'system': 1,
  'team': 1,
  'tri': 1,
  'ubuntu': 1,
  'univers': 1,
  'upcom': 1,
  'use': 4,
  'variou': 1,
  'vega': 1,
  'visual': 2,
  'websit': 1,
  'word': 1,
  'work': 3,
  'xml': 1,
  'year': 1},
 356: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': None,
  'First': 'P',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(6, 7), match='o'>,
  'deposit_made': False,
  'detail': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'master': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True},
 357: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
  'Digit': None,
  'First': 'J',
  'Last': 'o',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'articles-': 1,
  'blog': 1,
  'client': 3,
  'content': 2,
  'content-': 1,
  'deposit_made': False,
  'email_verified': True,
  'everi': 1,
  'facebook_connected': False,
  'gener': 1,
  'guarante': 1,
  'happier': 1,
  'identity_verified': False,
  'meet': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'posts-': 1,
  'profile_complete': True,
  'prolif': 1,
  'provid': 1,
  'reports-': 1,
  'seo': 1,
  'servic': 1,
  'specif': 1,
  'transact': 1,
  'usual': 1,
  'websit': 1},
 358: {"'s": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(3, 4), match='4'>,
  'First': 'o',
  'Last': '7',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'confidenti': 1,
  'copywrit': 1,
  'cost-effect': 1,
  'degre': 1,
  'deposit_made': True,
  'email_verified': True,
  'english-russian': 1,
  'facebook_connected': False,
  'forward': 1,
  'high': 1,
  'identity_verified': False,
  'im': 1,
  'linguist': 1,
  'look': 1,
  'master': 1,
  'nativ': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'proofreading/edit': 1,
  'provid': 2,
  'qualiti': 1,
  'quick': 1,
  'russian': 1,
  'servic': 1,
  'speaker': 1,
  'transcript': 1,
  'translat': 1,
  'turnaround': 1,
  'type': 1,
  'ukrainian': 4,
  'work': 1},
 359: {"''": 1,
  '2007': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
  'First': 'l',
  'Last': '5',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  '``': 1,
  'act': 2,
  'actor': 1,
  'also': 1,
  'anim': 1,
  'assist': 1,
  'brazilian': 1,
  'cartoon': 1,
  'cast': 1,
  'charact': 1,
  'creation': 1,
  'deposit_made': False,
  'direct': 1,
  'director': 1,
  'dub': 2,
  'durat': 1,
  'e': 1,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'help': 1,
  'identity_verified': False,
  'main': 1,
  'mmorpg': 1,
  'movi': 1,
  'one': 2,
  'payment_verified': False,
  'phone_verified': False,
  'portugues': 1,
  'produc': 1,
  'profile_complete': True,
  'relev': 1,
  'seri': 1,
  'start': 1,
  'team': 1,
  'translat': 1,
  'tv': 1,
  'voic': 2,
  'war': 1,
  'wizard': 1,
  'work': 2},
 360: {'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 't',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'full': 1,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': False,
  'php/mysql': 1,
  'profile_complete': True,
  'time': 1,
  'wordpress': 1},
 361: {'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'r',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'articl': 1,
  'assist': 1,
  'avail': 1,
  'blog': 1,
  'condit': 1,
  'contract': 1,
  'deposit_made': True,
  'draft': 1,
  'editor': 1,
  'email_verified': True,
  'etc': 1,
  'experienc': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': True,
  'polici': 1,
  'post': 1,
  'privaci': 1,
  'profile_complete': True,
  'research': 1,
  'review': 1,
  'term': 1,
  'websit': 1,
  'writer': 1},
 362: {"'m": 1,
  '--': 3,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'o',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'applic': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'flash': 2,
  'game': 1,
  'identity_verified': False,
  'part': 1,
  'payment_verified': False,
  'phone_verified': True,
  'portfolio': 1,
  'profile_complete': True,
  'see': 1},
 363: {'2.0': 1,
  '2000': 1,
  '2003': 1,
  '2007': 1,
  '2010': 1,
  '3.0': 1,
  '3.5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'k',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'access': 1,
  'applic': 3,
  'base': 1,
  'basic': 1,
  'bill': 1,
  'c': 1,
  'co.': 1,
  'control': 2,
  'current': 1,
  'databas': 1,
  'deposit_made': False,
  'desktop': 1,
  'develop': 4,
  'email_verified': True,
  'excel': 2,
  'experi': 2,
  'expertis': 2,
  'facebook_connected': False,
  'framework': 1,
  'i.e': 2,
  'identity_verified': False,
  'includ': 2,
  'infragist': 2,
  'instant': 1,
  'intens': 1,
  'interest': 1,
  'interop': 1,
  'librari': 1,
  'lie': 3,
  'ms': 2,
  'mysql': 1,
  'offic': 3,
  'outlook': 1,
  'parti': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profici': 1,
  'profile_complete': True,
  'provid': 1,
  'server': 1,
  'solut': 2,
  'special': 2,
  'sql': 1,
  'telecom': 1,
  'telerik': 1,
  'third': 1,
  'tool': 1,
  'use': 1,
  'vba': 2,
  'version': 1,
  'visual': 1,
  'wpf': 1,
  'xp': 1,
  'year': 1},
 364: {'2014.': 1,
  '5+': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
  'First': 'A',
  'Last': '2',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'acquir': 1,
  'attend': 1,
  'august': 1,
  'bachelor': 1,
  'deposit_made': True,
  'design': 2,
  'ecommerc': 1,
  'email_verified': True,
  'facebook_connected': True,
  'firm': 1,
  'freelanc': 1,
  'identity_verified': True,
  'interact': 1,
  'media': 2,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'rang': 1,
  'school': 1,
  'web': 2,
  'websit': 1,
  'work': 2,
  'year': 1},
 365: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': None,
  'First': 'D',
  'Last': 'x',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True},
 366: {'3': 1,
  '3d': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'm',
  'Last': '1',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'artist': 1,
  'best': 1,
  'deposit_made': False,
  'email_verified': True,
  'employ': 1,
  'experi': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'give': 1,
  'home': 1,
  'identity_verified': False,
  'layout': 1,
  'max': 1,
  'maya': 1,
  'model': 1,
  'mudbox': 1,
  'overal': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'profile_complete': True,
  'special': 1,
  'start': 1,
  'textur': 1,
  'util': 1,
  'work': 1,
  'year': 1,
  'zbrush': 1},
 367: {'2009': 1,
  'Caps': <_sre.SRE_Match object; span=(5, 6), match='H'>,
  'Digit': None,
  'First': 's',
  'Last': 'r',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'applic': 1,
  'asp.net': 1,
  'basi': 1,
  'busi': 1,
  'c': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'like': 1,
  'long': 1,
  'mainli': 1,
  'new': 1,
  'open': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'program': 1,
  'regular': 1,
  'relat': 1,
  'sinc': 1,
  'softwar': 1,
  'technolog': 1,
  'term': 1,
  'vb.net': 1,
  'web': 1,
  'window': 1,
  'work': 3,
  'would': 1},
 368: {'100': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'r',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'better': 1,
  'cent': 1,
  'deposit_made': False,
  'design': 1,
  'edit': 1,
  'email_verified': True,
  'facebook_connected': False,
  'guarante': 1,
  'highest': 1,
  'identity_verified': False,
  'lay': 1,
  'look': 1,
  'love': 1,
  'make': 1,
  'payment_verified': False,
  'per': 1,
  'phone_verified': False,
  'profile_complete': True,
  'proofread': 1,
  'read': 1,
  'satisfact': 1,
  'standard': 1,
  'strive': 1,
  'thing': 1,
  'work': 1,
  'write': 1},
 369: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
  'First': 'K',
  'Last': '8',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'book': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'gener': 1,
  'identity_verified': False,
  'love': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'proofread': 1,
  'sinc': 1,
  'text': 1,
  'translat': 1,
  'word': 1,
  'work': 2,
  'young': 1},
 370: {'...': 5,
  '20': 1,
  '35': 1,
  '42': 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 's',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'alway': 1,
  'artist': 1,
  'blog': 1,
  'born': 1,
  'brazil': 1,
  'brazilian': 1,
  'cartoon': 1,
  'cartoonist': 1,
  'come': 1,
  'comic': 1,
  'could': 1,
  'current': 1,
  'de': 1,
  'deposit_made': False,
  'dia': 2,
  'draw': 3,
  'email_verified': True,
  'enjoy': 1,
  'even': 1,
  'facebook_connected': False,
  'guto': 2,
  'hi': 1,
  'hope': 2,
  'identity_verified': False,
  'illustr': 1,
  'invit': 1,
  'janeiro': 1,
  'keep': 1,
  'like': 1,
  'live': 2,
  'name': 1,
  'old': 1,
  'payment_verified': False,
  'perhap': 1,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'publish': 1,
  'realli': 1,
  'rio': 1,
  'southern': 1,
  'talk': 1,
  'togeth': 1,
  'visit': 1,
  'work': 4,
  'write': 1,
  'year': 4},
 371: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'r',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'among': 1,
  'challeng': 1,
  'competit': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'especi': 1,
  'facebook_connected': False,
  'fast': 1,
  'field': 1,
  'go': 1,
  'good': 1,
  'great': 1,
  'identity_verified': False,
  'import': 1,
  'know': 1,
  'look': 1,
  'member': 1,
  'new': 1,
  'object': 1,
  'payment_verified': False,
  'phone_verified': False,
  'play': 1,
  'profile_complete': True,
  'project': 2,
  'role': 1,
  'search': 1,
  'skill': 1,
  'societi': 1,
  'util': 1,
  'whole': 1,
  'world': 2},
 372: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'Digit': None,
  'First': 'I',
  'Last': 'N',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'account': 2,
  'approach': 1,
  'area': 1,
  'background': 1,
  'busi': 1,
  'certif': 1,
  'deposit_made': False,
  'develop': 1,
  'distribut': 1,
  'email_verified': True,
  'enabl': 1,
  'experi': 2,
  'facebook_connected': True,
  'financ': 1,
  'guid': 1,
  'identity_verified': False,
  'long-term': 1,
  'market': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'provid': 1,
  'provis': 1,
  'servic': 2,
  'softwar': 1,
  'technic': 1,
  'translat': 1,
  'travel': 1,
  'well': 1},
 373: {'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'o',
  'Numchar': 4,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'brand': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': True,
  'payment_verified': True,
  'peopl': 1,
  'phone_verified': True,
  'product': 1,
  'profile_complete': True,
  'servic': 1,
  'stori': 1,
  'tell': 1},
 374: {'2009': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(10, 11), match='7'>,
  'First': 'p',
  'Last': '2',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'addit': 1,
  'also': 1,
  'articl': 1,
  'blogger': 1,
  'client': 1,
  'deposit_made': False,
  'email_verified': True,
  'enhanc': 1,
  'enthusiast': 1,
  'facebook_connected': False,
  'gimp': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'photo': 1,
  'photographi': 1,
  'profile_complete': True,
  'satisfi': 1,
  'sinc': 1,
  'use': 1,
  'work': 2,
  'writer': 2},
 375: {'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'e',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'databas': 1,
  'definit': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'languag': 1,
  'motiv': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'program': 1,
  'requir': 1,
  'self': 1,
  'sever': 1,
  'skill': 1},
 376: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
  'First': 'm',
  'Last': '7',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'applic': 1,
  'articl': 1,
  'audio': 1,
  'comput': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'file': 1,
  'identity_verified': False,
  'inspir': 1,
  'knowledg': 1,
  'ms': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profici': 1,
  'profile_complete': True,
  'transcrib': 1,
  'troubleshoot': 1,
  'variou': 1,
  'video': 1,
  'write': 1},
 377: {'2d': 2,
  '3d': 2,
  '7': 2,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'c',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'anim': 2,
  'architectur': 2,
  'busi': 4,
  'channel': 1,
  'commerci': 1,
  'compani': 2,
  'complet': 1,
  'creat': 1,
  'deposit_made': False,
  'develop': 1,
  'e': 1,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'explan': 2,
  'facebook_connected': False,
  'freelanc': 2,
  'ground': 1,
  'hello': 1,
  'identity_verified': False,
  'imag': 2,
  'industri': 1,
  'last': 1,
  'learn': 1,
  'market': 1,
  'opportun': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pleas': 1,
  'product': 1,
  'profile_complete': True,
  'project': 1,
  'rang': 1,
  'seek': 1,
  'self': 1,
  'small': 1,
  'special': 1,
  'start': 1,
  'video': 5,
  'vishal': 1,
  'visit': 1,
  'walk': 2,
  'watch': 1,
  'web': 2,
  'wide': 1,
  'work': 2,
  'year': 2,
  'youtub': 1},
 378: {'.net': 1,
  '5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'v',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'access': 1,
  'actionscript': 1,
  'adob': 2,
  'ajax': 1,
  'area': 1,
  'around': 1,
  'asp': 1,
  'best': 1,
  'c': 1,
  'contact': 1,
  'corel': 1,
  'corpor': 1,
  'css': 1,
  'custom': 1,
  'deposit_made': False,
  'design': 5,
  'detail': 1,
  'develop': 2,
  'dhtml': 1,
  'discuss': 1,
  'draw': 1,
  'email_verified': True,
  'expertis': 1,
  'facebook_connected': False,
  'field': 1,
  'flash': 1,
  'hesit': 1,
  'identity_verified': False,
  'illustr': 1,
  'java': 1,
  'javascript': 1,
  'last': 1,
  'macromedia': 2,
  'mani': 1,
  'ms-sql': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'php': 1,
  'profession': 1,
  'profile_complete': True,
  'program': 2,
  'project': 1,
  'provid': 1,
  'quark': 1,
  'solut': 1,
  'thank': 1,
  'us': 1,
  'web': 4,
  'work': 1,
  'world.w': 1,
  'xml': 1,
  'xpress': 1,
  'year': 1},
 379: {"'m": 1,
  "'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'y',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'degre': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'help': 1,
  'hope': 1,
  'identity_verified': False,
  'job': 1,
  'love': 1,
  'master': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'realli': 1,
  'translat': 1},
 380: {'.net': 1,
  '5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'analysi': 1,
  'applic': 2,
  'architect': 1,
  'background': 1,
  'bring': 1,
  'complet': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 4,
  'email_verified': True,
  'engin': 1,
  'enterpris': 1,
  'ethic': 1,
  'excel': 1,
  'experi': 2,
  'facebook_connected': False,
  'identity_verified': False,
  'innov': 1,
  'interest': 1,
  'j2ee': 3,
  'lifecycl': 1,
  'linux': 1,
  'motiv': 1,
  'multi-ti': 1,
  'object-ori': 1,
  'open': 1,
  'payment_verified': False,
  'phone_verified': False,
  'problem': 1,
  'profile_complete': True,
  'provid': 1,
  'senior': 1,
  'servic': 1,
  'softwar': 1,
  'solid': 1,
  'solut': 1,
  'sourc': 1,
  'special': 1,
  'technolog': 1,
  'togeth': 1,
  'unix': 1,
  'use': 1,
  'util': 1,
  'web': 2,
  'work': 1,
  'workplac': 1,
  'xml/xslt': 1,
  'year': 1},
 381: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
  'First': 'N',
  'Last': '0',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'freelance.com': 1,
  'hire': 1,
  'identity_verified': False,
  'like': 1,
  'market.i': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'sector': 1,
  'share': 1,
  'well': 1,
  'work': 1,
  'would': 1},
 382: {'2nd': 1,
  '4': 2,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'b.a': 1,
  'cgpa': 2,
  'chittagong': 1,
  'current': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'honor': 1,
  'identity_verified': False,
  'payment_verified': False,
  'philosophi': 1,
  'phone_verified': False,
  'profile_complete': True,
  'scale': 2,
  'semest': 1,
  'studi': 1,
  'trust': 1,
  'univers': 1,
  'universityresult': 2},
 383: {'--': 56,
  '-book': 1,
  '3rd': 1,
  '9': 1,
  'Caps': None,
  'Digit': None,
  'First': 'u',
  'Last': 't',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
  'advisori': 1,
  'android': 1,
  'app': 1,
  'applic': 3,
  'c': 1,
  'cake': 1,
  'calendar': 1,
  'class': 1,
  'cm': 1,
  'content': 1,
  'deposit_made': True,
  'design': 4,
  'develop': 2,
  'domain': 1,
  'ecommerc': 1,
  'educ': 1,
  'email_verified': True,
  'erp': 1,
  'exam': 1,
  'experi': 1,
  'expert': 1,
  'extens': 1,
  'facebook_connected': False,
  'financi': 1,
  'follow': 1,
  'form': 1,
  'html5': 1,
  'human': 1,
  'identity_verified': False,
  'insur': 1,
  'inventori': 1,
  'io': 1,
  'joomla': 1,
  'logo': 1,
  'manag': 7,
  'microsoft': 1,
  'mobil': 1,
  'modul': 1,
  'ms': 1,
  'mvc': 1,
  'parti': 1,
  'patient': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 2,
  'profile_complete': True,
  'properti': 1,
  'psd': 1,
  'rental': 1,
  'resourc': 1,
  'schedul': 1,
  'school': 1,
  'server': 1,
  'site': 3,
  'sourc': 1,
  'sql': 1,
  'system': 4,
  'telerik': 1,
  'templat': 1,
  'tool': 1,
  'wcf': 1,
  'web': 3,
  'window': 1,
  'wordpress': 1,
  'work': 1,
  'year': 1},
 384: {"''": 9,
  "'s": 1,
  '15': 1,
  '16': 1,
  '2': 5,
  '3': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '``': 9,
  'anim': 3,
  'annedroid': 2,
  'battl': 1,
  'cat': 1,
  'channel': 1,
  'current': 1,
  'dan': 3,
  'deposit_made': True,
  'dino': 3,
  'dog': 1,
  'effect': 1,
  'email_verified': True,
  'episod': 2,
  'facebook_connected': False,
  'featur': 1,
  'feet': 1,
  'film': 1,
  'follow': 1,
  'histori': 1,
  'identity_verified': False,
  'lead': 1,
  'linkedin': 1,
  'maya': 1,
  'odd': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'profile_complete': True,
  'project': 1,
  'season': 8,
  'seri': 7,
  'show': 1,
  'special': 1,
  'tank': 1,
  'tv': 7,
  'vimeo': 1,
  'visual': 1,
  'work': 2},
 385: {'--': 68,
  '-\\xe2\\u20ac\\xa2': 1,
  '.\\xe2\\u20ac\\xa2': 1,
  '1.': 1,
  '2': 1,
  '2.': 1,
  '3.': 1,
  '4': 1,
  '4.': 1,
  '5.': 1,
  '6.': 1,
  '7.': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='3'>,
  'First': 's',
  'Last': '8',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  '\\xe2\\u20ac\\xa2': 7,
  'agil': 1,
  'ajax': 1,
  'android': 1,
  'api': 1,
  'applic': 5,
  'area': 1,
  'attent': 1,
  'backbon': 1,
  'base': 2,
  'bootstrap': 2,
  'capabl': 1,
  'cm': 1,
  'code': 1,
  'codeignit': 4,
  'contact': 1,
  'cpanel': 1,
  'css': 1,
  'databas': 1,
  'deposit_made': True,
  'design': 4,
  'develop': 10,
  'development.\\xe2\\u20ac\\xa2': 2,
  'development\\xe2\\u20ac\\xa2': 2,
  'dn': 3,
  'domain': 1,
  'e-commerc': 2,
  'e-shop': 1,
  'ecommerc': 1,
  'email_verified': True,
  'experi': 7,
  'experienc': 1,
  'facebook': 1,
  'facebook_connected': True,
  'framework': 4,
  'git': 1,
  'hospit': 1,
  'hrm': 1,
  'identity_verified': False,
  'indian': 1,
  'joomla': 2,
  'jqueri': 2,
  'list': 1,
  'magento': 1,
  'manag': 10,
  'methodolog': 1,
  'mobil': 1,
  'modul': 3,
  'multi': 1,
  'mysql': 2,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': True,
  'php': 4,
  'platform': 1,
  'point': 1,
  'profile_complete': True,
  'project': 3,
  'psd': 1,
  'raw': 2,
  'registrar': 1,
  'research': 1,
  'respons': 2,
  'sale': 1,
  'school': 1,
  'sdlc': 1,
  'sinc': 1,
  'site': 1,
  'sourc': 1,
  'strong': 1,
  'subvers': 1,
  'system': 4,
  'task': 1,
  'theme': 1,
  'ui': 1,
  'use': 2,
  'valid': 1,
  'w3c': 1,
  'web': 4,
  'websit': 3,
  'whmc': 1,
  'wordpress': 2,
  'work': 2,
  'wp': 1,
  'write': 1,
  'year': 2,
  'yii': 2,
  'zend': 2,
  'zendframework': 1},
 386: {'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'h',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
  'applic': 1,
  'custom': 1,
  'data': 2,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'larg': 1,
  'mani': 1,
  'payment_verified': False,
  'phone_verified': False,
  'process': 1,
  'profile_complete': True,
  'softwar': 1,
  'web': 1,
  'work': 1},
 387: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
  'Digit': None,
  'First': 'R',
  'Last': 'e',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'account': 1,
  'ago': 1,
  'anyth': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'job': 1,
  'long': 1,
  'lot': 1,
  "n't": 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'start': 1,
  'time': 1},
 388: {'7+': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='8'>,
  'First': 'l',
  'Last': '2',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'industri': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'year': 1},
 389: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
  'Digit': None,
  'First': 'C',
  'Last': 'u',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'christian': 1,
  'deposit_made': True,
  'email_verified': True,
  'ezin': 1,
  'facebook_connected': True,
  'googl': 1,
  'identity_verified': False,
  'incred': 1,
  'payment_verified': True,
  'phone_verified': False,
  'plain': 1,
  'platinum': 1,
  'profile_complete': True,
  'tri': 1,
  'writer': 1},
 390: {'...': 2,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'l',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'album': 1,
  'base': 1,
  'best': 1,
  'brand': 1,
  'busi': 1,
  'card': 1,
  'cover': 1,
  'deposit_made': True,
  'design': 3,
  'email_verified': True,
  'experienc': 1,
  'facebook_connected': False,
  'fastest': 1,
  'graphic': 1,
  'great': 1,
  'ident': 1,
  'identity_verified': False,
  'layout': 1,
  'letterhead': 1,
  'logo': 1,
  'nc': 1,
  'payment_verified': False,
  'phone_verified': False,
  'price': 1,
  'profile_complete': True,
  'turnaround': 1,
  'web': 1,
  'work': 1},
 391: {'1967': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'r',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'articl': 1,
  'birth': 1,
  'copi': 1,
  'deposit_made': False,
  'direct': 1,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'job': 1,
  'maker': 1,
  'marri': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'write': 1},
 392: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'd',
  'Numchar': 5,
  'Vowel': None,
  'abil': 1,
  'account': 1,
  'advertis': 1,
  'applic': 1,
  'articl': 1,
  'aspect': 1,
  'best': 3,
  'best.i': 1,
  'command': 1,
  'comput': 1,
  'confid': 1,
  'consid': 1,
  'copy-writ': 1,
  'coral': 1,
  'craigslist': 1,
  'custom': 1,
  'declar': 1,
  'deposit_made': False,
  'design': 5,
  'draw': 1,
  'edit': 1,
  'email_verified': True,
  'experi': 1,
  'expert': 1,
  'expertis': 1,
  'facebook_connected': False,
  'field': 1,
  'flash': 1,
  'free': 1,
  'furnish': 1,
  'get': 1,
  'good': 2,
  'graphic': 2,
  'grate': 1,
  'grip': 1,
  'hand': 1,
  'herebi': 1,
  'highli': 2,
  'highly-organ': 1,
  'identity_verified': False,
  'illustr': 1,
  'independ': 1,
  'inform': 1,
  'knowledg': 2,
  'logo': 2,
  'market': 1,
  'meet': 1,
  'member.': 1,
  'ms': 1,
  'mx': 1,
  'name': 1,
  'needs.abl': 1,
  'network': 1,
  'offic': 1,
  'ofth': 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 2,
  'posting.': 1,
  'pressure.depend': 1,
  'profession': 1,
  'profile_complete': True,
  'project.i': 1,
  'provid': 2,
  'quality.\\xc2\\xbb': 1,
  'responsible.\\xc2\\xbb': 1,
  'review': 1,
  'scienc': 1,
  'self-motiv': 1,
  'serv': 1,
  'servic': 1,
  'skill': 1,
  'strong': 1,
  'team': 3,
  'true': 1,
  'us.\\xc2\\xbb': 1,
  'use': 1,
  'web': 1,
  'web-design': 1,
  'well': 2,
  'work': 5,
  'would': 1,
  'write': 2},
 393: {'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'e',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'actor': 1,
  'afford': 1,
  'anyth': 1,
  'certainli': 1,
  'charact': 2,
  'commerci': 1,
  'contact': 1,
  'custom': 1,
  'demo': 2,
  'deposit_made': True,
  'documentari': 1,
  'door': 1,
  'dramat': 1,
  'email_verified': True,
  'erni': 2,
  'facebook_connected': False,
  'fast': 1,
  'found': 1,
  'free': 1,
  'friendli': 2,
  'guy': 1,
  'identity_verified': False,
  'like': 1,
  'look': 1,
  'messag': 1,
  'moment': 1,
  'movi': 1,
  'narrat': 1,
  'need': 1,
  'next': 1,
  'payment_verified': False,
  'phone': 1,
  'phone_verified': False,
  'pleas': 1,
  'profession': 3,
  'profile_complete': True,
  'sampl': 1,
  'sincer': 1,
  'site': 1,
  'sound': 1,
  'studio': 1,
  'take': 1,
  'trailer': 2,
  'voic': 5,
  'web': 1,
  'whether': 1,
  'you\\xe2\\u20ac\\u2122r': 1,
  'you\\xe2\\u20ac\\u2122v': 1},
 394: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'a',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'bangladesh': 1,
  'check': 1,
  'deposit_made': False,
  'dhaka': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'give': 1,
  'good': 1,
  'h': 1,
  'hi': 1,
  'identity_verified': False,
  'onlin': 2,
  'opportun': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pleas': 1,
  'profile_complete': True,
  'r': 1,
  'u': 1,
  'want': 1,
  'work': 2,
  'year': 1},
 395: {'10': 1,
  '300': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
  'Digit': None,
  'First': 'H',
  'Last': 'd',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'abil': 1,
  'ambiti': 1,
  'assist': 1,
  'author': 2,
  'bookkeep': 1,
  'bulk': 1,
  'busi': 1,
  'collect': 1,
  'commun': 1,
  'compani': 2,
  'creat': 1,
  'creativ': 1,
  'deposit_made': False,
  'design': 1,
  'differ': 1,
  'distribut': 1,
  'divers': 3,
  'eager': 1,
  'email_verified': True,
  'employ': 1,
  'employe': 1,
  'endeavor': 1,
  'enterpris': 1,
  'entrepreneuri': 1,
  'estat': 1,
  'excel': 1,
  'excess': 1,
  'experi': 4,
  'facebook_connected': False,
  'forc': 1,
  'found': 1,
  'freelanc': 1,
  'goal': 1,
  'grown': 1,
  'identity_verified': False,
  'includ': 1,
  'labor': 1,
  'last': 1,
  'mail': 1,
  'manag': 2,
  'market': 1,
  'numer': 1,
  'organ': 1,
  'parad': 1,
  'payment_verified': False,
  'phone_verified': True,
  'process': 1,
  'profile_complete': True,
  'project': 1,
  'properti': 1,
  'publish': 1,
  'real': 1,
  'retail': 1,
  'sale': 1,
  'self-motiv': 1,
  'shop': 1,
  'site': 1,
  'skill': 1,
  'sold': 1,
  'strong': 2,
  'success': 1,
  'supervis': 1,
  'web': 1,
  'wholesal': 1,
  'writer': 1,
  'year': 1},
 396: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
  'First': 'F',
  'Last': '7',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'portfolio': 1,
  'profile_complete': True},
 397: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'l',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'also': 1,
  'deposit_made': True,
  'document': 1,
  'edit': 1,
  'email_verified': True,
  'english': 1,
  'experi': 1,
  'facebook_connected': False,
  'french': 1,
  'german': 1,
  'good': 1,
  'identity_verified': False,
  'non-techn': 1,
  'payment_verified': True,
  'phone_verified': True,
  'portugues': 1,
  'profile_complete': True,
  'proofread': 1,
  'spanish': 1,
  'technic': 1,
  'translat': 1,
  'understand': 1},
 398: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'n',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
  'administr': 1,
  'assist': 1,
  'data': 1,
  'deposit_made': False,
  'email': 1,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': False,
  'gener': 1,
  'identity_verified': False,
  'lead': 1,
  'market': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'research': 1,
  'seo': 1,
  'support': 1,
  'virtual': 1,
  'web': 1},
 399: {"'m": 4,
  "'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'v',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'alreadi': 1,
  'bit': 1,
  'busi': 1,
  'cash': 1,
  'constantli': 1,
  'cours': 1,
  'deposit_made': True,
  'drop': 1,
  'email_verified': True,
  'expertis': 1,
  'extra': 1,
  'facebook_connected': False,
  'find': 1,
  'fit': 1,
  'footbal': 2,
  'gener': 1,
  'graduat': 1,
  'hello': 1,
  'hobbi': 1,
  'identity_verified': False,
  'interest': 1,
  'job': 1,
  'journal': 1,
  'leagu': 1,
  'led': 1,
  'let': 1,
  'messag': 1,
  'nation': 1,
  'new': 1,
  'paper': 1,
  'payment_verified': True,
  'phone_verified': False,
  'premier': 1,
  'profess': 1,
  'profile_complete': True,
  'project': 1,
  'publish': 1,
  'see': 1,
  'take': 1,
  'togeth': 1,
  'univers': 1,
  'well': 1,
  'world': 1,
  'write': 3},
 400: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'f',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'also': 1,
  'appli': 1,
  'deposit_made': True,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'medic': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'program': 1,
  'scienc': 1,
  'softwar': 1,
  'studi': 1,
  'talent': 1},
 401: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(14, 15), match='1'>,
  'First': 'h',
  'Last': '1',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'commerc': 1,
  'current': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'sterl': 1,
  'work': 1},
 402: {'...': 1,
  '10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'ajax': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'like': 1,
  'mysql': 1,
  'payment_verified': True,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'server': 1,
  'sql': 1,
  'work': 1,
  'year': 1},
 403: {"''": 1,
  "'m": 1,
  '8': 1,
  '9': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
  'Digit': None,
  'First': 'T',
  'Last': 'K',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'accent': 3,
  'also': 1,
  'american': 3,
  'born': 1,
  'corpor': 1,
  'demo': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'fluent': 1,
  'go': 1,
  'identity_verified': False,
  'includ': 1,
  'latest': 1,
  'middl': 1,
  'necessari': 1,
  'one': 1,
  'payment_verified': False,
  'perfect': 1,
  'phone_verified': False,
  'profile_complete': True,
  'project': 2,
  'rais': 1,
  'regular': 1,
  'see': 1,
  'southern': 1,
  'speak': 1,
  'texa': 1,
  'train': 1,
  'tv': 1,
  'video': 2,
  'web': 1,
  'woman': 1,
  'year': 1},
 404: {'6': 1,
  'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'n',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'alway': 2,
  'deliv': 1,
  'deposit_made': True,
  'design': 1,
  'designer.i': 1,
  'disappoint': 1,
  'email_verified': True,
  'extraordinari': 1,
  'facebook_connected': True,
  'freelanc': 1,
  'full-tim': 1,
  'graphic': 2,
  'hello': 1,
  'identity_verified': False,
  'never': 1,
  'passion': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'qualiti': 1,
  'someth': 1,
  'strong': 1,
  'tri': 2,
  'visitor': 1,
  'work': 1,
  'year': 1},
 405: {'10': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(11, 12), match='7'>,
  'First': 'p',
  'Last': '7',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'follow': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'progress': 1,
  'year': 1},
 406: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 's',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'administr': 2,
  'assist': 1,
  'busi': 1,
  'custom': 1,
  'dedic': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'manag': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'retail': 1,
  'servic': 1,
  'skill': 2,
  'supervisor': 1,
  'support': 1,
  'technic': 1,
  'versatil': 1},
 407: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='8'>,
  'First': 'b',
  'Last': '2',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  'comfort': 1,
  'current': 1,
  'deposit_made': True,
  'earn': 2,
  'email_verified': True,
  'enough': 1,
  'experi': 1,
  'extra': 1,
  'facebook_connected': False,
  'gain': 1,
  'good': 1,
  'graduat': 1,
  'identity_verified': False,
  'job': 1,
  'life': 1,
  'money': 1,
  'payment_verified': False,
  'phone_verified': False,
  'privat': 1,
  'profile_complete': True,
  'school': 1,
  'spend': 1,
  'teach': 2,
  'want': 1,
  'well': 1},
 408: {'6': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'y',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'address': 1,
  'along': 1,
  'client\\xe2\\u20ac\\u2122': 1,
  'continu': 1,
  'creat': 1,
  'custom': 1,
  'deposit_made': True,
  'done': 1,
  'effect': 1,
  'email_verified': True,
  'everi': 1,
  'exampl': 1,
  'experi': 1,
  'facebook_connected': False,
  'feel': 1,
  'free': 1,
  'goal': 1,
  'hello': 1,
  'high-qual': 1,
  'identity_verified': False,
  'includ': 1,
  'larg': 1,
  'name': 1,
  'need': 1,
  'number': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pleas': 1,
  'profil': 1,
  'profile_complete': True,
  'project': 1,
  'return': 1,
  'seo': 2,
  'specialist': 1,
  'specif': 1,
  'techniqu': 1,
  'use': 1,
  'veriti': 1,
  'view': 1,
  'way': 1,
  'websit': 1,
  'work': 2,
  'year': 1},
 409: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
  'Digit': None,
  'First': 'V',
  'Last': 'e',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'build': 1,
  'busi': 2,
  'colleg': 1,
  'degre': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'insid': 1,
  'manag': 1,
  'note': 1,
  'outsid': 1,
  'payment_verified': False,
  'phone_verified': False,
  'point': 1,
  'product': 1,
  'profile_complete': True,
  'run': 1,
  'sell': 2,
  'sever': 1,
  'small': 1,
  'stand': 1,
  'technolog': 1,
  'worth': 1,
  'year': 1},
 410: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'm',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'deposit_made': False,
  'effect': 1,
  'effici': 1,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'manner': 1,
  'mba': 1,
  'muhammad': 1,
  'name': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'work': 1},
 411: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(10, 11), match='4'>,
  'First': 'j',
  'Last': '0',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'alway': 1,
  'analyt': 1,
  'commun': 1,
  'databas': 1,
  'deal': 1,
  'deposit_made': False,
  'email_verified': True,
  'excel': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'massiv': 1,
  'masteri': 1,
  'payment_verified': True,
  'phone_verified': True,
  'processingdata': 1,
  'profile_complete': True,
  'provid': 1,
  'respons': 1,
  'skill': 1,
  'stick': 1,
  'strength': 1,
  'time-limit': 1,
  'verbal': 1,
  'written': 1},
 412: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
  'First': 's',
  'Last': '2',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'creativ': 1,
  'deposit_made': True,
  'effect': 1,
  'email_verified': True,
  'facebook_connected': True,
  'field': 1,
  'freelanc': 1,
  'identity_verified': False,
  'interest': 1,
  'keen': 1,
  'look': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'skill': 1,
  'use': 1,
  'work': 1},
 413: {'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'also': 1,
  'compani': 1,
  'convert': 1,
  'custom': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'help': 1,
  'html': 1,
  'identity_verified': False,
  'meet': 1,
  'need': 2,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'programm': 1,
  'psd': 2,
  'servic': 1,
  'sometim': 1,
  'theme': 1,
  'wordpress': 1},
 414: {'15': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': None,
  'First': 'D',
  'Last': 'Z',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'base': 1,
  'clear': 1,
  'cut': 1,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'especi': 1,
  'experi': 1,
  'facebook_connected': False,
  'graphic': 1,
  'great': 1,
  'identity_verified': False,
  'knowledg': 1,
  'logo': 1,
  'new': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'profile_complete': True,
  'rang': 1,
  'signag': 1,
  'work': 1,
  'year': 1,
  'zealand': 1},
 415: {"'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'n',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'abil': 2,
  'accomplish': 1,
  'accuraci': 2,
  'adword': 1,
  'ajax': 1,
  'also': 1,
  'anim': 1,
  'anyth': 1,
  'apart': 1,
  'api': 1,
  'applic': 1,
  'blog': 1,
  'bring': 1,
  'busi': 4,
  'cart': 1,
  'clear': 1,
  'client': 1,
  'combin': 1,
  'commun': 1,
  'conceptu': 1,
  'css2': 1,
  'css3': 1,
  'deadlines.i': 1,
  'deposit_made': False,
  'design': 3,
  'develop': 1,
  'doctrin': 1,
  'domain': 1,
  'done': 1,
  'drupal': 1,
  'e-commerc': 1,
  'email_verified': True,
  'english': 1,
  'etc..': 1,
  'excel': 1,
  'experienc': 1,
  'facebook_connected': False,
  'facilit': 1,
  'flash': 1,
  'forum': 1,
  'framework': 1,
  'function': 2,
  'global': 1,
  'googl': 2,
  'hello': 1,
  'highest': 1,
  'highli': 2,
  'html/xhtml': 1,
  'identity_verified': False,
  'integr': 1,
  'javascript': 1,
  'jira': 1,
  'joomla': 1,
  'jqueri': 1,
  'keep': 1,
  'magento': 1,
  'manag': 1,
  'map': 1,
  'method': 1,
  'model': 1,
  'monitor': 1,
  'mysql': 1,
  'name': 1,
  'need': 1,
  'object': 1,
  'open': 1,
  'oracl': 1,
  'orm': 1,
  'out-of-the-box': 1,
  'payment_verified': False,
  'paypal': 2,
  'peopl': 1,
  'person': 1,
  'phone': 1,
  'phone_verified': False,
  'photoshop': 1,
  'phpbb': 1,
  'possibl': 1,
  'pride': 2,
  'profession': 2,
  'profile_complete': True,
  'project': 1,
  'psd': 1,
  'punctual': 1,
  'registr': 1,
  'relat': 1,
  'satisfact': 1,
  'scalabl': 1,
  'seo': 1,
  'server': 1,
  'set': 1,
  'sever': 1,
  'shop': 1,
  'solut': 2,
  'speak': 1,
  'specialti': 1,
  'strategi': 2,
  'technolog': 1,
  'templat': 1,
  'traffic': 1,
  'transfer': 1,
  'us': 1,
  'usabl': 1,
  'util': 1,
  'utmost': 1,
  'voic': 1,
  'web': 4,
  'websit': 1,
  'wordpress': 1,
  'would': 1,
  'you.i': 1,
  'zend': 1},
 416: {'2': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'x',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'b.': 1,
  'compani': 1,
  'comput': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'engin': 1,
  'experi': 1,
  'experienc': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'intern': 1,
  'istanbul': 1,
  'jsp': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'sql': 1,
  'univers': 1,
  'work': 1,
  'year': 1},
 417: {'21': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'J',
  'Last': '4',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'abil': 1,
  'achiev': 1,
  'adher': 1,
  'allow': 1,
  'applic': 2,
  'assist': 2,
  'busi': 3,
  'challeng': 1,
  'client': 1,
  'commun': 1,
  'complianc': 1,
  'confid': 1,
  'core': 1,
  'corpor': 2,
  'deposit_made': False,
  'develop': 1,
  'directli': 1,
  'director': 1,
  'done': 1,
  'email': 1,
  'email_verified': True,
  'establish': 1,
  'execut': 1,
  'experi': 2,
  'facebook_connected': False,
  'follow': 1,
  'get': 1,
  'goal': 2,
  'handl': 1,
  'help': 1,
  'identity_verified': False,
  'import': 1,
  'knowledg': 1,
  'larg': 1,
  'leav': 1,
  'main': 1,
  'manag': 4,
  'multipl': 1,
  'non-cor': 2,
  'object': 1,
  'offic': 3,
  'oper': 3,
  'organiz': 1,
  'overal': 1,
  'overse': 1,
  'partner': 1,
  'payment_verified': False,
  'phone_verified': False,
  'plan': 1,
  'polici': 1,
  'presid': 2,
  'priorit': 1,
  'problem': 1,
  'procedur': 1,
  'product': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 1,
  'regul': 1,
  'report': 1,
  'resolv': 1,
  'result': 1,
  'simultan': 1,
  'skill': 2,
  'solv': 1,
  'streamlin': 1,
  'system': 1,
  'task': 4,
  'time': 1,
  'transfer': 1,
  'understand': 1,
  'variou': 1,
  'vice': 1,
  'virtual': 1,
  'web-bas': 1,
  'work': 1,
  'year': 1},
 418: {'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'd',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
  'adword': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'googl': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'specialist': 1},
 419: {"'m": 1,
  '10': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'g',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'along': 1,
  'backbonej': 1,
  'backend': 1,
  'css': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'emberj': 1,
  'experi': 3,
  'facebook_connected': True,
  'freelanc': 1,
  'good': 1,
  'html': 1,
  'identity_verified': False,
  'javascript': 2,
  'jqueri': 1,
  'knowledg': 1,
  'librari': 1,
  'look': 1,
  'multipl': 1,
  'nodej': 1,
  'opportun': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'program': 1,
  'python': 1,
  'use': 1,
  'web': 1,
  'year': 1},
 420: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'y',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'consider': 1,
  'cover': 1,
  'creat': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': True,
  'gain': 1,
  'identity_verified': False,
  'independ': 1,
  'letter': 1,
  'ms': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'program': 1,
  'resum': 1,
  'skill': 1,
  'templat': 1,
  'word': 2},
 421: {"'s": 1,
  '10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'y',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'avoid': 1,
  'check': 1,
  'come': 1,
  'complet': 1,
  'deal': 1,
  'deposit_made': True,
  'direct': 1,
  'email_verified': True,
  'facebook_connected': True,
  'find': 1,
  'forward': 1,
  'fraud': 1,
  'frustrat': 1,
  'graphic': 3,
  'hard': 1,
  'hear': 1,
  'hope': 1,
  'identity_verified': True,
  'internet': 1,
  'know': 2,
  'listen': 1,
  'look': 1,
  'minut': 1,
  'much': 1,
  "n't": 1,
  'need': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'point': 1,
  'portfolio': 1,
  'previous': 1,
  'price': 1,
  'process': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'real': 1,
  'reason': 1,
  'reliabl': 1,
  'result': 2,
  'right': 1,
  'say': 1,
  'servic': 2,
  'someon': 1,
  'soon': 1,
  'speak': 1,
  'stuff': 1,
  'sure': 1,
  'talk': 1,
  'thought': 1,
  'time': 1,
  'time-wast': 1,
  'top': 1,
  'tri': 1,
  'use': 1,
  'walk': 1,
  'want': 1,
  'within': 1,
  'would': 1,
  'years.i': 1},
 422: {'5800': 1,
  '7': 1,
  '800': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='7'>,
  'First': 'n',
  'Last': 'h',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
  'client': 1,
  'compani': 1,
  'consum': 1,
  'deposit_made': False,
  'design': 1,
  'dolev': 2,
  'email_verified': True,
  'environ': 1,
  'etc': 1,
  'event': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'graphic': 1,
  'identity_verified': False,
  'last': 1,
  'mac': 1,
  'manag': 1,
  'market': 1,
  'payment_verified': False,
  'pc': 1,
  'pharmaceut': 1,
  'phone_verified': True,
  'prepress': 1,
  'profile_complete': True,
  'relat': 1,
  'right': 1,
  'sinc': 1,
  'unit': 1,
  'work': 3},
 423: {'15': 1,
  '5': 1,
  '9+': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'r',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'app': 2,
  'applic': 1,
  'cross': 1,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'exp': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'io': 1,
  'mobil': 1,
  'payment_verified': False,
  'phone_verified': False,
  'platform': 1,
  'profile_complete': True,
  'year': 1},
 424: {'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'z',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'deposit_made': False,
  'email_verified': True,
  'enjoy': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'like': 2,
  'littl': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'respect': 1,
  'respons': 1,
  'sens': 1,
  'thing': 1,
  'treat': 1,
  'urgent': 1},
 425: {'3+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'n',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'also': 1,
  'applic': 1,
  'base': 1,
  'best': 1,
  'busi': 1,
  'businesses.mi': 1,
  'code': 1,
  'compani': 1,
  'compet': 1,
  'complet': 1,
  'core': 1,
  'css': 1,
  'deliv': 1,
  'deposit_made': True,
  'design': 2,
  'develop': 3,
  'dhtml': 1,
  'eclips': 1,
  'ee': 1,
  'email_verified': True,
  'end-end': 1,
  'enterpris': 1,
  'experi': 2,
  'facebook_connected': False,
  'hibern': 1,
  'hmtl': 1,
  'identity_verified': False,
  'includ': 1,
  'java': 2,
  'jpa': 1,
  'jsf': 1,
  'knowledg': 1,
  'leverag': 1,
  'lie': 1,
  'look': 1,
  'manag': 1,
  'mysql': 1,
  'netbean': 1,
  'new': 1,
  'opportun': 1,
  'payment_verified': True,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'qualiti': 1,
  'rang': 1,
  'site': 1,
  'small': 1,
  'softwar': 1,
  'spring': 1,
  'sql': 1,
  'startup': 1,
  'term': 1,
  'usabl': 1,
  'use': 2,
  'web': 1,
  'websit': 2,
  'wide': 1,
  'year': 1},
 426: {"'m": 1,
  "'ve": 1,
  '7+': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
  'Digit': None,
  'First': 'F',
  'Last': 's',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'adob': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'musician': 1,
  'painter': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photo': 1,
  'photograph': 1,
  'photoshop.i': 1,
  'profile_complete': True,
  'use': 1,
  'well': 1,
  'year': 1},
 427: {"'m": 1,
  '6-7': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
  'First': 'L',
  'Last': 'y',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
  'assembl': 1,
  'c': 2,
  'c++': 1,
  'copenhagen': 1,
  'current': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': True,
  'field': 1,
  'identity_verified': False,
  'languag': 2,
  'past': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'program': 1,
  'softwar': 1,
  'strong': 1,
  'student': 1,
  'talent': 1,
  'univers': 1,
  'use': 1,
  'work': 1,
  'x86': 1,
  'year': 1},
 428: {'19': 2,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': None,
  'First': 'M',
  'Last': 'T',
  'Numchar': 4,
  'Vowel': None,
  'architect': 2,
  'architectur': 1,
  'builder': 1,
  'consult': 2,
  'degre': 1,
  'deposit_made': False,
  'design': 5,
  'detail': 1,
  'draw': 1,
  'email_verified': True,
  'estim': 1,
  'experi': 1,
  'facebook_connected': False,
  'four': 1,
  'identity_verified': False,
  'includ': 1,
  'interior': 2,
  'lanscap': 2,
  'meubel': 2,
  'model': 1,
  'motiv': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pleasant': 1,
  'present': 1,
  'primari': 1,
  'profile_complete': True,
  'receiv': 1,
  'render': 1,
  'secondari': 1,
  'servic': 1,
  'talent': 1,
  'work': 1,
  'year': 3},
 429: {'.net': 2,
  'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'b',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abil': 1,
  'administr': 2,
  'along': 1,
  'arab': 1,
  'benefit': 1,
  'collegi': 1,
  'consid': 1,
  'databas': 1,
  'date': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'english': 1,
  'experi': 1,
  'facebook_connected': True,
  'forward': 1,
  'freelanc': 1,
  'handl': 1,
  'hire': 1,
  'identity_verified': False,
  'independ': 1,
  'interpret': 1,
  'look': 1,
  'owe': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pleas': 1,
  'portfolio': 1,
  'profile_complete': True,
  'project': 3,
  'requir': 1,
  'skill': 1,
  'sound': 1,
  'team': 1,
  'tenur': 1,
  'till': 1,
  'type': 1,
  'uk': 1,
  'work': 2},
 430: {'1': 1,
  '2': 1,
  '3': 1,
  '4': 1,
  '7': 1,
  'Caps': None,
  'Digit': None,
  'First': 'z',
  'Last': 'e',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'achiev': 1,
  'activ': 3,
  'adapt': 1,
  'agent': 5,
  'ajax': 1,
  'algorithm': 1,
  'also': 4,
  'analysi': 1,
  'appli': 3,
  'applianc': 6,
  'applic': 2,
  'approach': 4,
  'assembl': 1,
  'asset': 1,
  'avail': 1,
  'b': 1,
  'base': 5,
  'basic': 1,
  'benefit': 1,
  'bundl': 3,
  'busi': 1,
  'c': 1,
  'captur': 1,
  'challeng': 1,
  'chang': 2,
  'check': 1,
  'cloud': 3,
  'code': 2,
  'collabor': 2,
  'compet': 1,
  'complianc': 1,
  'composit': 1,
  'comput': 1,
  'concept': 1,
  'configur': 4,
  'consist': 1,
  'consumpt': 2,
  'contain': 1,
  'contributor': 2,
  'control': 1,
  'creat': 1,
  'current': 1,
  'custom': 1,
  'cycl': 2,
  'dashboard': 1,
  'db2': 1,
  'deep': 1,
  'defin': 1,
  'depend': 2,
  'deploy': 2,
  'deposit_made': False,
  'design': 4,
  'design3': 1,
  'determin': 1,
  'develop': 2,
  'display': 1,
  'durat': 1,
  'dynam': 1,
  'e': 1,
  'easili': 1,
  'email_verified': True,
  'enabl': 1,
  'engin': 1,
  'environ': 1,
  'etc': 3,
  'execut': 1,
  'experienc': 1,
  'expert': 1,
  'explor': 2,
  'extens': 2,
  'facebook_connected': False,
  'familiar': 5,
  'fashion': 1,
  'final': 1,
  'follow': 2,
  'framework': 10,
  'function': 2,
  'futur': 1,
  'global': 1,
  'good': 1,
  'googl': 1,
  'group\\xe2\\u20ac\\u2122': 1,
  'growth': 1,
  'guarante': 1,
  'ibm': 2,
  'idea': 1,
  'identity_verified': False,
  'implement': 2,
  'individu': 1,
  'initi': 1,
  'innov': 1,
  'insid': 3,
  'interfac': 1,
  'involv': 2,
  'j2ee': 2,
  'java': 1,
  'jdbc': 1,
  'jndi': 1,
  'jsp': 1,
  'key': 2,
  'lab': 1,
  'lead': 2,
  'learn': 1,
  'less': 1,
  'lifecycl': 4,
  'like': 1,
  'live': 1,
  'local': 1,
  'machin': 1,
  'made': 1,
  'major': 1,
  'manag': 15,
  'mani': 1,
  'messag': 1,
  'migrat': 3,
  'model': 5,
  'monitor': 4,
  'multipl': 1,
  'name': 3,
  'new': 1,
  'obtain': 1,
  'offer': 1,
  'old': 1,
  'oo': 1,
  'oper': 1,
  'optim': 3,
  'osgi': 3,
  'paa': 6,
  'packag': 2,
  'pattern': 2,
  'payment_verified': False,
  'perform': 5,
  'phase': 2,
  'phone_verified': False,
  'plan': 1,
  'platform': 1,
  'point': 1,
  'polici': 1,
  'poor': 1,
  'popular': 1,
  'principl': 1,
  'process': 5,
  'product': 14,
  'profile_complete': True,
  'program': 5,
  'project': 7,
  'python': 1,
  'real': 1,
  'real-tim': 1,
  'recogn': 1,
  'reduc': 1,
  'research': 3,
  'resourc': 2,
  'respons': 2,
  'rest': 1,
  'result': 1,
  'role': 2,
  'run': 2,
  'scalabl': 1,
  'scale': 1,
  'seri': 1,
  'servic': 3,
  'set': 1,
  'ship': 1,
  'shorten': 1,
  'simplifi': 2,
  'skill': 2,
  'softwar': 5,
  'solid': 2,
  'solut': 15,
  'specif': 1,
  'stack': 1,
  'state': 2,
  'statu': 1,
  'storag': 1,
  'strong': 1,
  'success': 1,
  'swg': 2,
  'system': 5,
  'take': 1,
  'task': 1,
  'tco': 1,
  'team': 7,
  'technic': 4,
  'technolog': 3,
  'time': 2,
  'togeth': 2,
  'top': 1,
  'topolog': 2,
  'typic': 1,
  'understand': 1,
  'unifi': 1,
  'us': 1,
  'usag': 1,
  'version': 2,
  'view': 1,
  'virtual': 14,
  'vm': 3,
  'way': 1,
  'web': 1,
  'webspher': 1,
  'wide': 1,
  'wire': 2,
  'world': 1,
  'ws-bpel': 2,
  'year': 1},
 431: {'2005': 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'a',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'drupal': 1,
  'email_verified': True,
  'engin': 1,
  'expertis': 1,
  'facebook_connected': False,
  'field': 1,
  'identity_verified': False,
  'lead': 1,
  'like': 1,
  'magento': 1,
  'mnc': 1,
  'mysql': 1,
  'name': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'sharma': 1,
  'sinc': 1,
  'softwar': 1,
  'technolog': 1,
  'web': 1,
  'web-develop': 1,
  'wordpress': 1,
  'work': 2},
 432: {'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True},
 433: {'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'l',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  '\\xe2\\u0153\\xaa': 1,
  '\\xe2\\u20ac\\u201c': 1,
  'achiev': 1,
  'alloc': 1,
  'also': 1,
  'alway': 2,
  'analysi': 2,
  'articl': 1,
  'ask': 1,
  'base': 1,
  'basi': 2,
  'believ': 2,
  'blog': 1,
  'budget': 3,
  'busi': 1,
  'client': 1,
  'client\\xe2\\u20ac\\u2122': 1,
  'collabor': 1,
  'commun': 1,
  'consult': 2,
  'content': 1,
  'copi': 1,
  'copyedit': 1,
  'copywrit': 1,
  'creation': 1,
  'custom': 1,
  'data': 1,
  'deadlin': 1,
  'depend': 1,
  'deposit_made': True,
  'draft': 1,
  'effect': 1,
  'email': 1,
  'email_verified': True,
  'expect': 1,
  'facebook_connected': True,
  'fulli': 1,
  'goal': 2,
  'good': 1,
  'help': 1,
  'hire': 1,
  'honest': 1,
  'identity_verified': False,
  'improv': 1,
  'includ': 1,
  'keep': 1,
  'keyword': 1,
  'lie': 1,
  'love': 1,
  'market': 3,
  'meta': 1,
  "n't": 1,
  'need': 2,
  'offer': 1,
  'onsit': 1,
  'packag': 1,
  'page': 2,
  'path': 1,
  'payment_verified': False,
  'phone_verified': True,
  'prioriti': 1,
  'profile_complete': True,
  'progress': 1,
  'qualiti': 1,
  'question': 1,
  'reason': 1,
  'regular': 1,
  'research': 1,
  'right': 1,
  'sale': 1,
  'seo': 1,
  'servic': 1,
  'set': 1,
  'small': 1,
  'stay': 1,
  'strategi': 1,
  'success': 1,
  'tactic': 1,
  'take': 1,
  'thing': 1,
  'top': 1,
  'toward': 1,
  'truth': 1,
  'type': 1,
  'understand': 1,
  'within': 1,
  'write': 5},
 434: {'9+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'n',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ajax': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'etc': 1,
  'experi': 1,
  'facebook_connected': False,
  'hibern': 1,
  'identity_verified': False,
  'java': 1,
  'javascript': 1,
  'jqueri': 1,
  'jsp': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'spring': 1,
  'strut': 1,
  'web': 1,
  'work': 1,
  'year': 1},
 435: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'e',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'administr': 1,
  'articl': 1,
  'blog': 1,
  'content': 2,
  'corpor': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'land': 1,
  'media': 1,
  'page': 1,
  'payment_verified': False,
  'phone_verified': False,
  'post': 1,
  'profile_complete': True,
  'seo': 1,
  'social': 1},
 436: {"''": 1,
  "'m": 2,
  '2009': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 't',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '``': 1,
  'applic': 1,
  'becam': 1,
  'busi': 1,
  'check': 1,
  'client': 1,
  'could': 1,
  'creat': 1,
  'creativ': 1,
  'current': 1,
  'deposit_made': True,
  'describ': 1,
  'design': 4,
  'develop': 2,
  'digit': 1,
  'email_verified': True,
  'excit': 1,
  'expert': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'front-end': 1,
  'hello': 1,
  'help': 1,
  'identity_verified': False,
  'includ': 1,
  'individu': 1,
  'info': 1,
  'level': 1,
  'love': 1,
  'meaning': 1,
  'medium': 1,
  'mobil': 1,
  'partner': 1,
  'payment_verified': False,
  'phone_verified': True,
  'primari': 1,
  'product': 1,
  'profile.what': 1,
  'profile_complete': True,
  'scienc': 1,
  'set': 1,
  'sinc': 2,
  'skill': 2,
  'small': 1,
  'startup': 1,
  'technolog': 1,
  'thank': 1,
  'think': 2,
  'ui-': 1,
  'websit': 1,
  'wider': 2},
 437: {'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 't',
  'Numchar': 4,
  'Vowel': None,
  'base': 1,
  'commerci': 1,
  'deposit_made': False,
  'editori': 1,
  'email_verified': True,
  'facebook_connected': True,
  'freelanc': 1,
  'identity_verified': False,
  'includ': 1,
  'long': 1,
  'payment_verified': True,
  'phone_verified': True,
  'photo': 1,
  'photograph': 1,
  'photographi': 1,
  'portrait': 1,
  'profile_complete': True,
  'vietnam': 1,
  'work': 1},
 438: {'2007': 1,
  '4': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': None,
  'First': 'P',
  'Last': 'm',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'abil': 1,
  'acquir': 1,
  'acut': 1,
  'almost': 1,
  'also': 2,
  'apart': 1,
  'appli': 1,
  'appreci': 1,
  'appropri': 1,
  'area': 1,
  'around': 1,
  'aspir': 1,
  'assess': 1,
  'australia': 1,
  'back': 2,
  'basi': 1,
  'believ': 1,
  'best': 1,
  'brought': 1,
  'capabl': 1,
  'commun': 2,
  'complet': 1,
  'confid': 1,
  'content': 1,
  'continu': 1,
  'corpor': 1,
  'cours': 1,
  'creation': 1,
  'critic': 1,
  'deadlin': 1,
  'degre': 1,
  'deposit_made': False,
  'dilig': 1,
  'documentari': 1,
  'email_verified': True,
  'employ': 1,
  'english': 1,
  'enrich': 1,
  'entiti': 1,
  'exercis': 1,
  'expect': 1,
  'experi': 2,
  'facebook_connected': False,
  'feel': 1,
  'film-mak': 1,
  'focu': 1,
  'format': 1,
  'found': 1,
  'fund': 1,
  'gener': 2,
  'got': 1,
  'hcl': 1,
  'histor': 1,
  'ibm': 1,
  'ideal': 1,
  'identity_verified': False,
  'impact': 1,
  'impecc': 1,
  'independ': 2,
  'india': 1,
  'indian': 1,
  'industri': 1,
  'initi': 1,
  'intuit': 1,
  'join': 1,
  'keen': 1,
  'languag': 1,
  'latest': 1,
  'least': 1,
  'mainstream': 1,
  'maintain': 1,
  'major': 1,
  'make': 1,
  'mass': 1,
  'master': 2,
  'materi': 1,
  'media': 1,
  'meet': 1,
  'modern': 2,
  'motiv': 1,
  'move': 1,
  "n't": 1,
  'offer': 1,
  'oper': 2,
  'part': 3,
  'payment_verified': False,
  'period': 2,
  'perspect': 1,
  'phone_verified': False,
  'plagiar': 1,
  'platform': 1,
  'play': 1,
  'point': 1,
  'polici': 1,
  'preced': 1,
  'present': 2,
  'profession': 2,
  'profici': 1,
  'profile_complete': True,
  'prolif': 1,
  'prospect': 1,
  'publish': 1,
  'pursu': 1,
  'qualiti': 1,
  'quit': 2,
  'rare': 1,
  'referenc': 1,
  'regular': 1,
  'remuner': 1,
  'research': 1,
  'respect': 1,
  'revolv': 1,
  'scenario': 2,
  'seldom': 1,
  'servic': 1,
  'setup': 1,
  'sinc': 1,
  'skill': 2,
  'standard': 1,
  'style': 1,
  'success': 1,
  'supplement': 1,
  'technolog': 1,
  'text': 1,
  'think': 1,
  'time': 1,
  'transform': 1,
  'understand': 1,
  'urban': 1,
  'usag': 1,
  'variou': 1,
  'wherein': 1,
  'work': 1,
  'would': 2,
  'write': 2,
  'written': 3,
  'year': 2,
  'yet': 1},
 439: {'6': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'f',
  'Last': '0',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'also': 2,
  'apach': 1,
  'app': 1,
  'applic': 1,
  'base': 1,
  'bootstrap': 1,
  'capabl': 2,
  'case': 1,
  'code': 1,
  'codeignit': 1,
  'compani': 1,
  'cordova': 1,
  'cross': 1,
  'css3': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 2,
  'drupal': 1,
  'easili': 1,
  'email_verified': True,
  'everyth': 1,
  'execut': 1,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'fledg': 1,
  'foundat': 1,
  'framework': 1,
  'fulli': 1,
  'handl': 1,
  'hybrid': 1,
  'identity_verified': True,
  'includ': 1,
  'joomla': 1,
  'laravel': 1,
  'last': 1,
  'layout': 1,
  'leader': 1,
  'level': 1,
  'logo': 1,
  'make': 1,
  'manag': 1,
  'medium': 1,
  'mobil': 1,
  'payment_verified': True,
  'phone_verified': True,
  'phonegap': 1,
  'php': 1,
  'platform': 1,
  'profile_complete': True,
  'project': 2,
  'provid': 1,
  'senior': 1,
  'simpl': 1,
  'small': 2,
  'team': 2,
  'twitter': 1,
  'ui': 1,
  'web': 1,
  'websit': 1,
  'wordpress': 1,
  'work': 2,
  'year': 1},
 440: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'c',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'best': 1,
  'choic': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True},
 441: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'r',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'commun': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'good': 1,
  'hard': 1,
  'identity_verified': False,
  'includ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'prove': 1,
  'realli': 1,
  'self': 1,
  'skill': 2,
  'speed': 1,
  'student': 1,
  'type': 1,
  'use': 1,
  'want': 1,
  'worker': 1},
 442: {'37': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='7'>,
  'First': 'a',
  'Last': '8',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'delphi': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'field': 1,
  'identity_verified': False,
  'lot': 2,
  'moham': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'work': 1,
  'year': 2},
 443: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 't',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'admin': 1,
  'assist': 1,
  'best': 1,
  'content': 1,
  'deposit_made': True,
  'design': 1,
  'email_verified': True,
  'everyth': 1,
  'experi': 1,
  'facebook_connected': False,
  'great': 1,
  'handl': 1,
  'identity_verified': False,
  'import': 1,
  'manag': 1,
  'much': 1,
  'payment_verified': False,
  'payrol': 1,
  'phone_verified': False,
  'place': 1,
  'profile_complete': True,
  'qualiti': 1,
  'rang': 1,
  'strive': 1,
  'task': 1,
  'time': 1,
  'virtual': 1,
  'web': 2,
  'write': 1,
  'year': 1},
 444: {'3d': 3,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='5'>,
  'First': 'a',
  'Last': 'n',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'accept': 1,
  'ampl': 1,
  'array': 1,
  'avail': 1,
  'best': 2,
  'challeng': 1,
  'compani': 1,
  'complet': 1,
  'confid': 1,
  'contract': 1,
  'cours': 1,
  'deposit_made': False,
  'design': 7,
  'email_verified': True,
  'experi': 2,
  'facebook_connected': False,
  'field': 1,
  'fit': 1,
  'handl': 1,
  'hire': 2,
  'identity_verified': False,
  'interest': 1,
  'interior': 1,
  'knowledg': 1,
  'look': 1,
  'lot': 1,
  'max': 1,
  'much': 1,
  'new': 1,
  'payment_verified': False,
  'phone_verified': False,
  'posit': 1,
  'practic': 1,
  'profile_complete': True,
  'project': 1,
  'qualif': 1,
  'requir': 2,
  'segment': 1,
  'suit': 1,
  'take': 1,
  'think': 1,
  'today': 1,
  'vast': 1,
  'versatil': 1,
  'well': 2,
  'work': 1},
 445: {'2007': 1,
  'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'r',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ad': 1,
  'android': 1,
  'approach': 1,
  'attain': 1,
  'believ': 1,
  'best': 1,
  'busi': 1,
  'career': 1,
  'centric': 1,
  'cmmi': 1,
  'control': 1,
  'current': 1,
  'deal': 1,
  'dedic': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'disciplin': 1,
  'document': 1,
  'effort': 1,
  'email_verified': True,
  'emphas': 1,
  'extens': 1,
  'facebook_connected': False,
  'futur': 1,
  'get': 1,
  'honesti': 1,
  'identity_verified': False,
  'innov': 1,
  'invest': 1,
  'key': 1,
  'managementmobil': 1,
  'mind': 1,
  'mobil': 1,
  'optimum': 1,
  'output': 1,
  'own': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'platform': 1,
  'process': 1,
  'product': 1,
  'profile_complete': True,
  'respons': 1,
  'softwar': 1,
  'solut': 1,
  'start': 1,
  'svn': 1,
  'team': 1,
  'valu': 1,
  'web': 1,
  'whatev': 1},
 446: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'v',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'also': 1,
  'alway': 1,
  'believ': 1,
  'blog': 1,
  'complet': 1,
  'confid': 1,
  'custom': 1,
  'data': 1,
  'deliveri': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'entri': 1,
  'experienc': 1,
  'facebook_connected': False,
  'get': 1,
  'good': 1,
  'home': 1,
  'identity_verified': False,
  'job': 2,
  'local': 1,
  'make': 1,
  'offic': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'progress': 1,
  'project': 2,
  'provid': 1,
  'qualiti': 2,
  'relax': 1,
  'reli': 1,
  'report': 1,
  'result': 1,
  'satisfact': 2,
  'three': 1,
  'time': 1,
  'togeth': 1,
  'upto': 1,
  'us': 1,
  'web': 1,
  'webmast': 1,
  'work': 2,
  'year': 1},
 447: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'i',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': True,
  'freelanc': 1,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'programm': 1},
 448: {"'ll": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'l',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'also': 1,
  'client': 1,
  'deposit_made': True,
  'email_verified': True,
  'ezinearticl': 1,
  'facebook_connected': False,
  'find': 1,
  'hubpag': 1,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'world': 1,
  'write': 2},
 449: {'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'i',
  'Numchar': 4,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'activ': 1,
  'advanc': 1,
  'also': 1,
  'area': 1,
  'articl': 2,
  'assur': 1,
  'beauti': 1,
  'busi': 2,
  'content': 1,
  'deposit_made': True,
  'disappoint': 1,
  'email_verified': True,
  'facebook_connected': False,
  'fit': 1,
  'follow': 1,
  'good': 1,
  'graduat': 1,
  'helium.com': 1,
  'henc': 1,
  'hi': 1,
  'hr': 1,
  'idea': 1,
  'identity_verified': False,
  'interest': 2,
  'keen': 1,
  'manag': 1,
  'mostli': 1,
  'open': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profess': 1,
  'profile_complete': True,
  'relat': 1,
  'research': 1,
  'self-help': 1,
  'skills.if': 1,
  'topic': 1,
  'varieti': 1,
  'view': 1,
  'want': 1,
  'well': 1,
  'work': 2,
  'write': 2,
  'writer': 1},
 450: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'i',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'autom': 1,
  'c': 1,
  'c++': 1,
  'databas': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'html': 1,
  'identity_verified': False,
  'java': 1,
  'macro': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 1,
  'profession': 1,
  'profile_complete': True,
  'qtp': 1,
  'softwar': 2,
  'test': 1,
  'vba': 1},
 451: {"'m": 2,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'B',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'also': 1,
  'c': 1,
  'comput': 1,
  'deposit_made': True,
  'edit': 1,
  'email_verified': True,
  'facebook_connected': True,
  'good': 1,
  'identity_verified': False,
  'java': 1,
  'offic': 1,
  'payment_verified': True,
  'phone_verified': True,
  'photo': 1,
  'php': 1,
  'profile_complete': True,
  'program': 2,
  'romania': 1,
  'scienc': 1,
  'skill': 1,
  'student': 1,
  'tool': 1,
  'user': 1},
 452: {'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 's',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'close': 1,
  'creativ': 1,
  'deposit_made': False,
  'earn': 1,
  'email_verified': True,
  'extra': 1,
  'facebook_connected': False,
  'help': 1,
  'identity_verified': False,
  'incom': 1,
  'love': 1,
  'payment_verified': False,
  'pend': 1,
  'phone_verified': False,
  'profile_complete': True,
  'task': 1,
  'time': 1,
  'util': 1,
  'write': 1},
 453: {'10': 1,
  '2': 1,
  'Caps': <_sre.SRE_Match object; span=(3, 4), match='S'>,
  'Digit': None,
  'First': 'p',
  'Last': 'R',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(5, 6), match='A'>,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': True,
  'php/mysql': 1,
  'profession': 1,
  'profile_complete': True,
  'scratch': 1,
  'swedish': 1,
  'websit': 1,
  'year': 1},
 454: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 't',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'administr': 1,
  'busi': 3,
  'consult': 1,
  'day': 2,
  'deposit_made': False,
  'email_verified': True,
  'entrepreneur': 1,
  'facebook_connected': False,
  'grow': 1,
  'help': 2,
  'identity_verified': False,
  'need': 1,
  'offer': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'run': 1,
  'servic': 1,
  'small': 1,
  'special': 1,
  'varieti': 1,
  'wide': 1},
 455: {"'re": 2,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'j',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'also': 1,
  'alway': 1,
  'appear': 1,
  'appreci': 1,
  'articl': 1,
  'ask': 1,
  'back': 1,
  'build': 1,
  'busi': 1,
  'comment': 1,
  'complet': 1,
  'confid': 1,
  'cpa': 1,
  'craigslist': 1,
  'data': 1,
  'deposit_made': True,
  'directori': 1,
  'done': 1,
  'email_verified': True,
  'entri': 1,
  'establish': 1,
  'expertis': 1,
  'facebook_connected': True,
  'feedback': 1,
  'field': 1,
  'gener': 1,
  'get': 1,
  'give': 1,
  'happi': 1,
  'identity_verified': False,
  'import': 1,
  'internet': 1,
  'job': 1,
  'last': 1,
  'lead': 1,
  'link': 1,
  'long': 1,
  'main': 1,
  'mani': 1,
  'market': 1,
  'money': 1,
  'much': 1,
  'offpag': 1,
  'onpag': 1,
  'open': 1,
  'opportun': 1,
  'payment_verified': True,
  'perfectli': 1,
  'phone_verified': True,
  'post': 2,
  'profile_complete': True,
  'project': 1,
  'qualiti': 1,
  'question': 1,
  'relationship': 1,
  'seo': 2,
  'servic': 3,
  'situat': 1,
  'sourc': 1,
  'special': 1,
  'submiss': 1,
  'success': 1,
  'term': 1,
  'thank': 1,
  'theme': 1,
  'thousand': 1,
  'us': 2,
  'valuabl': 1,
  'variou': 1,
  'year': 1},
 456: {'20': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
  'Digit': None,
  'First': 'K',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'academ': 1,
  'advic': 1,
  'b.a': 1,
  'background': 1,
  'class': 1,
  'commun': 1,
  'dedic': 1,
  'deposit_made': False,
  'educ': 1,
  'effici': 1,
  'email_verified': True,
  'english': 6,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'first': 1,
  'fluent': 1,
  'form': 1,
  'freelanc': 1,
  'high': 1,
  'husband': 1,
  'identity_verified': False,
  'languag': 2,
  'level': 1,
  'linguist': 1,
  'love': 1,
  'm.a': 2,
  'manag': 1,
  'nativ': 1,
  'organis': 1,
  'payment_verified': False,
  'phone_verified': False,
  'polish': 2,
  'postgradu': 1,
  'profession': 1,
  'proficiency.reli': 1,
  'profile_complete': True,
  'proofread': 1,
  'provid': 2,
  'san': 1,
  'servic': 2,
  'studi': 1,
  'teach': 1,
  'teacher': 1,
  'team': 1,
  'togeth': 1,
  'translat': 3,
  'two': 1,
  'univers': 2,
  'valuabl': 1,
  'warsaw': 2,
  'way': 1,
  'well': 1,
  'written': 1,
  'year': 1},
 457: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'N',
  'Last': 'h',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'softwar': 1},
 458: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'y',
  'Last': '2',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'kindli': 1,
  'know': 1,
  'lead': 2,
  'let': 1,
  'manag': 1,
  'need': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'provid': 1,
  'system': 2,
  'vertic': 1},
 459: {'8': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(11, 12), match='6'>,
  'First': 's',
  'Last': '6',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ajax': 1,
  'analyz': 1,
  'attitud': 1,
  'best': 1,
  'cakephp': 1,
  'codeignit': 1,
  'commun': 1,
  'consist': 1,
  'consult': 1,
  'css': 1,
  'dbm': 1,
  'dedic': 1,
  'deposit_made': False,
  'develop': 1,
  'dhtml': 1,
  'email_verified': True,
  'excel': 1,
  'facebook_connected': False,
  'git': 1,
  'goal': 1,
  'html/xhtml': 1,
  'html5': 1,
  'identity_verified': False,
  'javascript': 1,
  'jqueri': 2,
  'json': 1,
  'last': 1,
  'magento': 1,
  'mssql': 1,
  'mysql': 1,
  'needs.with': 1,
  'oracl': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 2,
  'postgresql': 1,
  'product': 1,
  'profession': 1,
  'profile_complete': True,
  'provid': 2,
  'qualiti': 1,
  'quick': 1,
  'rail': 1,
  'rang': 1,
  'ror': 2,
  'rubi': 1,
  'skill': 1,
  'smarti': 1,
  'solut': 1,
  'svn': 1,
  'tool': 1,
  'tortois': 1,
  'turnaround': 1,
  'use': 1,
  'vss': 1,
  'websit': 1,
  'wide': 1,
  'wordpress': 1,
  'work': 3,
  'xhtml': 1,
  'xml': 1,
  'year': 1,
  'yui': 1,
  'zend': 1},
 460: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'r',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'advanc': 1,
  'analysi': 1,
  'analyt': 1,
  'autom': 3,
  'built': 1,
  'career': 1,
  'client': 4,
  'code': 2,
  'complic': 1,
  'confid': 1,
  'creat': 1,
  'dashboard': 2,
  'decis': 1,
  'deliv': 1,
  'deposit_made': False,
  'effici': 1,
  'email_verified': True,
  'etc': 1,
  'excel': 4,
  'facebook_connected': True,
  'freelanc': 1,
  'gain': 1,
  'global': 1,
  'gradual': 1,
  'help': 1,
  'identity_verified': False,
  'improv': 1,
  'interact': 2,
  'later': 1,
  'like': 1,
  'long': 1,
  'lot': 1,
  'macro': 3,
  'manag': 1,
  'mi': 2,
  'microsoft': 1,
  'model': 1,
  'move': 1,
  'payment_verified': True,
  'phone_verified': False,
  'prepar': 1,
  'process': 1,
  'profile_complete': True,
  'project': 3,
  'provid': 1,
  'qualiti': 1,
  'report': 8,
  'requir': 1,
  'research': 1,
  'result': 1,
  'save': 1,
  'start': 1,
  'support': 1,
  'time': 3,
  'toward': 1,
  'understand': 1,
  'use': 2,
  'variou': 1,
  'vba': 4,
  'web': 1,
  'work': 3,
  'write': 1},
 461: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='8'>,
  'First': 'g',
  'Last': '3',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'also': 1,
  'articl': 1,
  'asia': 1,
  'confid': 1,
  'countri': 1,
  'current': 1,
  'definit': 1,
  'degre': 1,
  'deposit_made': True,
  'design': 1,
  'disappoint': 1,
  'edit': 1,
  'email_verified': True,
  'english': 1,
  'facebook_connected': True,
  'first': 1,
  'freelanc': 1,
  'full': 1,
  'hand': 1,
  'high': 1,
  'identity_verified': False,
  'inform': 1,
  'master': 1,
  'offer': 1,
  'payment_verified': False,
  'phone_verified': False,
  'produc': 1,
  'profile_complete': True,
  'proofread': 1,
  'qualiti': 1,
  'relat': 1,
  'singapor': 1,
  'southeast': 1,
  'specialis': 1,
  'teach': 1,
  'therefor': 1,
  'time': 1,
  'travel': 1,
  'work': 2,
  'write': 1},
 462: {'31': 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'f',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'also': 1,
  'comput': 1,
  'degre': 1,
  'deposit_made': True,
  'document': 1,
  'drive': 1,
  'ecdl': 1,
  'email_verified': True,
  'english': 3,
  'essay': 1,
  'european': 1,
  'experi': 1,
  'facebook_connected': False,
  'fulli': 2,
  'head': 1,
  'honour': 1,
  'identity_verified': False,
  'independ': 1,
  'last': 1,
  'licenc': 1,
  'london': 1,
  'nativ': 1,
  'novel': 1,
  'outsid': 1,
  'pass': 1,
  'payment_verified': False,
  'phone_verified': False,
  'prestigi': 1,
  'profile_complete': True,
  'proofread': 2,
  'qualifi': 2,
  'report': 1,
  'school': 1,
  'seven': 1,
  'speaker': 1,
  'teacher': 1,
  'use': 1,
  'year': 1},
 463: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 's',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='A'>,
  'alway': 1,
  'best': 1,
  'deliv': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'friendli': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'qualiti': 1,
  'respons': 1,
  'worker': 1},
 464: {'...': 4,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': None,
  'First': 'M',
  'Last': 'd',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'also': 1,
  'coral': 1,
  'data': 1,
  'deposit_made': False,
  'design': 2,
  'draw': 1,
  'earn': 1,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': False,
  'farm': 1,
  'good': 1,
  'home': 1,
  'identity_verified': False,
  'illustr': 1,
  'know': 1,
  'local': 1,
  'lot': 1,
  'member': 1,
  'money': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'profile_complete': True,
  'relev': 1,
  'sector': 1,
  'seo': 1,
  'target': 1,
  'town': 1,
  'web': 1,
  'work': 2,
  'worker': 1},
 465: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'analysi': 1,
  'assur': 1,
  'attent': 1,
  'auditor': 3,
  'australian': 1,
  'catalogu': 1,
  'certainli': 1,
  'chart': 1,
  'compani': 1,
  'coordin': 1,
  'data': 2,
  'deposit_made': False,
  'design': 1,
  'detail': 1,
  'email_verified': True,
  'engin': 1,
  'especi': 1,
  'evalu': 1,
  'expect': 1,
  'experi': 1,
  'extens': 1,
  'facebook_connected': False,
  'give': 1,
  'good': 2,
  'graph': 1,
  'identity_verified': False,
  'includ': 1,
  'interpret': 1,
  'limit': 1,
  'long-term': 1,
  'major': 1,
  'manag': 2,
  'mani': 1,
  'mine': 1,
  'observ': 1,
  'oper': 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'point': 1,
  'post': 1,
  'precis': 1,
  'prepar': 1,
  'profile_complete': True,
  'project': 1,
  'proof-read': 1,
  'qm': 1,
  'qualif': 1,
  'qualit': 1,
  'qualiti': 2,
  'quantit': 1,
  'questionnair': 1,
  'report': 3,
  'respons': 1,
  'skill': 1,
  'store': 1,
  'strongest': 1,
  'system': 1,
  'task': 1,
  'train': 1,
  'well-reput': 1,
  'work': 3,
  'write': 2,
  'year': 1},
 466: {"'m": 1,
  '10.': 1,
  '2': 1,
  'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'h',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'adob': 1,
  'anim': 1,
  'asp.net': 1,
  'bachelor': 1,
  'c': 1,
  'comput': 1,
  'degre': 1,
  'deposit_made': True,
  'electr': 1,
  'email_verified': True,
  'engin': 2,
  'enrol': 1,
  'facebook_connected': False,
  'faculti': 1,
  'high': 4,
  'identity_verified': False,
  'im': 1,
  'inform': 1,
  'informat': 1,
  'knowledg': 10,
  'littl': 1,
  'master': 1,
  'maya': 1,
  'medium': 5,
  'model': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'skopj': 1,
  'softwar': 1,
  'studi': 1,
  'technolog': 1,
  'web': 1,
  'wpf': 1},
 467: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='6'>,
  'First': 'g',
  'Last': '3',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'accept': 1,
  'ampl': 1,
  'array': 1,
  'avail': 1,
  'challeng': 1,
  'confid': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'entri': 1,
  'excel': 1,
  'experi': 2,
  'facebook_connected': True,
  'field': 1,
  'fit': 1,
  'handl': 1,
  'hire': 1,
  'identity_verified': False,
  'knowledg': 1,
  'lot': 1,
  'much': 1,
  'new': 1,
  'payment_verified': True,
  'phone_verified': True,
  'practic': 1,
  'profile_complete': True,
  'project': 1,
  'requir': 2,
  'segment': 1,
  'today': 1,
  'vast': 1,
  'versatil': 1,
  'well': 2,
  'work': 1,
  'worker': 1},
 468: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'abl': 1,
  'adob': 3,
  'compani': 1,
  'corel': 1,
  'creat': 1,
  'deposit_made': False,
  'design': 1,
  'draw': 1,
  'email_verified': True,
  'facebook_connected': False,
  'firm': 1,
  'get': 1,
  'good': 1,
  'grant': 1,
  'graphic': 1,
  'identity_verified': False,
  'ilustr': 1,
  'indesign': 1,
  'know': 1,
  'logotyp': 1,
  'order': 1,
  'packag': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'print': 1,
  'product': 1,
  'profile_complete': True,
  'program': 1,
  'qualiti': 1,
  'result': 1,
  'shortest': 1,
  'style': 1,
  'time': 1,
  'want': 1,
  'work': 2},
 469: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'r',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'advertis': 1,
  'agenc': 1,
  'brand': 2,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'find': 1,
  'get': 1,
  'help': 2,
  'hi': 1,
  'identity_verified': False,
  'like': 1,
  'love': 1,
  'name': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'run': 1,
  'sydney': 1,
  'touch': 1,
  'work': 1,
  'would': 1},
 470: {"'s": 1,
  '.i': 1,
  '20': 1,
  '2d': 1,
  '3rd': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'a',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'comput': 2,
  'current': 1,
  'degre': 1,
  'deposit_made': False,
  'design': 1,
  'dreamweav': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'good': 1,
  'graphic': 2,
  'handl': 1,
  'identity_verified': False,
  'internet': 2,
  'knowledg': 1,
  'lanka': 1,
  'ms': 1,
  'network': 1,
  'offic': 1,
  'oper': 1,
  'packag': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'plat': 1,
  'previou': 1,
  'profile_complete': True,
  'relat': 2,
  'research': 1,
  'sri': 1,
  'studi': 1,
  'system': 1,
  'thing': 1,
  'visual': 1,
  'work': 1,
  'year': 1},
 471: {'10': 1,
  '2005': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'e',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'area': 1,
  'articl': 1,
  'content': 1,
  'deposit_made': False,
  'develop': 1,
  'dreamweav': 1,
  'email_verified': True,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'firework': 1,
  'flash': 1,
  'identity_verified': False,
  'keyword': 1,
  'market': 1,
  'ms': 1,
  'mx': 3,
  'network': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'program': 1,
  'research': 1,
  'resum': 1,
  'seo': 1,
  'server': 1,
  'sql': 1,
  'suit': 1,
  'technic': 2,
  'technolog': 1,
  'vba': 1,
  'write': 5,
  'year': 1},
 472: {'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'l',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'also': 2,
  'ampl': 1,
  'area': 1,
  'benefit': 1,
  'best': 1,
  'classifi': 2,
  'compani': 1,
  'copywrit': 4,
  'custom': 1,
  'data': 2,
  'deliv': 1,
  'deposit_made': False,
  'email_verified': True,
  'employ': 2,
  'entri': 1,
  'execut': 1,
  'experi': 2,
  'experienc': 1,
  'expert': 2,
  'facebook_connected': False,
  'field': 1,
  'global': 1,
  'hire': 1,
  'identity_verified': False,
  'knowledg': 1,
  'numer': 1,
  'payment_verified': False,
  'phone_verified': False,
  'post': 2,
  'process': 1,
  'profile_complete': True,
  'skil': 1,
  'skill': 1,
  'sound': 1,
  'support': 1,
  'today': 1,
  'work': 2,
  'year': 1},
 473: {'100+': 1,
  '8': 2,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 't',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ad': 1,
  'also': 1,
  'banner': 2,
  'bootstrap': 1,
  'bsc': 1,
  'busi': 1,
  'client': 1,
  'complet': 1,
  'custom': 1,
  'deposit_made': False,
  'design': 5,
  'develop': 1,
  'educ': 1,
  'email': 1,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'flayer': 1,
  'foundat': 1,
  'front-end': 1,
  'graphic': 4,
  'gui': 1,
  'hon': 1,
  'html/css': 1,
  'html/html5': 1,
  'identity_verified': False,
  'illustr': 1,
  'inform': 1,
  'interfac': 1,
  'javascript': 1,
  'joomla': 1,
  'jqueri': 1,
  'land': 1,
  'last': 2,
  'latest': 1,
  'layout': 2,
  'logo': 1,
  'mani': 1,
  'materi': 1,
  'navig': 1,
  'newslett': 1,
  'offer': 1,
  'overview': 1,
  'page': 2,
  'payment_verified': True,
  'phone_verified': True,
  'photoshop': 1,
  'profile_complete': True,
  'psd': 2,
  'respons': 2,
  'set': 1,
  'technolog': 2,
  'tool': 1,
  'univers': 1,
  'user': 1,
  'visual': 1,
  'web': 3,
  'websit': 2,
  'wordpress': 1,
  'work': 1,
  'x': 1,
  'year': 1,
  'years+': 1,
  'zurb': 1},
 474: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'r',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'applic': 1,
  'css': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'javascript': 1,
  'latest': 1,
  'modern': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'semant': 1,
  'standard': 1,
  'websit': 1,
  'xhtml': 1},
 475: {'...': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'e',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='u'>,
  'among': 1,
  'articl': 1,
  'assist': 3,
  'call': 1,
  'content': 1,
  'copi': 1,
  'creation': 1,
  'data': 1,
  'deposit_made': False,
  'edit': 1,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': True,
  'featur': 1,
  'identity_verified': False,
  'incom': 1,
  'ip': 1,
  'like': 1,
  'market': 1,
  'meta': 1,
  'other': 1,
  'payment_verified': False,
  'pbx': 1,
  'phone': 1,
  'phone_verified': False,
  'profile_complete': True,
  'provid': 3,
  'research': 1,
  'seo': 1,
  'set': 1,
  'simultan': 1,
  'technic': 1,
  'voip': 1,
  'write': 1},
 476: {'18': 1,
  '360': 1,
  '43': 1,
  'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'm',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'age': 1,
  'anim': 1,
  'art': 1,
  'compositor': 1,
  'custom': 1,
  'degre': 1,
  'deposit_made': True,
  'design': 3,
  'director': 1,
  'editor': 1,
  'email_verified': True,
  'experi': 3,
  'facebook_connected': False,
  'fine': 1,
  'graphic': 1,
  'identity_verified': False,
  'industri': 1,
  'knowledg': 1,
  'master': 1,
  'model': 1,
  'multimedia': 1,
  'non': 1,
  'panorama': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photographi': 1,
  'post': 1,
  'product': 2,
  'profile_complete': True,
  'special': 1,
  'specialti': 1,
  'vast': 1,
  'vr': 1,
  'websit': 1,
  'year': 1},
 477: {'Caps': None,
  'Digit': None,
  'First': 'z',
  'Last': 'i',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1},
 478: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'a',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'answer': 1,
  'ask': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'name': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'question': 1},
 479: {'24': 1,
  'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'r',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  'avail': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'fire': 1,
  'full': 1,
  'identity_verified': False,
  'jamaica': 1,
  'job': 1,
  'male': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'seek': 1,
  'time': 1},
 480: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'n',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'trainer': 1},
 481: {"'m": 2,
  "'s": 1,
  "'ve": 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'action': 1,
  'addit': 1,
  'afford': 1,
  'articl': 1,
  'assign': 1,
  'assur': 1,
  'away': 1,
  'believ': 2,
  'besid': 1,
  'best': 1,
  'better': 1,
  'busi': 2,
  'career': 1,
  'chase': 1,
  'client': 3,
  'come': 1,
  'commit': 1,
  'complet': 1,
  'compos': 1,
  'compromis': 1,
  'content': 1,
  'creat': 1,
  'cut': 1,
  'degre': 1,
  'deliv': 1,
  'depend': 1,
  'deposit_made': True,
  'devot': 1,
  'email_verified': True,
  'employ': 1,
  'environ': 1,
  'essay': 1,
  'everi': 3,
  'excit': 1,
  'experienc': 1,
  'explor': 2,
  'facebook_connected': False,
  'firmli': 1,
  'follow': 1,
  'fulfil': 1,
  'goal': 1,
  'good': 2,
  'hard': 1,
  'hardwork': 2,
  'high': 2,
  'high-qual': 1,
  'highli': 1,
  'hold': 1,
  'hope': 1,
  'identity_verified': True,
  'imran': 1,
  'includ': 1,
  'increas': 1,
  'keep': 1,
  'key': 1,
  'level': 1,
  'look': 2,
  'make': 2,
  'matter': 1,
  'matters.i': 1,
  'mba': 1,
  'need': 1,
  'offer': 1,
  'payment_verified': True,
  'phone_verified': True,
  'place': 1,
  'pleasur': 1,
  'potenti': 1,
  'price': 1,
  'profess': 1,
  'profession': 1,
  'profile_complete': True,
  'profit': 1,
  'provid': 2,
  'punctual': 1,
  'qualiti': 4,
  'reason': 1,
  'report': 1,
  'reput': 1,
  'resourc': 1,
  'respons': 1,
  'result': 1,
  'review': 1,
  'right': 2,
  'run': 1,
  'satisfact': 2,
  'satisfi': 1,
  'seek': 2,
  'servic': 2,
  'services.i': 1,
  'sincer': 1,
  'skill': 1,
  'someon': 1,
  'sort': 1,
  'speak': 1,
  'standard': 1,
  'start': 1,
  'success': 2,
  'talent': 1,
  'task': 2,
  'thing': 1,
  'time': 2,
  'topic': 1,
  'train': 1,
  'tri': 1,
  'univers': 1,
  'want': 2,
  'wish': 1,
  'work': 5,
  'worker': 1,
  'worldwid': 1,
  'write': 4},
 482: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
  'First': 'h',
  'Last': '3',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'work': 1},
 483: {'Caps': <_sre.SRE_Match object; span=(1, 2), match='S'>,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='4'>,
  'First': 'e',
  'Last': 'u',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'bpo': 1,
  'call': 1,
  'citi': 1,
  'custom': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'heart': 1,
  'identity_verified': False,
  'india': 1,
  'locat': 1,
  'mumbai': 1,
  'offer': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'support': 1,
  'work': 1},
 484: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='Z'>,
  'Digit': None,
  'First': 'Z',
  'Last': 'l',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'famili': 1,
  'father': 1,
  'husband': 1,
  'identity_verified': False,
  'love': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'program': 1},
 485: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'i',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'deposit_made': True,
  'design': 1,
  'email_verified': True,
  'facebook_connected': True,
  'graphic': 1,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'web': 1},
 486: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'a',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'allow': 1,
  'assur': 1,
  'banner': 1,
  'base': 1,
  'becom': 1,
  'busi': 1,
  'cart': 1,
  'cm': 1,
  'content': 1,
  'coordin': 1,
  'coverag': 1,
  'css': 1,
  'date': 1,
  'deposit_made': False,
  'design': 3,
  'dhtml': 1,
  'discuss': 1,
  'dreamweav': 1,
  'editplu': 1,
  'email_verified': True,
  'english': 1,
  'etc.if': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'flash': 2,
  'flexibl': 1,
  'forward': 1,
  'gone': 1,
  'group': 1,
  'hello': 1,
  'hindi': 1,
  'hour': 2,
  'html': 1,
  'identity_verified': False,
  'india': 1,
  'inform': 1,
  'integr': 1,
  'interest': 1,
  'interview': 1,
  'know.i': 1,
  'lamp': 2,
  'languag': 1,
  'let': 1,
  'logo': 1,
  'look': 1,
  'member': 1,
  'ms-access': 1,
  'mysql': 1,
  'mysqli': 1,
  'name': 1,
  'need': 1,
  'northern': 1,
  'opportun': 1,
  'part': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'php': 1,
  'pleas': 1,
  'present': 1,
  'profile_complete': True,
  'project': 2,
  'provid': 1,
  'punjabi': 1,
  'qualiti': 1,
  'regular': 1,
  'relat': 1,
  'requir': 1,
  'seo': 1,
  'servic': 1,
  'sever': 1,
  'shop': 1,
  'site': 1,
  'special': 1,
  'sql': 1,
  'team': 2,
  'technolog': 1,
  'time': 1,
  'us': 1,
  'variou': 1,
  'wamp': 2,
  'web': 1,
  'websit': 1,
  'whichev': 1,
  'work': 3,
  'year': 1},
 487: {"'ve": 1,
  '100': 1,
  'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 's',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
  'also': 1,
  'alway': 1,
  'beat': 1,
  'busi': 1,
  'choic': 1,
  'clear': 1,
  'client': 4,
  'compani': 1,
  'content': 2,
  'deposit_made': True,
  'design': 1,
  'ebook': 5,
  'edit': 1,
  'email_verified': True,
  'ensur': 1,
  'facebook_connected': True,
  'fresh': 1,
  'hard': 1,
  'help': 1,
  'idea': 1,
  'ideal': 1,
  'identity_verified': True,
  'import': 1,
  'like': 1,
  'look': 1,
  'mind': 1,
  'new': 1,
  'offer': 1,
  'payment_verified': True,
  'person': 1,
  'peter': 1,
  'phone_verified': True,
  'produc': 1,
  'profile_complete': True,
  'project': 1,
  'promot': 1,
  'provid': 1,
  'rate': 1,
  'recognis': 1,
  'request': 1,
  'revis': 1,
  'satisfact': 1,
  'servic': 1,
  'specialis': 1,
  'start': 1,
  'style': 1,
  'talk': 1,
  'today': 1,
  'upon': 1,
  'want': 1,
  'web': 1,
  'webpag': 1,
  'websit': 1,
  'whether': 1,
  'work': 1,
  'world.i': 1,
  'write': 2,
  'write.i': 1,
  'written': 1},
 488: {"'ll": 1,
  '200': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'alreadi': 1,
  'also': 1,
  'basecamp': 1,
  'best': 1,
  'deposit_made': True,
  'email_verified': True,
  'expert': 3,
  'facebook_connected': False,
  'handl': 1,
  'help': 1,
  'identity_verified': False,
  'lastli': 1,
  'lot': 1,
  'manag': 1,
  'money': 1,
  'payment_verified': True,
  'phone_verified': True,
  'plesk': 1,
  'profile_complete': True,
  'project': 2,
  'provid': 1,
  'quick': 1,
  'save': 1,
  'setup': 1,
  'suggest': 1,
  'take': 1,
  'thank': 1,
  'time': 1,
  'websit': 2,
  'whm': 1,
  'wordpress': 4},
 489: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
  'Digit': None,
  'First': 'K',
  'Last': 'y',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'age': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'student': 1},
 490: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'a',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(5, 6), match='i'>,
  'china': 1,
  'dc': 1,
  'deposit_made': False,
  'develop': 1,
  'educ': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'hospit': 2,
  'identity_verified': False,
  'india': 1,
  'manufactur': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'provid': 1,
  'servic': 1,
  'softwar': 1,
  'variou': 1,
  'work': 1,
  'year': 1},
 491: {'10+': 1,
  '20': 1,
  '20+': 1,
  '500+': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
  'Digit': None,
  'First': 'N',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'also': 1,
  'american': 1,
  'among': 1,
  'base': 1,
  'competit': 1,
  'contribut': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'html/css/javascript': 1,
  'identity_verified': False,
  'java': 1,
  'multipl': 1,
  'open': 1,
  'over': 1,
  'part-tim': 1,
  'particip': 1,
  'payment_verified': True,
  'phone_verified': True,
  'place': 1,
  'profile_complete': True,
  'program': 1,
  'project': 1,
  'request': 1,
  'screen': 1,
  'sourc': 1,
  'technolog': 1,
  'translat': 2,
  'voic': 1,
  'web': 1,
  'write': 1,
  'writer': 1,
  'year': 2},
 492: {'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'u',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'optimist': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True},
 493: {'.final': 1,
  '6.0': 1,
  'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '\\xe2\\u20ac\\u201c': 2,
  'addit': 1,
  'aspect': 1,
  'associ': 1,
  'basic': 1,
  'bit': 1,
  'build': 1,
  'code': 1,
  'coder': 1,
  'compens': 1,
  'complex': 1,
  'cost': 1,
  'depend': 1,
  'deposit_made': True,
  'develop': 2,
  'differ': 1,
  'directli': 1,
  'email_verified': True,
  'experienc': 1,
  'facebook_connected': True,
  'flash': 1,
  'follow': 1,
  'give': 1,
  'goal': 1,
  'high': 1,
  'hire': 1,
  'identity_verified': False,
  'industri': 1,
  'instal': 1,
  'know': 1,
  'languag': 1,
  'level': 1,
  'low': 2,
  'major': 1,
  'manag': 3,
  'mani': 2,
  'may': 3,
  'obvious': 1,
  'payment_verified': True,
  'peopl': 1,
  'person': 1,
  'phone_verified': True,
  'photoshop': 1,
  'price': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 3,
  'ratio': 1,
  'respons': 1,
  'scope': 1,
  'singl': 2,
  'softwar': 4,
  'sometim': 2,
  'specialist': 1,
  'success': 1,
  'team': 2,
  'tester': 2,
  'tier': 1,
  'visual': 2,
  'way': 1,
  'well-experienc': 1},
 494: {'2010': 1,
  '2013': 1,
  '365': 1,
  '6+': 1,
  '8+': 1,
  'Caps': <_sre.SRE_Match object; span=(12, 13), match='I'>,
  'Digit': None,
  'First': 'e',
  'Last': 'T',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'consult': 1,
  'custom': 1,
  'deposit_made': False,
  'email_verified': True,
  'exp': 1,
  'facebook_connected': False,
  'forward': 1,
  'full-tim': 1,
  'good': 1,
  'hi': 1,
  'identity_verified': False,
  'includ': 1,
  'last': 1,
  'look': 1,
  'moss': 1,
  'offic': 1,
  'overal': 1,
  'payment_verified': False,
  'phone_verified': True,
  'plugin': 1,
  'presenc': 1,
  'profile_complete': True,
  'report': 1,
  'sharepoint': 3,
  'sinc': 1,
  'work': 3,
  'wss': 1,
  'year': 2},
 495: {'5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='8'>,
  'First': 'e',
  'Last': '4',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'analyst': 1,
  'current': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'foreign': 1,
  'identity_verified': False,
  'industri': 2,
  'ministri': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'programm': 1,
  'qualifi': 1,
  'system': 1,
  'trade': 1,
  'work': 2,
  'year': 1},
 496: {'6+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'm',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'accompani': 1,
  'alway': 1,
  'anim': 1,
  'art': 1,
  'aspect': 1,
  'base': 1,
  'basi': 1,
  'bfa': 1,
  'broad': 1,
  'career': 1,
  'chicago': 1,
  'collabor': 1,
  'commun': 1,
  'confid': 1,
  'coordin': 1,
  'creativ': 2,
  'deposit_made': False,
  'design': 7,
  'earn': 1,
  'edit': 1,
  'email_verified': True,
  'encompass': 1,
  'enhanc': 1,
  'ethic': 1,
  'everyth': 1,
  'excel': 1,
  'experi': 3,
  'facebook_connected': False,
  'freelanc': 1,
  'full-tim': 1,
  'graphic': 3,
  'great': 1,
  'identity_verified': False,
  'individu': 1,
  'institut': 1,
  'layout': 1,
  'leadership': 1,
  'learn': 2,
  'logo': 1,
  'major': 1,
  'new': 2,
  'organiz': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photo': 1,
  'product': 1,
  'profession': 1,
  'profile_complete': True,
  'rate': 1,
  'requir': 1,
  'role': 3,
  'school': 1,
  'sever': 1,
  'skill': 5,
  'span': 1,
  'spectrum': 1,
  'start': 1,
  'strengthen': 1,
  'strong': 2,
  'technic': 1,
  'thing': 1,
  'understand': 1,
  'whenev': 1,
  'will': 1,
  'work': 4,
  'year': 1},
 497: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
  'Digit': None,
  'First': 'F',
  'Last': 'K',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abil': 1,
  'academ': 1,
  'alway': 1,
  'assign': 1,
  'cite': 1,
  'deposit_made': True,
  'dissert': 1,
  'email_verified': True,
  'excel': 2,
  'facebook_connected': True,
  'fresh': 1,
  'identity_verified': False,
  'includ': 1,
  'level': 1,
  'look': 1,
  'master': 1,
  'mind': 1,
  'orient': 1,
  'payment_verified': True,
  'phd': 1,
  'phone_verified': True,
  'profile_complete': True,
  'research': 3,
  'thesi': 1,
  'write': 1},
 498: {'1.': 1,
  '10': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
  'First': 'S',
  'Last': '7',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'comput': 1,
  'deliv': 1,
  'deposit_made': False,
  'designing4': 1,
  'email_verified': True,
  'experienc': 1,
  'facebook_connected': False,
  'html': 1,
  'identity_verified': False,
  'old': 1,
  'onlin': 3,
  'organ': 1,
  'particularli': 1,
  'payment_verified': False,
  'phone_verified': False,
  'planet': 1,
  'profile_complete': True,
  'servic': 2,
  'softwar': 1,
  'websit': 1,
  'year': 1},
 499: {'11': 1,
  '12': 1,
  '1989': 1,
  '1994': 1,
  '1997': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(2, 3), match='1'>,
  'First': 's',
  'Last': '1',
  'Numchar': 5,
  'Vowel': None,
  'abus': 1,
  'administr': 5,
  'adob': 4,
  'advertis': 3,
  'agenc': 1,
  'airport': 1,
  'along': 2,
  'annual': 1,
  'applic': 2,
  'area': 1,
  'around': 1,
  'art': 1,
  'articl': 1,
  'artist': 6,
  'associ': 2,
  'attend': 2,
  'badg': 1,
  'baltimor': 1,
  'bid': 1,
  'board': 1,
  'book': 5,
  'booklet': 1,
  'booth': 1,
  'bought': 1,
  'bring': 1,
  'brochur': 2,
  'brought': 2,
  'budget': 1,
  'bug': 1,
  'busi': 2,
  'call': 1,
  'camera': 3,
  'campaign': 1,
  'campu': 3,
  'card': 2,
  'catalog': 5,
  'central': 1,
  'chang': 1,
  'chapter': 1,
  'class': 1,
  'classifi': 1,
  'clientel': 1,
  'cohes': 2,
  'collect': 1,
  'color': 2,
  'committe': 1,
  'commun': 3,
  'compani': 5,
  'comparison': 2,
  'complet': 1,
  'comput': 5,
  'conferenc': 1,
  'consider': 1,
  'consist': 1,
  'constraint': 1,
  'content': 1,
  'continu': 3,
  'contract': 1,
  'convent': 1,
  'convers': 2,
  'convert': 1,
  'coordin': 1,
  'copi': 2,
  'copywrit': 1,
  'corpor': 3,
  'correct': 3,
  'cost': 1,
  'cream': 1,
  'creat': 1,
  'creativ': 6,
  'crime': 3,
  'custom': 3,
  'data': 1,
  'databas': 3,
  'de': 3,
  'deadlin': 3,
  'delawar': 4,
  'depart': 4,
  'deposit_made': True,
  'design': 17,
  'diagnos': 1,
  'direct': 4,
  'director': 5,
  'display': 3,
  'diversifi': 1,
  'document': 1,
  'drive': 1,
  'edit': 6,
  'editor': 2,
  'educ': 4,
  'elderli': 1,
  'email_verified': True,
  'employe': 3,
  'equip': 3,
  'event': 2,
  'execut': 2,
  'facebook_connected': False,
  'facet': 1,
  'featur': 1,
  'file': 6,
  'final': 4,
  'fine': 1,
  'florida': 1,
  'flyer': 1,
  'food': 3,
  'freelanc': 2,
  'get': 1,
  'graphic': 9,
  'guid': 1,
  'handbook': 1,
  'help': 1,
  'high-end': 1,
  'home': 1,
  'hospit': 1,
  'hous': 1,
  'ice': 1,
  'idea': 1,
  'ident': 2,
  'identity_verified': False,
  'illustr': 5,
  'in-hous': 1,
  'inc.': 2,
  'includ': 2,
  'increas': 1,
  'industri': 3,
  'inform': 2,
  'insert': 1,
  'intern': 1,
  'internet': 1,
  'interv': 1,
  'involv': 2,
  'issu': 1,
  'job': 1,
  'journalist': 2,
  'label': 1,
  'later': 1,
  'layout': 1,
  'leagu': 1,
  'liais': 1,
  'liaison': 3,
  'link': 1,
  'littl': 1,
  'local': 1,
  'logo': 2,
  'mail': 4,
  'maintain': 2,
  'make': 1,
  'manag': 3,
  'map': 1,
  'mark': 2,
  'maryland': 3,
  'materi': 11,
  'mdart': 2,
  'mdproduct': 2,
  'media': 3,
  'medic': 1,
  'meet': 2,
  'membership': 2,
  'microsoft': 2,
  'minut': 1,
  'month': 1,
  'monthli': 2,
  'name': 1,
  'necessari': 1,
  'need': 2,
  'network': 1,
  'new': 3,
  'news': 2,
  'newslett': 1,
  'newspap': 3,
  'non-profit': 1,
  'nurs': 4,
  'offic': 5,
  'oper': 1,
  'order': 1,
  'organ': 1,
  'orient': 1,
  'osha': 2,
  'other': 1,
  'outsid': 3,
  'overse': 2,
  'owner': 1,
  'ownership': 1,
  'pagemak': 2,
  'pamphlet': 1,
  'parent': 1,
  'past': 2,
  'payment_verified': False,
  'perform': 2,
  'personnel': 2,
  'phone': 1,
  'phone_verified': False,
  'photograph': 1,
  'photographi': 2,
  'photoshop': 2,
  'plan': 6,
  'plate': 1,
  'point-of-purchas': 3,
  'popular': 1,
  'pre-press': 2,
  'present': 1,
  'press': 5,
  'price': 2,
  'print': 7,
  'printer': 3,
  'prioriti': 1,
  'problem': 1,
  'process': 2,
  'produc': 1,
  'product': 13,
  'profession': 1,
  'profile_complete': True,
  'program': 4,
  'project': 1,
  'proof': 3,
  'proofread': 3,
  'prospect': 1,
  'public': 2,
  'qualiti': 1,
  'quark': 1,
  'quarkxpress': 3,
  'question': 1,
  'read': 3,
  'relat': 1,
  'report': 1,
  'reproduct': 1,
  'requir': 1,
  'run': 3,
  'safeti': 1,
  'sale': 4,
  'schedul': 4,
  'scout': 1,
  'seminar': 3,
  'separ': 1,
  'seriou': 1,
  'servic': 2,
  'session': 1,
  'set': 1,
  'sever': 1,
  'sexual': 1,
  'shack': 1,
  'shop': 1,
  'sign': 1,
  'small': 2,
  'softwar': 6,
  'sort': 1,
  'southwest': 1,
  'speaker': 1,
  'special': 1,
  'staff': 2,
  'storag': 1,
  'stori': 1,
  'student': 5,
  'suppli': 1,
  'taylor': 2,
  'technic': 1,
  'temporari': 3,
  'tight': 5,
  'time': 5,
  'tree': 1,
  'tri': 2,
  'type': 12,
  'use': 3,
  'varieti': 1,
  'violent': 2,
  'washington': 1,
  'webpag': 1,
  'week': 1,
  'weekli': 1,
  'well': 1,
  'within': 2,
  'word': 2,
  'work': 15,
  'workbook': 1,
  'write': 1,
  'xpress': 1},
 500: {'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'l',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'b.a': 1,
  'commun': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 2,
  'facebook_connected': False,
  'identity_verified': False,
  'imag': 1,
  'institut': 1,
  'master': 1,
  'payment_verified': False,
  'phone_verified': True,
  'plan': 1,
  'profile_complete': True,
  'resourc': 1,
  'year': 2},
 501: {'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'r',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'abl': 1,
  'academ': 1,
  'ad': 1,
  'also': 1,
  'assist': 1,
  'background': 1,
  'career': 2,
  'client': 2,
  'commerci': 1,
  'commun': 1,
  'compani': 1,
  'content': 1,
  'copi': 1,
  'corpor': 1,
  'creat': 1,
  'curriculum': 1,
  'deposit_made': False,
  'develop': 1,
  'draft': 1,
  'educ': 1,
  'effici': 1,
  'email_verified': True,
  'execut': 1,
  'experi': 1,
  'extens': 1,
  'facebook_connected': False,
  'form': 1,
  'higher': 1,
  'holder': 1,
  'identity_verified': False,
  'includ': 2,
  'increas': 1,
  'industri': 1,
  'k-12': 1,
  'letter': 2,
  'materi': 1,
  'measur': 1,
  'mid-level': 1,
  'ms.': 2,
  'paper': 1,
  'payment_verified': False,
  'person': 2,
  'phone_verified': False,
  'polish': 1,
  'posit': 1,
  'previou': 1,
  'product': 1,
  'profession': 2,
  'profile_complete': True,
  'project': 3,
  'promot': 1,
  'provid': 2,
  'report': 1,
  'result': 1,
  'sector': 1,
  'set': 1,
  'skill': 2,
  'taylor': 3,
  'train': 1,
  'use': 1,
  'varieti': 2,
  'web': 1,
  'white': 1,
  'wide': 1,
  'young': 1},
 502: {"'m": 1,
  "'s": 1,
  "'ve": 3,
  '0': 1,
  '10': 1,
  '12': 1,
  '2008.': 1,
  '6': 1,
  '7': 1,
  '9': 1,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'a',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'busi': 1,
  'ceo': 1,
  'channel': 1,
  'deposit_made': True,
  'develop': 1,
  'differ': 1,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'featur': 1,
  'figur': 1,
  'freelanc': 2,
  'hi': 1,
  'hundr': 2,
  'identity_verified': True,
  'internet': 2,
  'jimmi': 1,
  'late': 1,
  'less': 1,
  'lot': 1,
  'manag': 1,
  'mani': 1,
  'market': 2,
  'matt': 1,
  'member': 1,
  'month': 1,
  'morn': 1,
  'new': 1,
  'night': 1,
  'onlin': 1,
  'oper': 1,
  'past': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'properti': 1,
  'rank': 1,
  'receiv': 1,
  'revenu': 1,
  'search': 1,
  'seo': 2,
  'show': 1,
  'sinc': 1,
  'special': 1,
  'street': 1,
  'taken': 1,
  'thousand': 1,
  'time-': 1,
  'top': 1,
  'tv': 1,
  'ventur': 1,
  'visitor': 1,
  'wall': 1,
  'web': 2,
  'websit': 1,
  'well': 1,
  'work': 1,
  'year': 1,
  'york': 1},
 503: {'.net': 1,
  '7+': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
  'First': 'h',
  'Last': '5',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'analyst': 1,
  'applic': 1,
  'architect': 1,
  'asp.net': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'favourit': 1,
  'identity_verified': False,
  'majorli': 1,
  'mobil': 1,
  'pass': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'softwar': 1,
  'technolog': 1,
  'time': 1,
  'use': 1,
  'web': 1,
  'work': 2,
  'write': 1,
  'xml/xslt': 1,
  'year': 1},
 504: {'...': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 't',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'challeng': 1,
  'cool': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'good': 1,
  'identity_verified': False,
  'look': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'programm': 1,
  'project': 1},
 505: {"'m": 2,
  "'ve": 1,
  '6': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
  'administr': 1,
  'applic': 1,
  'area': 1,
  'consult': 1,
  'deposit_made': True,
  'develop': 2,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'incept': 1,
  'includ': 1,
  'independ': 1,
  'industri': 1,
  'linux': 1,
  'mani': 1,
  'market': 1,
  'network': 1,
  'nowaday': 1,
  'off-shor': 1,
  'opensourc': 1,
  'oper': 1,
  'outstand': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'provid': 2,
  'regard': 1,
  'secur': 1,
  'servic': 1,
  'solut': 1,
  'system': 1,
  'web': 2,
  'will': 1,
  'year': 1,
  'young': 1},
 506: {'7+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'o',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'latest': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'senior': 1,
  'softwar': 1,
  'technolog': 1,
  'updat': 1,
  'year': 1},
 507: {'.net': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'r',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'administr': 1,
  'ajax': 1,
  'analysis-': 1,
  'apach': 1,
  'applic': 9,
  'asp.net': 1,
  'audit': 3,
  'borland': 1,
  'busi': 2,
  'c': 1,
  'c++-': 1,
  'cento': 1,
  'check': 2,
  'checkout': 1,
  'checkup': 2,
  'code': 4,
  'consult': 1,
  'custom': 1,
  'daili': 1,
  'data': 1,
  'deposit_made': True,
  'develop': 7,
  'dn': 1,
  'email_verified': True,
  'etc': 4,
  'ethic': 1,
  'experienc': 1,
  'expert': 1,
  'facebook_connected': False,
  'find': 1,
  'flash': 1,
  'form': 1,
  'ftp': 1,
  'full': 1,
  'futur': 1,
  'gateway': 1,
  'googl': 1,
  'help': 1,
  'highli': 1,
  'http': 1,
  'identity_verified': False,
  'ifram': 1,
  'ii': 1,
  'inject': 2,
  'integr': 1,
  'integration-': 1,
  'internet': 1,
  'ipad': 1,
  'iphon': 1,
  'java': 1,
  'javascript': 1,
  'jsp': 1,
  'keep': 1,
  'knowledg': 1,
  'lamp': 1,
  'level': 1,
  'listen': 1,
  'log': 1,
  'mobil': 1,
  'monitor': 1,
  'ms': 1,
  'mysql': 1,
  'nginx': 1,
  'offer': 3,
  'payment': 1,
  'payment_verified': False,
  'paypal': 1,
  'penetr': 1,
  'phone_verified': True,
  'php': 1,
  'php/mysql': 1,
  'plu': 1,
  'prevent': 2,
  'profession': 1,
  'profile_complete': True,
  'programming-': 2,
  'rang': 1,
  'router': 1,
  'safe': 1,
  'scan': 1,
  'script': 2,
  'scripts-': 1,
  'secur': 10,
  'server': 1,
  'servic': 5,
  'services-': 1,
  'smtp': 1,
  'soap': 1,
  'softwar': 1,
  'sourc': 1,
  'sql': 1,
  'system': 4,
  'system/network': 1,
  'technolog': 1,
  'test': 1,
  'testing-': 2,
  'type': 1,
  'unknown': 1,
  'use': 5,
  'valid': 1,
  'variou': 3,
  'viru': 1,
  'vpn': 1,
  'vulner': 2,
  'web': 6,
  'websit': 2,
  'wide': 1,
  'window': 3,
  'xml': 1},
 508: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'e',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='e'>,
  'accur': 1,
  'bpo': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': True,
  'field': 1,
  'identity_verified': False,
  'last': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 2,
  'servic': 1,
  'sincer': 1,
  'variou': 1,
  'work': 2,
  'year': 1},
 509: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'j',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'blogger': 1,
  'content': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': True,
  'full-tim': 1,
  'identity_verified': False,
  'includ': 1,
  'make': 1,
  'money': 1,
  'onlin': 1,
  'optim': 1,
  'payment_verified': False,
  'phone_verified': True,
  'platform': 1,
  'present': 1,
  'profile_complete': True,
  'readi': 1,
  'search': 1,
  'web': 2,
  'websit': 1,
  'work': 2,
  'write': 1},
 510: {'10+': 1,
  '3': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='8'>,
  'First': 'k',
  'Last': '7',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'activ': 1,
  'affair': 1,
  'also': 2,
  'artist': 1,
  'awar': 1,
  'campaign': 2,
  'channel': 1,
  'child': 1,
  'children': 1,
  'commun': 1,
  'complet': 1,
  'cover': 1,
  'current': 1,
  'deliv': 1,
  'deposit_made': False,
  'differ': 1,
  'educ': 1,
  'email_verified': True,
  'etc': 1,
  'ethic': 1,
  'event': 1,
  'fabric': 1,
  'facebook_connected': False,
  'fanat': 1,
  'flood': 1,
  'fund': 2,
  'fundrais': 1,
  'honor': 1,
  'host': 1,
  'identity_verified': False,
  'industri': 1,
  'initi': 1,
  'inject': 1,
  'invit': 1,
  'issu': 1,
  'lead': 1,
  'lectur': 1,
  'live': 1,
  'local': 1,
  'manag': 1,
  'media': 5,
  'morn': 1,
  'pakistan': 1,
  'part': 1,
  'passion': 1,
  'past': 1,
  'payment_verified': False,
  'phone_verified': False,
  'present': 1,
  'profession': 1,
  'profile_complete': True,
  'program': 2,
  'radio': 4,
  'ration': 1,
  'relief': 1,
  'safe': 1,
  'save': 1,
  'sever': 2,
  'show': 2,
  'social': 4,
  'special': 1,
  'store': 1,
  'talk': 2,
  'televis': 2,
  'topic': 1,
  'twitter': 1,
  'univers': 1,
  'via': 1,
  'voic': 1,
  'volunt': 1,
  'work': 2,
  'year': 2},
 511: {'3.0': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='4'>,
  'First': 'm',
  'Last': '2',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ajax': 1,
  'cakephp': 1,
  'cm': 1,
  'contract': 1,
  'css': 1,
  'current': 1,
  'databas': 1,
  'deposit_made': True,
  'doctrin': 1,
  'drupal': 1,
  'ejb': 1,
  'email_verified': True,
  'facebook_connected': False,
  'framework': 1,
  'glassfish': 1,
  'html5': 1,
  'identity_verified': False,
  'j2ee': 1,
  'joomla': 1,
  'jqueri': 1,
  'kohana': 1,
  'mvc': 1,
  'mysql': 1,
  'oop': 1,
  'orm': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'php5': 1,
  'profile_complete': True,
  'prototyp': 1,
  'skill': 1,
  'smarti': 1,
  'symfoni': 1,
  'templat': 1,
  'toplink': 1,
  'yr': 2,
  'zend': 1},
 512: {'4': 1,
  '6': 1,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'a',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ajax': 1,
  'almost': 1,
  'bachelor': 1,
  'client': 1,
  'comput': 1,
  'css': 1,
  'css3': 1,
  'custom': 1,
  'deal': 1,
  'deposit_made': True,
  'develop': 2,
  'done': 1,
  'email_verified': True,
  'end': 1,
  'experi': 1,
  'facebook_connected': False,
  'happi': 1,
  'html': 1,
  'html5': 1,
  'identity_verified': True,
  'interest': 1,
  'javascript': 1,
  'jqueri': 1,
  'kind': 1,
  'languag': 1,
  'major': 1,
  'man': 1,
  'mani': 2,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'plugin': 1,
  'profile_complete': True,
  'program': 1,
  'request': 1,
  'scienc': 1,
  'servic': 1,
  'theme': 1,
  'tri': 1,
  'websit': 1,
  'wordpress': 2,
  'year': 2},
 513: {'2.0': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 't',
  'Last': '2',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'a-level': 2,
  'certif': 1,
  'chittagong': 1,
  'complet': 3,
  'deposit_made': False,
  'eee': 1,
  'email_verified': True,
  'exam': 1,
  'facebook_connected': False,
  'gpa': 2,
  'identity_verified': False,
  'laboratori': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'school': 2,
  'scienc': 1,
  'secondari': 1,
  'studi': 1},
 514: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
  'First': 'm',
  'Last': 't',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abl': 1,
  'accent': 1,
  'deposit_made': False,
  'differ': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'good': 2,
  'identity_verified': False,
  'lot': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'speed': 1,
  'transcrib': 1,
  'type': 2,
  'understand': 1},
 515: {"'m": 1,
  "'re": 3,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'o',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'abl': 1,
  'art': 1,
  'better': 1,
  'catalog': 1,
  'client': 2,
  'commerci': 1,
  'complet': 1,
  'deposit_made': True,
  'edit': 1,
  'email_verified': True,
  'estat': 1,
  'express': 1,
  'facebook_connected': True,
  'find': 1,
  'fine': 1,
  'guarante': 1,
  'help': 1,
  'identity_verified': False,
  'landscap': 1,
  'natur': 1,
  'noth': 1,
  'owe': 1,
  'payment_verified': False,
  'perform': 1,
  'phone_verified': True,
  'photograph': 4,
  'photographi': 1,
  'portrait': 1,
  'product': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'real': 1,
  'satisfi': 1,
  'seek': 1,
  'sell': 1,
  'varieti': 3,
  'variou': 1,
  'vision': 1,
  'wed': 1,
  'work': 3},
 516: {'21': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
  'First': 'a',
  'Last': 'i',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'among': 1,
  'around': 1,
  'arun': 1,
  'assess': 1,
  'audit': 1,
  'best': 1,
  'busi': 1,
  'care': 1,
  'compani': 1,
  'complianc': 2,
  'consult': 2,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'etc': 1,
  'experi': 1,
  'facebook_connected': True,
  'field': 1,
  'globe': 1,
  'hippa': 1,
  'identity_verified': False,
  'india': 1,
  'inform': 3,
  'mainli': 1,
  'manag': 1,
  'one': 1,
  'payment_verified': False,
  'penetr': 1,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'reput': 1,
  'secur': 3,
  'take': 1,
  'test': 1,
  'virtual': 1,
  'vulner': 1,
  'well': 1,
  'work': 1,
  'year': 1},
 517: {'1.5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='0'>,
  'First': 'c',
  'Last': '2',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'almost': 1,
  'amount': 1,
  'app': 1,
  'chennai': 1,
  'contact': 1,
  'css3': 1,
  'dell': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 1,
  'email_verified': True,
  'face': 1,
  'facebook_connected': False,
  'firm': 1,
  'get': 1,
  'html5': 1,
  'identity_verified': False,
  'infosi': 1,
  'last': 1,
  'manag': 1,
  'mobil': 1,
  'opinion': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'reliabl': 1,
  'respons': 1,
  'simpl': 2,
  'support': 1,
  'technic': 1,
  'time': 1,
  'want': 1,
  'websit': 1,
  'work': 1,
  'year': 1},
 518: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'v',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ajax-': 1,
  'analysi': 1,
  'applic': 2,
  'c': 1,
  'c/c++': 1,
  'deposit_made': False,
  'design-': 1,
  'developer-': 4,
  'email_verified': True,
  'facebook': 1,
  'facebook_connected': False,
  'flash-': 1,
  'identity_verified': False,
  'internet': 1,
  'mysql-': 2,
  'next': 1,
  'oracle-': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'rail': 1,
  'rubi': 1,
  'softwar': 1,
  'system': 1,
  'twitter': 1},
 519: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'r',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>,
  'agil': 1,
  'also': 1,
  'alway': 2,
  'apach': 1,
  'applic': 2,
  'asset': 1,
  'belt': 1,
  'best': 1,
  'build': 1,
  'built': 1,
  'challeng': 1,
  'claim': 1,
  'client': 1,
  'codebas': 1,
  'come': 1,
  'complex': 1,
  'consult': 1,
  'contributor': 1,
  'corpor': 1,
  'curiou': 1,
  'deposit_made': False,
  'effici': 1,
  'email_verified': True,
  'etc': 1,
  'experi': 1,
  'expertis': 1,
  'explor': 1,
  'facebook_connected': False,
  'fault-toler': 1,
  'field': 1,
  'finish': 1,
  'got': 1,
  'greatest': 1,
  'grow': 1,
  'haproxi': 1,
  'help': 1,
  'highli': 1,
  'identity_verified': False,
  'in': 1,
  'includ': 1,
  'individu': 1,
  'innov': 1,
  'know': 1,
  'lamp': 1,
  'larg': 1,
  'latest': 1,
  'leader': 1,
  'learn': 1,
  'linux': 1,
  'mani': 2,
  'memcach': 1,
  'mind': 1,
  'modern': 1,
  'mongodb': 1,
  'mysql': 1,
  'next': 1,
  'out': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 2,
  'play': 1,
  'pleasur': 1,
  'practition': 1,
  'problem': 1,
  'profile_complete': True,
  'programm': 1,
  'puppet': 1,
  'redi': 1,
  'satisfi': 1,
  'scalabl': 2,
  'season': 1,
  'skill': 1,
  'solut': 2,
  'stack': 1,
  'start': 1,
  'team': 2,
  'technic': 2,
  'technolog': 2,
  'valuabl': 1,
  'web': 2,
  'will': 1,
  'work': 2,
  'year': 1},
 520: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
  'First': 'y',
  'Last': '5',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'lanka': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'sri': 1},
 521: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='4'>,
  'First': 't',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': None,
  'buck': 1,
  'consult': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': True,
  'free': 1,
  'identity_verified': False,
  'light': 1,
  'like': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'quick': 1,
  'time': 1,
  'two': 1,
  'work': 1,
  'would': 1},
 522: {'15': 1,
  '5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'l',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'air': 1,
  'amazon': 1,
  'angularj': 1,
  'apex': 1,
  'app': 1,
  'applic': 3,
  'architect': 1,
  'busi': 1,
  'commun': 1,
  'compani': 1,
  'creativ': 1,
  'css': 1,
  'db': 1,
  'deep': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'devlop': 1,
  'ec2': 1,
  'email_verified': True,
  'enterpris': 1,
  'etc': 1,
  'execut': 1,
  'experi': 1,
  'facebook_connected': False,
  'flex': 1,
  'framework': 1,
  'gi': 1,
  'html5': 1,
  'identity_verified': False,
  'industri': 1,
  'intellig': 1,
  'io': 1,
  'j2ee': 1,
  'java': 1,
  'javascript': 1,
  'last': 1,
  'lead': 1,
  'leverag': 1,
  'mobil': 2,
  'non': 1,
  'open': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'platform': 2,
  'product': 1,
  'profile_complete': True,
  'provid': 1,
  'raul': 1,
  'rdbm': 1,
  'rich': 1,
  'roy': 1,
  'salesforc': 1,
  'season': 1,
  'softwar': 1,
  'solut': 2,
  'sourc': 1,
  'special': 1,
  'sql': 1,
  'technolog': 3,
  'tool': 1,
  'understand': 1,
  'user': 1,
  'visual': 1,
  'web': 1,
  'webservic': 1,
  'work': 2,
  'year': 2},
 523: {'1': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'r',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'base': 2,
  'compani': 1,
  'continu': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'good': 1,
  'identity_verified': False,
  'india': 1,
  'knowledg': 1,
  'lead': 1,
  'offshor': 1,
  'outsourc': 1,
  'payment_verified': False,
  'phone_verified': False,
  'product': 1,
  'profile_complete': True,
  'seo': 1,
  'servic': 1,
  'softwar': 1,
  'web': 2,
  'year': 1},
 524: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='4'>,
  'First': 'E',
  'Last': 'k',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': True,
  'graphic': 1,
  'identity_verified': False,
  'khulna': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'student': 1},
 525: {'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'a',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'account': 1,
  'also': 1,
  'anyth': 1,
  'articl': 2,
  'assign': 1,
  'base': 2,
  'basic': 1,
  'bill': 1,
  'coach': 1,
  'comput': 1,
  'craigslist': 1,
  'deposit_made': False,
  'email_verified': True,
  'enjoy': 1,
  'etc.i': 1,
  'facebook_connected': False,
  'financ': 1,
  'good': 2,
  'graduat': 1,
  'group': 1,
  'handl': 1,
  'health': 1,
  'hire': 1,
  'identity_verified': False,
  'jason': 1,
  'leadership': 1,
  'learn': 1,
  'least': 1,
  'like': 2,
  'mail': 3,
  'market': 1,
  'me.i': 1,
  'microsoft': 1,
  'mr': 2,
  'network': 1,
  'offic': 1,
  'order': 1,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': False,
  'pleas': 1,
  'possibl': 1,
  'problem.i': 1,
  'product': 1,
  'profile_complete': True,
  'promot': 1,
  'quick': 1,
  'receiv': 1,
  'sampl': 1,
  'see': 1,
  'sell': 1,
  'send': 2,
  'skill': 1,
  'social': 1,
  'take': 1,
  'technolog': 1,
  'time': 1,
  'todd': 1,
  'type': 1,
  'variou': 1,
  'want': 1,
  'will': 1,
  'wont': 1,
  'work': 3,
  'write': 3},
 526: {'20': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
  'Digit': None,
  'First': 'F',
  'Last': 'o',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'aka': 1,
  'banner': 1,
  'begin': 1,
  'build': 1,
  'came': 1,
  'carrier': 1,
  'danish': 1,
  'deposit_made': False,
  'design': 1,
  'edit': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'film': 1,
  'freak': 1,
  'freelanc': 1,
  'gain': 1,
  'gymnasium': 1,
  'hello': 1,
  'identity_verified': False,
  'like': 1,
  'logo': 1,
  'look': 1,
  'marc': 2,
  'media': 1,
  'name': 1,
  'old': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photo': 1,
  'pilgaard': 2,
  'portfolio': 1,
  'produc': 1,
  'profile_complete': True,
  'project': 1,
  'regard': 1,
  'student': 1,
  'studi': 1,
  'technic': 1,
  'voic': 1,
  'well': 2,
  'within': 2,
  'year': 1},
 527: {"'m": 2,
  "'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'n',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'anyth': 1,
  'complet': 1,
  'deposit_made': False,
  'done': 1,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'hard': 1,
  'high': 1,
  'honor': 1,
  'identity_verified': False,
  'let': 1,
  'need': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'promis': 1,
  'reliabl': 1,
  'school': 1,
  'took': 1,
  'way': 1,
  'worker': 1,
  'year': 1},
 528: {"''": 1,
  "'s": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'l',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '``': 1,
  'also': 1,
  'avail': 1,
  'binghamton': 2,
  'blue': 1,
  'book': 1,
  'creativ': 1,
  'degre': 1,
  'deposit_made': False,
  'director': 1,
  'distinct': 1,
  'editori': 1,
  'email_verified': True,
  'english': 1,
  'experi': 1,
  'facebook_connected': False,
  'fiction': 1,
  'first': 1,
  'graduat': 1,
  'identity_verified': False,
  'layout': 1,
  'payment_verified': False,
  'phone_verified': False,
  'poem': 1,
  'poetri': 1,
  'profile_complete': True,
  'program': 1,
  'proofread': 1,
  'publish': 2,
  'recent': 1,
  'review': 2,
  'sam': 2,
  'scholar': 1,
  'univers': 1,
  'work': 2,
  'write': 2},
 529: {"'ve": 1,
  '15': 1,
  '2.0': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 't',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'articl': 2,
  'blog': 2,
  'bookmark': 1,
  'build': 1,
  'builder': 2,
  'comment': 1,
  'creation': 1,
  'deposit_made': True,
  'directori': 3,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'first': 1,
  'guarante': 1,
  'high': 1,
  'identity_verified': False,
  'includ': 1,
  'increas': 2,
  'link': 3,
  'list': 1,
  'manual': 1,
  'organ': 1,
  'page': 1,
  'payment_verified': True,
  'phone_verified': False,
  'press': 2,
  'profile_complete': True,
  'qualiti': 1,
  'relat': 1,
  'releas': 2,
  'serp': 1,
  'set': 1,
  'skill': 1,
  'social': 1,
  'submiss': 4,
  'team': 1,
  'traffic': 1,
  'train': 1,
  'video': 1,
  'web': 2,
  'websit': 2,
  'well': 1,
  'work': 1,
  'write': 2},
 530: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
  'Digit': None,
  'First': 'K',
  'Last': 'a',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'artist': 1,
  'bright': 1,
  'brochur': 1,
  'busi': 1,
  'card': 1,
  'cover': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'edit': 1,
  'email_verified': True,
  'etc': 1,
  'experi': 1,
  'facebook_connected': False,
  'graphic': 1,
  'i\\xe2\\u20ac\\u2122m': 1,
  'idea': 1,
  'identity_verified': False,
  'illustr': 1,
  'logo': 1,
  'love': 1,
  'one': 1,
  'origin': 2,
  'pattern': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'photographi': 2,
  'profile_complete': True,
  'qualif': 1,
  'street': 1,
  'strength': 1},
 531: {"'m": 1,
  "'ve": 1,
  '3d': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'r',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'air': 1,
  'also': 1,
  'art': 1,
  'belgrad': 1,
  'canada': 1,
  'client': 1,
  'club': 1,
  'combin': 1,
  'creat': 1,
  'day': 1,
  'deposit_made': False,
  'design': 1,
  'director': 1,
  'email_verified': True,
  'enjoy': 1,
  'everi': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'flash/actionscript': 1,
  'graphic': 1,
  'i\\xe2\\u20ac\\u2122v': 2,
  'identity_verified': False,
  'interact': 2,
  'knowledg': 1,
  'last': 1,
  'learn': 1,
  'like': 2,
  'live': 1,
  'lot': 1,
  'make': 1,
  'memor': 1,
  'motion': 1,
  'name': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'proudli': 1,
  'pursu': 1,
  'rang': 1,
  'realli': 1,
  'serbia': 1,
  'serv': 1,
  'singl': 1,
  'someth': 2,
  'year': 1},
 532: {'11g': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'a',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'access': 1,
  'also': 1,
  'analysi': 1,
  'area': 1,
  'asp.net': 1,
  'auto': 1,
  'autom': 1,
  'base': 1,
  'bi': 1,
  'busi': 1,
  'compet': 1,
  'daili': 1,
  'dashboard': 1,
  'data': 1,
  'databas': 1,
  'deposit_made': False,
  'dhaka': 1,
  'divis': 1,
  'edit': 1,
  'email_verified': True,
  'enterpris': 1,
  'etc': 2,
  'exam': 1,
  'excel': 2,
  'exchang': 1,
  'facebook_connected': False,
  'flash': 1,
  'html': 1,
  'identity_verified': False,
  'im': 1,
  'includ': 1,
  'intellig': 1,
  'map': 1,
  'market': 1,
  'minitab': 1,
  'modul': 1,
  'ms': 1,
  'mysql': 1,
  'obie': 1,
  'oracl': 2,
  'payment_verified': False,
  'pharmaceut': 1,
  'phone_verified': True,
  'php': 1,
  'product': 1,
  'profile_complete': True,
  'project': 1,
  'qc': 1,
  'qlikview': 1,
  'server': 1,
  'sql': 1,
  'stock': 1,
  'test': 1,
  'tool': 2,
  'trade': 1,
  'web': 1,
  'work': 1},
 533: {"'s": 1,
  '2': 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'r',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'anyth': 1,
  'believ': 1,
  'client': 1,
  'complet': 1,
  'deposit_made': True,
  'develop': 1,
  'effort': 1,
  'email_verified': True,
  'experi': 2,
  'facebook_connected': True,
  'identity_verified': True,
  'imposs': 1,
  'job': 1,
  'key': 1,
  'make': 1,
  "n't": 1,
  'need': 2,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'program': 1,
  'proper': 1,
  'satisfactori': 1,
  'seven': 1,
  'start': 1,
  'understand': 1,
  'want': 1,
  'web': 1,
  'work': 2,
  'year': 2},
 534: {'13': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'm',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'attorney': 1,
  'bar': 1,
  'california': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'hire': 1,
  'identity_verified': False,
  'job': 1,
  'member': 1,
  'offic': 1,
  'patent': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'readi': 1,
  'regist': 1,
  'start': 1,
  'trademark': 1,
  'u.s.': 1,
  'work': 1,
  'year': 1},
 535: {'18th': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'u',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  '\\t\\t': 1,
  '\\t\\t\\t': 1,
  'abil': 1,
  'achiev': 1,
  'administr': 1,
  'april': 1,
  'art': 1,
  'associ': 1,
  'basic': 1,
  'basis.\\xe2\\u20ac\\xa2\\twork': 2,
  'board': 1,
  'book': 1,
  'bottom': 1,
  'career': 1,
  'centr': 1,
  'certifi': 1,
  'challeng': 1,
  'cisco': 1,
  'civil': 2,
  'colleg': 1,
  'comput': 3,
  'consum': 1,
  'contract': 3,
  'cricket': 1,
  'critic': 1,
  'deliv': 1,
  'depart': 2,
  'deposit_made': False,
  'diploma': 1,
  'e': 2,
  'educ': 2,
  'email_verified': True,
  'engin': 1,
  'environ': 1,
  'etc': 1,
  'facebook_connected': False,
  'faculti': 1,
  'focu': 1,
  'ga': 3,
  'game': 1,
  'govt': 2,
  'growth': 1,
  'gulberg-iii': 4,
  'h': 2,
  'hardwar': 1,
  'high': 1,
  'hous': 1,
  'identity_verified': False,
  'improv': 1,
  'intermedi': 1,
  'lahor': 4,
  'limit': 3,
  'line': 3,
  'maintain': 1,
  'mission': 1,
  'motiv': 1,
  'movi': 1,
  'muslim': 1,
  'n': 1,
  'nagar': 1,
  'name': 1,
  'network': 1,
  'no.2': 1,
  'northern': 3,
  'oper': 2,
  'organ': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'pipelin': 3,
  'profile_complete': True,
  'project': 1,
  'prospect': 1,
  'reput': 1,
  'result': 1,
  'road': 3,
  'scale': 1,
  'school': 1,
  'scienc': 1,
  'secondari': 1,
  'serv': 1,
  'servic': 1,
  'singh': 1,
  'sui': 3,
  'superior': 1,
  'system': 1,
  'truli': 1,
  'want': 1,
  'z': 1},
 536: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'n',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'adept': 1,
  'advertis': 1,
  'also': 2,
  'artwork': 1,
  'aspect': 1,
  'busi': 1,
  'career': 1,
  'chanc': 1,
  'collabor': 2,
  'compani': 1,
  'creativ': 2,
  'deposit_made': False,
  'design': 3,
  'develop': 1,
  'display': 1,
  'email_verified': True,
  'environ': 1,
  'experi': 1,
  'extrem': 1,
  'facebook_connected': True,
  'fast-pac': 1,
  'fit': 1,
  'focus': 2,
  'get': 1,
  'graphic': 3,
  'great': 1,
  'heavi': 1,
  'help': 1,
  'highli': 2,
  'hike': 1,
  'hobbi': 2,
  'ident': 1,
  'identity_verified': False,
  'intellig': 1,
  'jone': 1,
  'keep': 1,
  'last': 1,
  'life': 2,
  'like': 1,
  'major': 1,
  'manag': 2,
  'minut': 1,
  'much': 1,
  'multi-tal': 1,
  'natur': 1,
  'payment_verified': False,
  'peter': 1,
  'phone_verified': False,
  'possibl': 1,
  'prepar': 1,
  'pressur': 1,
  'profile_complete': True,
  'relationship': 1,
  'run': 1,
  'show': 1,
  'shown': 1,
  'skill': 1,
  'snowboard': 1,
  'soccer': 1,
  'sort': 1,
  'swim': 1,
  'though': 1,
  'thought': 1,
  'thrive': 1,
  'tri': 1,
  'two': 1,
  'well': 2,
  'work': 1,
  'workload': 1,
  'year': 1},
 537: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(2, 3), match='2'>,
  'First': 'b',
  'Last': '3',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'corpor': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'retir': 1,
  'speaker': 1},
 538: {'...': 1,
  '3': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
  'First': 'n',
  'Last': '3',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'year': 1},
 539: {"'m": 2,
  '26': 1,
  '3': 1,
  '4th': 1,
  '5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
  'First': 'l',
  'Last': '8',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'alway': 1,
  'area': 1,
  'challeng': 1,
  'colleg': 1,
  'compani': 1,
  'current': 1,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'evolv': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'graphic': 1,
  'identity_verified': False,
  'improv': 1,
  'look': 1,
  'municip': 1,
  'new': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'spare': 1,
  'still': 1,
  'time': 1,
  'transpar': 1,
  'web': 2,
  'work': 4,
  'year': 3},
 540: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='1'>,
  'First': 'P',
  'Last': '1',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'advisori': 1,
  'assess': 1,
  'audit': 1,
  'busi': 1,
  'demograph': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'enhanc': 1,
  'facebook_connected': False,
  'govern': 1,
  'grant': 1,
  'gsa': 1,
  'identity_verified': False,
  'manag': 2,
  'market': 1,
  'need': 1,
  'network': 1,
  'non': 1,
  'oper': 1,
  'organiz': 1,
  'payment_verified': False,
  'phone_verified': False,
  'plan': 1,
  'procur': 1,
  'profile_complete': True,
  'profit': 1,
  'research': 1,
  'schedul': 1,
  'social': 1,
  'technolog': 1,
  'valu': 1,
  'write': 1},
 541: {'...': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(3, 4), match='8'>,
  'First': 'a',
  'Last': '8',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'help': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'program': 1},
 542: {'.thank': 1,
  '4': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(2, 3), match='1'>,
  'First': 'p',
  'Last': '9',
  'Numchar': 6,
  'Vowel': None,
  'appl': 1,
  'applic': 1,
  'deposit_made': False,
  'developer.i': 1,
  'email_verified': True,
  'experi': 2,
  'facebook_connected': False,
  'hi': 1,
  'identity_verified': False,
  'iphon': 1,
  'iphone/ipad': 1,
  'mobil': 1,
  'payment_verified': True,
  'phone_verified': True,
  'platform': 1,
  'prem': 1,
  'profile_complete': True,
  'regard': 1,
  'sound': 1,
  'work': 1,
  'year': 1},
 543: {"'s": 1,
  '10': 2,
  '24-hour': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
  'First': 'e',
  'Last': 't',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'algorithm': 2,
  'appli': 1,
  'articl': 1,
  'believ': 2,
  'best': 1,
  'bird': 1,
  'blog': 1,
  'book': 1,
  'build': 1,
  'calcul': 1,
  'client': 2,
  'content': 1,
  'day': 1,
  'deposit_made': True,
  'email_verified': True,
  'engin': 1,
  'ensur': 1,
  'ethic': 1,
  'experi': 2,
  'experienc': 1,
  'facebook_connected': True,
  'field': 2,
  'free': 1,
  'get': 2,
  'goal': 1,
  'googl': 3,
  'guarante': 2,
  'highest': 1,
  'honest': 1,
  'identity_verified': True,
  'improv': 1,
  'internet': 1,
  'learn': 1,
  'link': 1,
  'loan': 1,
  'lot': 1,
  'market': 1,
  'method': 1,
  'offer': 1,
  'open': 1,
  'optim': 1,
  'packag': 1,
  'panda': 1,
  'pay': 1,
  'payment_verified': True,
  'penguin': 1,
  'phone_verified': True,
  'possibl': 1,
  'pride': 1,
  'profil': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 1,
  'rank': 1,
  'realist': 1,
  'repli': 1,
  'result': 1,
  'revis': 1,
  'search': 1,
  'seo': 3,
  'servic': 1,
  'site': 1,
  'strateg': 1,
  'support': 1,
  'traffic': 1,
  'understand': 2,
  'unmatch': 1,
  'us': 1,
  'websit': 1,
  'world': 1,
  'write': 1,
  'year': 2},
 544: {"'m": 1,
  '0day': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'f',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'academ': 1,
  'alvi.curr': 1,
  'aptitud': 1,
  'away': 1,
  'best.thank': 1,
  'coder': 1,
  'defin': 1,
  'deposit_made': False,
  'develop': 1,
  'domain.em': 1,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'financi': 1,
  'hand': 1,
  'hard': 1,
  'heart': 1,
  'identity_verified': False,
  'interest': 1,
  'junaid': 1,
  'level.besid': 1,
  'like': 1,
  'manageri': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': True,
  'profess': 1,
  'profile_complete': True,
  'qualif': 1,
  'r00t': 1,
  'revers': 1,
  'sector': 1,
  'secur': 1,
  'softwar': 1,
  'soul': 1,
  'teach': 1,
  'tech-geek': 1,
  'way': 1,
  'web': 2,
  'whitehat': 1,
  'word': 1,
  'yousaf': 1},
 545: {'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'z',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'administr': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'network': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'shoot': 1,
  'troubl': 1,
  'web': 1},
 546: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='8'>,
  'First': 's',
  'Last': '7',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'absolut': 1,
  'activ': 1,
  'also': 1,
  'answer': 1,
  'area': 1,
  'automobil': 1,
  'best': 1,
  'card': 1,
  'children': 1,
  'class': 1,
  'client': 1,
  'complaint': 1,
  'comput': 1,
  'coordin': 1,
  'cost': 1,
  'credit': 1,
  'custom': 3,
  'dedic': 1,
  'deliveri': 1,
  'deposit_made': False,
  'driver': 1,
  'duti': 1,
  'email_verified': True,
  'employ': 1,
  'enjoy': 1,
  'facebook_connected': False,
  'fast': 1,
  'firm': 1,
  'fleet': 1,
  'focus': 1,
  'fuel': 1,
  'handl': 1,
  'homeown': 1,
  'identity_verified': False,
  'illinoi': 1,
  'includ': 1,
  'issu': 1,
  'job': 1,
  'keep': 1,
  'learner': 1,
  'local': 1,
  'loyal': 1,
  'major': 1,
  'manag': 1,
  'management.i': 1,
  'manufactur': 1,
  'marri': 1,
  'music': 1,
  'numer': 1,
  'old': 1,
  'order': 1,
  'owner': 1,
  'payment_verified': False,
  'payrol': 1,
  'phone': 1,
  'phone_verified': False,
  'present': 1,
  'process': 1,
  'profession': 1,
  'profile_complete': True,
  'provid': 1,
  'read': 1,
  'report': 1,
  'repres': 1,
  'self-taught': 1,
  'seminar': 1,
  'servic': 2,
  'strive': 1,
  'submit': 1,
  'supervis': 1,
  'three': 2,
  'time': 1,
  'write': 1,
  'year': 1},
 547: {'14+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'c',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'abl': 1,
  'adapt': 1,
  'advanc': 1,
  'also': 1,
  'amazon': 1,
  'applications-': 1,
  'assur': 1,
  'base': 1,
  'build': 1,
  'busi': 1,
  'cc': 1,
  'complet': 1,
  'contact': 1,
  'convert': 1,
  'databas': 2,
  'dedic': 1,
  'deploy': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 2,
  'digit': 1,
  'discuss': 1,
  'email_verified': True,
  'english': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': True,
  'favorit': 1,
  'flexibl': 1,
  'fluentli': 1,
  'follow': 1,
  'front-end': 1,
  'full-stack': 1,
  'hard': 1,
  'heavili': 1,
  'idea': 1,
  'identity_verified': False,
  'innov': 2,
  'integration-': 1,
  'intern': 1,
  'involv': 1,
  'knowledg': 1,
  'laravel': 2,
  'lead': 1,
  'local': 1,
  'manag': 2,
  'managementi': 1,
  'ocean': 1,
  'offer': 1,
  'organ': 1,
  'payment_verified': False,
  'pci': 1,
  'phone': 1,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'profit': 1,
  'project': 1,
  'qualiti': 1,
  'requir': 1,
  'server': 2,
  'servic': 1,
  'skype': 1,
  'solutions.i': 1,
  'speak': 1,
  'stabl': 1,
  'stakehold': 1,
  'start': 1,
  'sure': 1,
  'team': 1,
  'technolog': 1,
  'test': 1,
  'till': 1,
  'time': 1,
  'use': 1,
  'user': 1,
  'vp': 1,
  'web': 3,
  'work': 2,
  'years\\xe2\\u20ac\\u2122': 1},
 548: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'e',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='e'>,
  'also': 1,
  'articl': 1,
  'c': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'futur': 1,
  'identity_verified': False,
  'interest': 1,
  'languag': 1,
  'like': 1,
  'payment_verified': True,
  'phone_verified': False,
  'process': 1,
  'profile_complete': True,
  'program': 1,
  'survey': 1,
  'take': 1,
  'write': 1},
 549: {"'m": 1,
  '100': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'p',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'anyon': 1,
  'commit': 1,
  'creat': 1,
  'deposit_made': True,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'fantasi': 1,
  'fiction': 1,
  'full': 1,
  'good': 1,
  'hi': 1,
  'identity_verified': False,
  'imagin': 1,
  'import': 1,
  'kid': 1,
  'look': 1,
  'offer': 1,
  'particularli': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'provid': 1,
  'satisfact': 1,
  'servic': 1,
  'short': 1,
  'spanish': 1,
  'stori': 4,
  'teach': 1,
  'uniqu': 1,
  'univers': 1,
  'valu': 1,
  'world': 1,
  'write': 3,
  'year': 1},
 550: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'i',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abl': 1,
  'adapt': 1,
  'alreadi': 1,
  'also': 1,
  'alway': 1,
  'care': 1,
  'commerci': 1,
  'degre': 1,
  'deposit_made': False,
  'detail': 1,
  'differ': 1,
  'eas': 1,
  'email_verified': True,
  'english': 1,
  'experi': 1,
  'facebook_connected': False,
  'fast': 1,
  'graduat': 1,
  'greatest': 1,
  'hire': 1,
  'i\\xe2\\u20ac\\u2122m': 2,
  'identity_verified': False,
  'it\\xe2\\u20ac\\u2122': 1,
  'italian': 1,
  'job': 2,
  'journal': 1,
  'know': 1,
  'languag': 1,
  'languages.i': 1,
  'learner': 1,
  'literari': 1,
  'love': 1,
  'mani': 1,
  'medic': 1,
  'new': 1,
  'one': 1,
  'organ': 1,
  'passion': 2,
  'payment_verified': False,
  'philolog': 1,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'respons': 1,
  'sinc': 1,
  'situat': 1,
  'spanish': 1,
  'speak': 1,
  'special': 2,
  'spoken': 1,
  'studi': 1,
  'teach': 1,
  'technic': 1,
  'tourism': 1,
  'translat': 5,
  'turin': 1,
  'univers': 1,
  'word': 1,
  'work': 1,
  'written': 1},
 551: {'10+': 1,
  '100': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'S',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'abl': 1,
  'adapt': 1,
  'alway': 1,
  'amazon': 1,
  'amongst': 1,
  'angularj': 1,
  'app': 1,
  'asp': 1,
  'aw': 1,
  'aweb': 1,
  'azur': 1,
  'best': 1,
  'bootstrap': 1,
  'busi': 1,
  'c': 1,
  'cakephp': 1,
  'cart': 1,
  'client': 1,
  'cm': 1,
  'code': 1,
  'codeignitor': 1,
  'constant': 1,
  'core': 1,
  'crm': 2,
  'custom': 1,
  'deposit_made': True,
  'develop': 2,
  'drupal': 1,
  'email_verified': True,
  'ensur': 1,
  'experi': 1,
  'facebook_connected': False,
  'fast': 1,
  'freelanc': 1,
  'fund': 1,
  'futur': 1,
  'identity_verified': True,
  'insist': 1,
  'joomla': 1,
  'laravel': 1,
  'lot': 1,
  'magento': 1,
  'mani': 1,
  'microsoft': 1,
  'mobil': 1,
  'mongodb': 1,
  'mssql': 1,
  'mysql': 1,
  'need': 1,
  'nodej': 1,
  'optim': 1,
  'other': 1,
  'pace': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'project': 2,
  'proof': 1,
  'rais': 1,
  'rate': 1,
  'se': 1,
  'secur': 1,
  'servic': 1,
  'shopifi': 1,
  'site': 1,
  'suggest': 1,
  'support': 1,
  'technolog': 1,
  'top': 2,
  'trend': 1,
  'understand': 1,
  'web': 2,
  'webservic': 2,
  'woo': 1,
  'wordpress': 1,
  'year': 1},
 552: {'...': 1,
  '25': 1,
  'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'n',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'care': 1,
  'client': 1,
  'deposit_made': False,
  'develop': 2,
  'differ': 1,
  'email_verified': True,
  'facebook_connected': True,
  'field': 1,
  'identity_verified': False,
  'need': 1,
  'payment_verified': False,
  'phone_verified': False,
  'platform': 1,
  'profile_complete': True,
  'softwar': 3,
  'take': 1,
  'tool': 1,
  'year': 1},
 553: {'Caps': <_sre.SRE_Match object; span=(1, 2), match='M'>,
  'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
  'First': 'i',
  'Last': '0',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'assist': 1,
  'busi': 1,
  'deposit_made': True,
  'desir': 1,
  'email_verified': True,
  'facebook_connected': False,
  'half': 1,
  'help': 1,
  'identity_verified': False,
  'internet': 2,
  'leader': 1,
  'learn': 1,
  'make': 1,
  'market': 2,
  'money': 1,
  'other': 1,
  'past': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'studi': 1,
  'top': 1,
  'year': 1},
 554: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 's',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'deposit_made': False,
  'dilig': 1,
  'email_verified': True,
  'facebook_connected': False,
  'fast': 2,
  'friendli': 1,
  'great': 1,
  'honest': 2,
  'identity_verified': False,
  'listen': 1,
  'pace': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pride': 1,
  'profile_complete': True,
  'provid': 1,
  'reliabl': 1,
  'servic': 1,
  'skill': 2,
  'take': 1,
  'work': 1,
  'worker': 1},
 555: {'Caps': None,
  'Digit': None,
  'First': 'z',
  'Last': 'o',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'come': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'new': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'soon': 1,
  'websit': 1},
 556: {"'m": 2,
  "'s": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(3, 4), match='4'>,
  'First': 'a',
  'Last': '1',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'activ': 3,
  'ari': 1,
  'bachelor': 1,
  'bandung': 1,
  'broadcast': 1,
  'christian': 1,
  'current': 1,
  'degre': 1,
  'deposit_made': True,
  'email_verified': True,
  'english': 2,
  'facebook_connected': False,
  'identity_verified': False,
  'indonesia': 2,
  'indonesiami': 1,
  'jakarta': 2,
  'java': 1,
  'languag': 1,
  'literatur': 1,
  'live': 1,
  'maranatha': 1,
  'media': 1,
  'mintarejanow': 1,
  'name': 1,
  'nation': 1,
  'news': 2,
  'one': 1,
  'payment_verified': True,
  'phone_verified': True,
  'produc': 1,
  'profile_complete': True,
  'right': 1,
  'skill': 1,
  'still': 1,
  'sudana': 1,
  'sundanes': 1,
  'univers': 1,
  'west': 1,
  'work': 1},
 557: {'10': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(11, 12), match='1'>,
  'First': 'c',
  'Last': '4',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abil': 1,
  'aim': 1,
  'alway': 1,
  'client': 2,
  'code': 1,
  'custom': 1,
  'decent': 1,
  'deposit_made': True,
  'design': 2,
  'email_verified': True,
  'etc.i': 1,
  'exact': 1,
  'exactli': 1,
  'experi': 1,
  'expert': 1,
  'facebook_connected': False,
  'find': 1,
  'flash': 1,
  'html5/css3': 1,
  'identity_verified': False,
  'javascript': 1,
  'joomla': 1,
  'jqueri': 1,
  'kind': 1,
  'knowledg': 1,
  'like': 1,
  'look': 1,
  'mostli': 1,
  'payment_verified': True,
  'phone_verified': True,
  'photoshop': 1,
  'php': 1,
  'pleas': 1,
  'practic': 1,
  'profile_complete': True,
  'provid': 2,
  'satisfact': 1,
  'seo': 1,
  'strive': 1,
  'want': 1,
  'web2.0': 1,
  'work': 1,
  'year': 1},
 558: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'b',
  'Last': '0',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'agent': 1,
  'applic': 1,
  'busi': 1,
  'call': 3,
  'center': 3,
  'comput': 2,
  'custom': 1,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'experi': 2,
  'extens': 1,
  'facebook_connected': False,
  'govern': 1,
  'hr': 1,
  'identity_verified': False,
  'industri': 3,
  'level': 1,
  'manag': 3,
  'market': 1,
  'occupi': 1,
  'outsid': 1,
  'payment_verified': False,
  'phone_verified': False,
  'posit': 3,
  'profile_complete': True,
  'sector': 1,
  'servic': 1,
  'supervisori': 1,
  'technic': 1,
  'telco': 1,
  'train': 1,
  'wide': 1,
  'work': 1},
 559: {'3': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
  'First': 't',
  'Last': '6',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'analysi': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'ms': 1,
  'payment_verified': False,
  'phone_verified': False,
  'prepar': 1,
  'profile_complete': True,
  'report': 1,
  'technic': 1,
  'year': 1},
 560: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'a',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'class': 1,
  'crm': 1,
  'custom': 2,
  'dedic': 1,
  'deliv': 1,
  'deposit_made': True,
  'desktop': 1,
  'develop': 1,
  'dynam': 1,
  'email_verified': True,
  'establish': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'game': 1,
  'goal': 1,
  'identity_verified': False,
  'industri': 1,
  'inform': 1,
  'infotech': 3,
  'kataria': 2,
  'meet': 1,
  'mobil': 1,
  'payment_verified': False,
  'pda': 1,
  'phone_verified': True,
  'platform': 2,
  'posses': 1,
  'product': 1,
  'profile_complete': True,
  'rim': 1,
  'satisfact': 1,
  'softwar': 1,
  'solut': 2,
  'strive': 1,
  'symbian': 1,
  'technolog': 1,
  'ultim': 1,
  'well': 2,
  'window': 1,
  'work': 2,
  'workforc': 1,
  'world': 1,
  'young': 1},
 561: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
  'Digit': <_sre.SRE_Match object; span=(3, 4), match='1'>,
  'First': 'J',
  'Last': '3',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'identity_verified': False,
  'part': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'softwar': 1,
  'time': 1},
 562: {"'m": 1,
  '...': 3,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'x',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'area': 1,
  'best': 1,
  'deposit_made': False,
  'email_verified': True,
  'eventhough': 1,
  'exist': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'junior': 1,
  'na': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'wan': 1,
  'world': 1},
 563: {'/asp.net': 1,
  '10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'c',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'deposit_made': False,
  'elast': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'mongodb': 1,
  'mssql': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'work': 1,
  'year': 1},
 564: {"''": 1,
  '400': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'v',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  '``': 1,
  'also': 1,
  'and/or': 1,
  'attitud': 1,
  'avail': 2,
  'client': 5,
  'complet': 1,
  'cost': 1,
  'decad': 1,
  'demand': 1,
  'deploy': 1,
  'deposit_made': False,
  'design': 3,
  'develop': 4,
  'devot': 1,
  'differ': 1,
  'direct': 1,
  'email_verified': True,
  'extens': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'friend': 1,
  'graphic': 2,
  'hundr': 1,
  'idea': 1,
  'identity_verified': False,
  'individu': 1,
  'inform': 1,
  'medium': 1,
  'need': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'portfolio': 2,
  'prefer': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 3,
  'qa': 1,
  'reduc': 1,
  'scalabl': 1,
  'servic': 1,
  'skype': 1,
  'small': 1,
  'solut': 1,
  'spend': 1,
  'support': 1,
  'task': 1,
  'thu': 1,
  'time': 1,
  'top': 1,
  'toward': 1,
  'web': 2,
  'work': 2,
  'world': 1},
 565: {'8': 1,
  '95': 1,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'l',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'accuraci': 1,
  'also': 1,
  'convers': 1,
  'data': 2,
  'deposit_made': False,
  'email_verified': True,
  'entri': 1,
  'experi': 1,
  'facebook_connected': True,
  'first': 1,
  'freelanc': 1,
  'get': 1,
  'hello': 1,
  'hemal': 2,
  'hope': 1,
  'identity_verified': False,
  'job': 2,
  'last': 1,
  'lathia': 2,
  'long': 1,
  'make': 1,
  "n't": 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'promis': 1,
  'relat': 1,
  'sir': 1,
  'want': 2,
  'year': 1},
 566: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 's',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'android': 1,
  'applic': 1,
  'build': 1,
  'deposit_made': True,
  'devic': 1,
  'email_verified': True,
  'facebook_connected': True,
  'help': 1,
  'identity_verified': False,
  'io': 1,
  'less': 1,
  'mobil': 1,
  'need': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'programm': 1,
  'read': 1,
  'talent': 1},
 567: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'o',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'admin': 1,
  'cpanel': 1,
  'de': 1,
  'deposit_made': False,
  'email_verified': True,
  'en': 1,
  'espa\\xc3\\xb1ol': 1,
  'facebook_connected': False,
  'gamer': 1,
  'geek': 1,
  'identity_verified': True,
  'joomla': 1,
  'nerd': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php-mysql': 1,
  'profile_complete': True,
  'server': 1,
  'twitter': 1},
 568: {'2checkout': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'h',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  'amazon': 1,
  'analyt': 1,
  'api': 1,
  'app': 1,
  'author': 1,
  'bootstrap': 1,
  'cart-': 1,
  'client': 1,
  'cm': 1,
  'code': 1,
  'codeignit': 1,
  'commerc': 1,
  'css': 1,
  'deposit_made': True,
  'design': 1,
  'designi': 1,
  'develop': 5,
  'development.mi': 1,
  'dot': 1,
  'ecommerc': 2,
  'email_verified': True,
  'everyth': 1,
  'exact': 1,
  'facebook_connected': True,
  'first': 1,
  'follow': 1,
  'framework': 1,
  'googl': 1,
  'graphic': 1,
  'html5': 1,
  'identity_verified': True,
  'javascript': 1,
  'joomla-': 1,
  'jqueri': 1,
  'json': 1,
  'knowledg': 1,
  'like': 1,
  'mani': 2,
  'map': 1,
  'match': 1,
  'mysql': 1,
  'net': 1,
  'os': 1,
  'payment': 1,
  'payment_verified': True,
  'paypal': 1,
  'phone_verified': True,
  'php': 1,
  'phpbb': 1,
  'profile_complete': True,
  'readi': 1,
  'requir': 1,
  'satisfact': 1,
  'servic': 1,
  'smarti': 1,
  'vision': 1,
  'web': 2,
  'websit': 2,
  'wide': 1,
  'wordpress': 1,
  'work': 2,
  'wp': 1,
  'xml': 1,
  'zen': 1,
  'zencart': 1},
 569: {'12': 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'a',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'ba': 1,
  'certifi': 1,
  'deposit_made': True,
  'email_verified': True,
  'english': 2,
  'esl': 1,
  'experi': 2,
  'facebook_connected': False,
  'field': 1,
  'greek': 1,
  'identity_verified': False,
  'languag': 1,
  'linguist': 1,
  'literatur': 1,
  'member': 1,
  'nativ': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'proofread': 1,
  'subtitl': 1,
  'teacher': 1,
  'translat': 2,
  'wide': 1,
  'year': 1},
 570: {'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'n',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': True,
  'design': 1,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True},
 571: {"''": 1,
  '2008.': 1,
  'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'm',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  '``': 1,
  'activ': 1,
  'art': 2,
  'artist': 1,
  'bachelor': 1,
  'bascom': 3,
  'blog': 1,
  'blogger': 1,
  'contribut': 1,
  'deposit_made': True,
  'editor': 2,
  'email_verified': True,
  'facebook_connected': True,
  'freelanc': 1,
  'histori': 1,
  'hold': 1,
  'identity_verified': False,
  'louisvil': 1,
  'magazin': 1,
  'morehead': 1,
  'payment_verified': True,
  'phone_verified': False,
  'photograph': 1,
  'pink': 1,
  'poet': 1,
  'profession': 1,
  'profile_complete': True,
  'sinc': 1,
  'state': 1,
  'univers': 2,
  'visual': 1,
  'well': 1,
  'writer': 1},
 572: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
  'Digit': None,
  'First': 'C',
  'Last': 'y',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'aim': 1,
  'and/or': 1,
  'best': 1,
  'build': 2,
  'busi': 1,
  'cost': 1,
  'decreas': 1,
  'deposit_made': False,
  'effect': 1,
  'email_verified': True,
  'facebook_connected': False,
  'get': 1,
  'identity_verified': False,
  'increas': 1,
  'job': 1,
  'manner': 1,
  'market': 1,
  'need': 1,
  'payment_verified': False,
  'phone_verified': False,
  'product': 1,
  'profile_complete': True,
  'revenu': 1,
  'softwar': 1,
  'suit': 1,
  'time': 1},
 573: {'...': 1,
  '7day': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'r',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'avail': 1,
  'broadband': 1,
  'connect': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': True,
  'freelanc': 1,
  'got': 1,
  'identity_verified': False,
  'new': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'week': 1},
 574: {'Caps': None,
  'Digit': None,
  'First': 'y',
  'Last': 'i',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'base': 1,
  'deposit_made': False,
  'done': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'knowledg': 1,
  'larg': 1,
  'm.b.a': 1,
  'one': 1,
  'payment_verified': False,
  'phone_verified': False,
  'presid': 1,
  'privat': 1,
  'profile_complete': True,
  'research': 1,
  'sector': 1,
  'top': 1},
 575: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'i',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'area': 1,
  'deposit_made': False,
  'email_verified': True,
  'employ': 1,
  'experi': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'great': 1,
  'hire': 1,
  'identity_verified': False,
  'job': 1,
  'mani': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'readi': 1,
  'today': 1,
  'work': 1},
 576: {'8': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='0'>,
  'First': 'm',
  'Last': 't',
  'Numchar': 6,
  'Vowel': None,
  'app': 3,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'metro': 1,
  'payment_verified': True,
  'phone': 1,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'ror': 1,
  'rubi': 1,
  'window': 2},
 577: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='3'>,
  'First': 's',
  'Last': '8',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abap': 1,
  'alreadi': 1,
  'bi': 1,
  'crm': 1,
  'cycl': 1,
  'deposit_made': False,
  'email_verified': True,
  'etc': 1,
  'experienc': 1,
  'facebook_connected': False,
  'full': 1,
  'hi': 1,
  'identity_verified': False,
  'implement': 2,
  'like': 1,
  'mainli': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'project': 2,
  'sap': 1,
  'sever': 1,
  'technolog': 1,
  'work': 2},
 578: {'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 't',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'orbit': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True},
 579: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'e',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'deadlin': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'given': 1,
  'identity_verified': False,
  'journalist': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'within': 1,
  'work': 1},
 580: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
  'First': 't',
  'Last': '3',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'alreadi': 1,
  'announc': 1,
  'art': 1,
  'band': 1,
  'california': 1,
  'check': 1,
  'citi': 1,
  'come': 1,
  'cool': 2,
  'creat': 1,
  'deposit_made': False,
  'dj': 1,
  'done': 1,
  'email_verified': True,
  'everybodi': 1,
  'facebook_connected': False,
  'find': 3,
  'go': 1,
  'graphic': 1,
  'hope': 1,
  'identity_verified': False,
  'jack': 1,
  'keep': 1,
  'list': 1,
  'local': 3,
  'mayb': 1,
  'michigan': 1,
  'music': 2,
  'myspac': 1,
  'night': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'put': 1,
  'radio': 1,
  'right': 1,
  'search': 1,
  'see': 1,
  'show': 1,
  'someth': 2,
  'start': 2,
  'state': 1,
  'station': 1,
  'tell': 1,
  'that': 1,
  'unit': 1,
  'upcom': 1,
  'us': 1,
  'want': 2,
  'week': 1},
 581: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'x',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'cheap': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'fast': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'qualit': 1},
 582: {"'ll": 1,
  "'m": 1,
  '2': 1,
  '3d': 3,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 's',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'ago': 1,
  'almost': 1,
  'also': 2,
  'author': 1,
  'autodesk': 2,
  'begin': 1,
  'cad': 2,
  'cnc': 1,
  'construct': 2,
  'cost-effect': 1,
  'data': 1,
  'decad': 1,
  'deposit_made': False,
  'design': 3,
  'desir': 1,
  'directli': 1,
  'easili': 1,
  'email_verified': True,
  'ensur': 1,
  'experi': 2,
  'facebook_connected': True,
  'glad': 1,
  'help': 1,
  'high-end': 1,
  'idea': 1,
  'identity_verified': False,
  'in-hous': 1,
  'interior': 1,
  'inventor': 1,
  'latest': 1,
  'machin': 1,
  'machineri': 1,
  'make': 2,
  'manufactur': 1,
  'maximum': 1,
  'mention': 1,
  'metal': 2,
  'model': 2,
  'modern': 1,
  'modifi': 1,
  'output': 2,
  'payment_verified': True,
  'phone_verified': False,
  'possibl': 1,
  'print': 2,
  'produc': 2,
  'profile_complete': True,
  'real': 1,
  'releas': 1,
  'reliabl': 1,
  'sens': 1,
  'sheet': 1,
  'shortest': 1,
  'softwar': 1,
  'someth': 1,
  'specif': 1,
  'teach': 1,
  'techniqu': 1,
  'toward': 1,
  'turn': 2,
  'use': 2,
  'virtual': 1,
  'world.i': 1,
  'worth': 1,
  'year': 1},
 583: {'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'l',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'advanc': 1,
  'amaz': 1,
  'and/or': 1,
  'api': 1,
  'brand': 1,
  'brochur': 1,
  'busi': 1,
  'code': 1,
  'complet': 1,
  'creat': 2,
  'creativ': 1,
  'custom': 2,
  'deliv': 1,
  'deposit_made': True,
  'design': 3,
  'develop': 2,
  'done': 1,
  'driven': 1,
  'e-commerc': 1,
  'easier': 1,
  'email_verified': True,
  'facebook_connected': False,
  'forum': 1,
  'get': 1,
  'goal': 1,
  'grow': 1,
  'i\\xe2\\u20ac\\u2122l': 1,
  'idea': 1,
  'identity_verified': False,
  'includ': 1,
  'innov': 1,
  'integr': 1,
  'life': 1,
  'like': 1,
  'look': 1,
  'make': 2,
  'market': 1,
  'meet': 1,
  'membership': 1,
  'object': 1,
  'offer': 1,
  'payment_verified': True,
  'phone_verified': True,
  'plugin': 1,
  'post': 1,
  'produc': 1,
  'profile_complete': True,
  'project': 1,
  'proven': 1,
  'requir': 1,
  'result': 1,
  'right': 1,
  'simpl': 1,
  'simplifi': 1,
  'solut': 4,
  'someth': 1,
  'specif': 1,
  'stand': 1,
  'strategi': 1,
  'task': 1,
  'taxonomi': 1,
  'thing': 1,
  'time': 1,
  'type': 1,
  'ultim': 1,
  'uniqu': 1,
  'websit': 3,
  'wordpress': 1,
  'you\\xe2\\u20ac\\u2122d': 1},
 584: {'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 's',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'contact': 2,
  'deposit_made': False,
  'detail': 1,
  'email_verified': True,
  'expect': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'me.mi': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'seo': 2,
  'type': 1,
  'u': 1,
  'work': 2},
 585: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'b',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'audienc': 1,
  'content': 1,
  'data': 1,
  'deposit_made': True,
  'develop': 1,
  'document': 1,
  'ecommerc': 1,
  'email_verified': True,
  'entri': 1,
  'experienc': 1,
  'facebook_connected': True,
  'focus': 1,
  'html/css': 1,
  'identity_verified': False,
  'manag': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'system': 1,
  'technic': 1,
  'type': 1,
  'websit': 1,
  'will': 2,
  'wordpress': 1,
  'work': 2,
  'write': 1},
 586: {'200+': 1,
  '2006\\xe2\\u20ac\\xa2': 2,
  '2009\\xe2\\u20ac\\xa2': 3,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
  'First': 's',
  'Last': '6',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  '\\xe2\\u20ac\\xa2': 1,
  'administr': 1,
  'applic': 1,
  'associ': 1,
  'autom': 3,
  'automation-': 3,
  'autosi': 3,
  'base': 1,
  'bash': 1,
  'batch': 1,
  'bmc': 2,
  'bourn': 1,
  'c': 1,
  'ca': 1,
  'chef': 3,
  'comput': 1,
  'consult': 6,
  'corpor': 1,
  'cover': 1,
  'cultur': 1,
  'deliveri': 1,
  'deposit_made': False,
  'devop': 2,
  'docker': 2,
  'email_verified': True,
  'facebook_connected': False,
  'follow': 1,
  'identity_verified': False,
  'infrastructur': 1,
  'lean': 1,
  'linux': 2,
  'manag': 1,
  'payment_verified': False,
  'perl': 3,
  'phone_verified': True,
  'profile_complete': True,
  'program': 2,
  'programming-': 1,
  'puppet': 3,
  'rhel': 1,
  'scripting-': 1,
  'shell': 3,
  'sinc': 7,
  'sked': 4,
  'solari': 1,
  'special': 1,
  'sql': 1,
  'system': 1,
  'technologies.-': 1,
  'toward': 1,
  'unix': 2,
  'waae': 2,
  'window': 1},
 587: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'a',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'contact': 1,
  'deposit_made': False,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'inform': 1,
  'messag': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pleas': 1,
  'profile_complete': True,
  'provid': 1,
  'qualif': 1,
  'regard': 1,
  'via': 1},
 588: {'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'i',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'deposit_made': True,
  'email_verified': True,
  'engin': 1,
  'enjoy': 1,
  'everi': 1,
  'facebook_connected': True,
  'good': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'softwar': 1,
  'time': 1},
 589: {'-*': 1,
  '--': 55,
  '10+': 1,
  '8+': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
  'First': 'n',
  'Last': '0',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'api': 1,
  'back-end': 1,
  'cakephp': 1,
  'cart': 1,
  'chase': 1,
  'checkout': 1,
  'cm': 1,
  'codeignitor': 1,
  'concept': 1,
  'custom': 1,
  'data': 1,
  'demo': 1,
  'deposit_made': False,
  'drupal': 1,
  'email_verified': True,
  'experi': 2,
  'expertis': 4,
  'express': 1,
  'facebook_connected': False,
  'framework': 1,
  'gateway': 2,
  'gb': 1,
  'good': 1,
  'huge': 1,
  'identity_verified': False,
  'instal': 1,
  'integr': 2,
  'knowledg': 1,
  'la': 1,
  'larg': 1,
  'like': 1,
  'link': 1,
  'magento': 1,
  'mysql': 3,
  'object': 1,
  'open': 1,
  'optim': 1,
  'orient': 1,
  'oscommerc': 1,
  'page': 1,
  'parti': 1,
  'payflow': 2,
  'payment': 1,
  'payment_verified': False,
  'paypal': 1,
  'perform': 1,
  'phone_verified': False,
  'php': 2,
  'pro': 1,
  'profile_complete': True,
  'scrap': 2,
  'script': 1,
  'soap': 1,
  'sourc': 1,
  'tabl': 2,
  'third': 1,
  'understand': 1,
  'use': 2,
  'web': 1,
  'websit': 1,
  'wordpess': 1,
  'work': 3,
  'year': 1,
  'zen': 1,
  'zend': 1},
 590: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'g',
  'Numchar': 6,
  'Vowel': None,
  'comput': 1,
  'deposit_made': False,
  'electr': 1,
  'email_verified': True,
  'engen': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True},
 591: {"'m": 1,
  '15': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'c',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'creativ': 1,
  'deposit_made': True,
  'email_verified': True,
  'experienc': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'italian': 1,
  'look': 1,
  'market': 2,
  'one': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'right': 1,
  'seo': 1,
  'strategist': 2,
  'web': 2,
  'year': 1},
 592: {'--': 62,
  'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 'o',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'abil': 1,
  'creativ': 1,
  'css': 1,
  'deposit_made': True,
  'design': 1,
  'digit': 1,
  'directli': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'html': 1,
  'identity_verified': False,
  'illustr': 1,
  'independ': 1,
  'inform': 1,
  'live': 1,
  'nation': 1,
  'offset': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'product': 1,
  'profile_complete': True,
  'provid': 1,
  'separ': 1,
  'servic': 1,
  'skill': 1,
  'video': 1,
  'wordpress': 1,
  'work': 1},
 593: {'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'm',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'applic': 3,
  'client-serv': 1,
  'custom': 3,
  'databas': 1,
  'deal': 1,
  'deposit_made': True,
  'design': 2,
  'develop': 3,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'internet/intranet': 1,
  'mobil': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'program': 1,
  'project': 1,
  'softwar': 3,
  'special': 1,
  'specif': 1,
  'type': 1,
  'work': 1},
 594: {"'s": 1,
  '***': 2,
  '***i': 1,
  '2': 1,
  '20': 1,
  '50': 3,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
  'Digit': None,
  'First': 'O',
  'Last': 's',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>,
  'accept': 1,
  'addit': 3,
  'agre': 1,
  'also': 3,
  'amount': 2,
  'apach': 1,
  'bad': 1,
  'begin': 1,
  'bid': 3,
  'budget': 1,
  'buyer': 1,
  'c/c++': 1,
  'case': 3,
  'chang': 3,
  'cm': 1,
  'complet': 1,
  'contact': 1,
  'control': 1,
  'cpanel': 1,
  'creload': 1,
  'crm': 1,
  'default': 1,
  'deposit_made': True,
  'discuss': 3,
  'done': 2,
  'e-commerc': 1,
  'either': 1,
  'email_verified': True,
  'escrow': 5,
  'esx': 1,
  'etc': 1,
  'everi': 1,
  'everyth': 2,
  'exactli': 1,
  'except': 1,
  'exchang': 1,
  'expect': 1,
  'experi': 1,
  'expert': 3,
  'facebook_connected': False,
  'follow': 2,
  'free': 1,
  'fund': 1,
  'get': 2,
  'hourli': 1,
  'hyper-v': 1,
  'identity_verified': False,
  'includ': 1,
  'iptabl': 1,
  'job': 3,
  'joomla': 1,
  'know': 1,
  'last': 1,
  'let': 1,
  'linux': 1,
  'local': 1,
  'long': 1,
  'magento': 1,
  'matter': 1,
  'mayb': 1,
  'microsoft': 1,
  'middl': 2,
  'minim': 1,
  'mssql': 1,
  "n't": 2,
  'negoti': 2,
  'note': 2,
  'offer': 1,
  'one': 1,
  'open': 1,
  'opportun': 1,
  'oracl': 1,
  'os': 1,
  'otherwis': 1,
  'panel': 1,
  'pay': 2,
  'payment': 4,
  'payment_verified': True,
  'pfsens': 1,
  'phone_verified': True,
  'php': 1,
  'place': 4,
  'pleas': 4,
  'plesk': 1,
  'prefer': 1,
  'process': 1,
  'profile_complete': True,
  'project': 8,
  'public': 1,
  'qmail': 1,
  'rate': 1,
  'regard': 1,
  'relat': 2,
  'releas': 3,
  'remain': 1,
  'requir': 2,
  'rest': 1,
  'result': 2,
  'revis': 1,
  'risk': 1,
  'scheme': 2,
  'scope': 1,
  'secur': 1,
  'see': 1,
  'sendmail': 1,
  'server': 3,
  'similar': 1,
  'small': 2,
  'someth': 1,
  'sourc': 1,
  'start': 4,
  'support': 1,
  'system': 1,
  'term': 2,
  'therefor': 1,
  'thing': 1,
  'tri': 1,
  'unix': 1,
  'upfront': 1,
  'usual': 2,
  'vmware': 1,
  'want': 1,
  'well': 1,
  'window': 1,
  'without': 1,
  'wordpress': 1,
  'work': 1,
  'work.2': 1,
  'work.in': 1,
  'wp': 1,
  'x-cart': 1,
  'zencart': 1},
 595: {"'s": 1,
  '15': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(15, 16), match='1'>,
  'First': 'm',
  'Last': '1',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'abl': 1,
  'advertis': 1,
  'advic': 1,
  'also': 1,
  'analysi': 1,
  'better': 1,
  'blog': 1,
  'brochur': 1,
  'campaign': 2,
  'charter': 1,
  'commun': 1,
  'consult': 1,
  'copywrit': 1,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'fashion': 1,
  'freelanc': 1,
  'full': 1,
  'function': 1,
  'googl': 1,
  'healthcar': 1,
  'hospit': 1,
  'identity_verified': False,
  'implement': 1,
  'includ': 2,
  'industri': 2,
  'institut': 1,
  'keyword': 1,
  'like': 1,
  'manag': 1,
  'market': 9,
  'materi': 1,
  'measur': 1,
  'media': 2,
  'member': 1,
  'newslett': 1,
  'offer': 2,
  'outsourc': 1,
  'particular': 1,
  'payment_verified': False,
  'phone_verified': False,
  'plan': 2,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'promot': 1,
  'proofread': 1,
  'qualif': 1,
  'recruit': 1,
  'research': 1,
  'servic': 3,
  'social': 1,
  'specif': 1,
  'strategi': 2,
  'suit': 1,
  'tourism': 1,
  'uk': 1,
  'websit': 1,
  'whole': 1,
  'work': 1,
  'would': 1,
  'year': 1},
 596: {'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'l',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'achiev': 1,
  'analyt': 1,
  'concept': 1,
  'creativ': 1,
  'demonstr': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'excel': 1,
  'except': 1,
  'facebook_connected': False,
  'goal': 1,
  'good': 1,
  'graphic': 1,
  'hand': 1,
  'identity_verified': False,
  'initi': 1,
  'inter': 1,
  'knowledg': 1,
  'motiv': 1,
  'organ': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'photoshop': 1,
  'possess': 1,
  'principl': 1,
  'profile_complete': True,
  'reason': 1,
  'record': 1,
  'self': 1,
  'set': 1,
  'skill': 2,
  'strong': 1,
  'track': 1,
  'well': 1,
  'well-vers': 1},
 597: {'--': 52,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
  'First': 'b',
  'Last': 'b',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'and/or': 1,
  'career': 1,
  'commun': 1,
  'comput': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'inform': 1,
  'object': 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'relat': 1,
  'would': 1},
 598: {"'m": 1,
  '6': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'l',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'advanc': 1,
  'applic': 1,
  'backend': 1,
  'complet': 1,
  'corpor': 1,
  'deposit_made': False,
  'develop': 1,
  'drupal': 1,
  'e-commerc': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'frontend': 1,
  'identity_verified': False,
  'industri': 1,
  'land': 1,
  'one': 1,
  'open': 1,
  'page': 1,
  'payment_verified': True,
  'phone_verified': True,
  'platform': 1,
  'profile_complete': True,
  'project': 1,
  'simpl': 1,
  'site': 1,
  'sourc': 1,
  'special': 1,
  'web': 2,
  'websit': 1,
  'year': 1},
 599: {'5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'm',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'alvarion': 2,
  'app': 2,
  'architect': 1,
  'bank': 1,
  'base': 1,
  'bucharest': 1,
  'client/serv': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'erp': 1,
  'experi': 1,
  'exposur': 1,
  'facebook_connected': False,
  'french': 1,
  'ibm': 1,
  'identity_verified': False,
  'industri': 1,
  'involv': 1,
  'java': 1,
  'java/j2e': 1,
  'manag': 2,
  'mani': 1,
  'network': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'romania': 1,
  'senior': 1,
  'softwar': 1,
  'spring': 1,
  'strut': 1,
  'system': 1,
  'technic': 1,
  'web': 1,
  'webservic': 1,
  'work': 1,
  'year': 1},
 600: {'3': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 't',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'ahm': 1,
  'assur': 1,
  'believ': 1,
  'best': 1,
  'code': 1,
  'css': 1,
  'css3': 1,
  'deliveri': 1,
  'deposit_made': True,
  'develop': 2,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'front-end': 2,
  'hello': 1,
  'honesti': 1,
  'html': 1,
  'html5': 1,
  'identity_verified': False,
  'java': 1,
  'jqueri': 1,
  'knowledg': 1,
  'last': 1,
  'layout': 1,
  'lot': 1,
  'nasir': 1,
  'new': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'qualiti': 1,
  'regular': 1,
  'research': 1,
  'script': 1,
  'semant': 1,
  'skill': 1,
  'strong': 1,
  'technolog': 1,
  'thank': 1,
  'time': 1,
  'visit': 1,
  'web': 1,
  'wordpress': 1,
  'work': 2,
  'xhtml': 1,
  'year': 1},
 601: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'j',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'chang': 1,
  'clip': 1,
  'color': 1,
  'correct': 1,
  'deposit_made': False,
  'detail': 1,
  'email_verified': True,
  'facebook_connected': False,
  'guidelin': 1,
  'identity_verified': False,
  'imag': 1,
  'instruct': 1,
  'manipul': 1,
  'payment_verified': False,
  'per': 1,
  'perform': 1,
  'phone_verified': False,
  'profile_complete': True,
  'skill': 1,
  'work': 1},
 602: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'o',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'applic': 1,
  'aw': 1,
  'deposit_made': True,
  'email_verified': True,
  'engin': 1,
  'especi': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'interest': 1,
  'look': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'relat': 1,
  'scale': 1,
  'senior': 1,
  'softwar': 1},
 603: {"'re": 1,
  '...': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'Digit': None,
  'First': 'E',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'ap': 1,
  'articl': 2,
  'associ': 1,
  'award': 1,
  'best': 3,
  'blog': 1,
  'book': 2,
  'career': 1,
  'categori': 2,
  'check': 1,
  'client': 1,
  'degre': 1,
  'deposit_made': True,
  'e-book': 1,
  'earn': 1,
  'edit': 1,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': False,
  'former': 1,
  'four': 1,
  'freelanc': 2,
  'get': 1,
  'give': 1,
  'identity_verified': False,
  'journal': 1,
  'journalist': 2,
  'last': 1,
  'let': 1,
  'look': 2,
  'materi': 2,
  'matters.i': 1,
  'mind': 1,
  'modern': 1,
  "n't": 2,
  'news': 2,
  'payment_verified': True,
  'phone_verified': False,
  'press': 1,
  'profile_complete': True,
  'rate': 1,
  'research': 1,
  'rewritten': 1,
  'see': 1,
  'someth': 1,
  'subject': 1,
  'submit': 2,
  'sure': 1,
  'today': 1,
  'turn': 1,
  'use': 2,
  'varieti': 1,
  'want': 2,
  'work': 1,
  'write': 1,
  'written': 1,
  'year': 1},
 604: {'2003': 1,
  '2008': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'e',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'access': 1,
  'administr': 3,
  'adob': 1,
  'also': 1,
  'area': 1,
  'arm': 1,
  'articul': 1,
  'camtasia': 1,
  'captiv': 1,
  'center': 1,
  'certif': 1,
  'certifi': 1,
  'consult': 1,
  'convers': 1,
  'data': 1,
  'deposit_made': False,
  'desgin': 1,
  'design': 1,
  'develop': 1,
  'elearn': 1,
  'email_verified': True,
  'examin': 1,
  'experi': 3,
  'extern': 1,
  'facebook_connected': False,
  'follow': 2,
  'identity_verified': False,
  'instruct': 2,
  'link': 1,
  'lm': 1,
  'mcsa': 1,
  'mct': 1,
  'microsoft': 1,
  'moodl': 3,
  'mssql': 3,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'server': 3,
  'system': 1,
  'univers': 1,
  'work': 1,
  'year': 1},
 605: {'15': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='7'>,
  'First': 's',
  'Last': '1',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'avail': 1,
  'basic': 1,
  'busi': 1,
  'commerci': 1,
  'conscienti': 1,
  'cv': 1,
  'deposit_made': True,
  'economi': 1,
  'elementari': 1,
  'email_verified': True,
  'english': 1,
  'estat': 1,
  'experi': 2,
  'facebook_connected': False,
  'financ': 3,
  'fluenci': 1,
  'freelanc': 2,
  'french': 1,
  'german': 1,
  'identity_verified': False,
  'insur': 1,
  'italian': 2,
  'knowledg': 2,
  'languag': 1,
  'live': 1,
  'mani': 1,
  'motiv': 1,
  'nativ': 1,
  'oral': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'real': 1,
  'request': 1,
  'russian': 1,
  'sinc': 1,
  'tourism': 2,
  'translat': 1,
  'work': 1,
  'written': 1,
  'year': 2},
 606: {'30': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
  'Digit': None,
  'First': 'W',
  'Last': 'z',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'actual': 1,
  'anyon': 1,
  'believ': 1,
  'build': 2,
  'combin': 1,
  'deposit_made': True,
  'develop': 2,
  'email_verified': True,
  'everyon': 1,
  'experi': 1,
  'facebook_connected': False,
  'find': 1,
  'identity_verified': False,
  'market': 1,
  'need': 1,
  'payment_verified': False,
  'perform': 1,
  'phone_verified': True,
  'produc': 2,
  'profile_complete': True,
  'sale': 2,
  'site': 1,
  'solut': 1,
  'web': 2,
  'websit': 2,
  'year': 1},
 607: {"'m": 1,
  '1': 1,
  '3': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'y',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
  'client': 1,
  'close': 1,
  'complex': 1,
  'contact': 1,
  'deliv': 1,
  'deposit_made': True,
  'email_verified': True,
  'expect': 1,
  'experi': 1,
  'facebook': 4,
  'facebook_connected': False,
  'follow': 1,
  'friend': 1,
  'googl': 2,
  'google+': 1,
  'hard': 1,
  'identity_verified': False,
  'like': 2,
  'maintain': 1,
  'manag': 1,
  'market': 1,
  'media': 1,
  'now.i': 1,
  'payment_verified': True,
  'phone_verified': True,
  'pride': 1,
  'profile_complete': True,
  'project': 2,
  'smm': 1,
  'social': 1,
  'subscrib': 2,
  'twitter': 2,
  'undertak': 1,
  'view': 1,
  'work': 1,
  'year': 2,
  'youtub': 4},
 608: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'a',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
  'advertis': 1,
  'alreadi': 1,
  'area': 1,
  'concept': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'new': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'tourism': 1,
  'work': 1},
 609: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'brand': 1,
  'bring': 1,
  'busi': 1,
  'campaign': 1,
  'client-fac': 1,
  'close': 1,
  'commun': 2,
  'conceptu': 1,
  'content': 1,
  'deposit_made': False,
  'digit': 1,
  'email_verified': True,
  'event': 1,
  'execut': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'includ': 1,
  'integr': 1,
  'intern': 1,
  'manag': 2,
  'market': 5,
  'media': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'public': 1,
  'recruit': 1,
  'relat': 1,
  'strategi': 1,
  'year': 1},
 610: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 's',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'choic': 1,
  'contact': 1,
  'critic': 1,
  'deposit_made': True,
  'develop': 2,
  'eight': 1,
  'email_verified': True,
  'facebook_connected': False,
  'fail': 1,
  'feel': 1,
  'free': 1,
  'full-stack': 1,
  'identity_verified': False,
  'look': 1,
  'magento': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pleas': 1,
  'plu': 1,
  'problem': 1,
  'profile_complete': True,
  'project': 1,
  'queri': 1,
  'right': 1,
  'skill': 1,
  'solut': 1,
  'thank': 1,
  'web': 1,
  'would': 1,
  'year': 1},
 611: {"'s": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='1'>,
  'First': 't',
  'Last': '3',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'android': 1,
  'applic': 2,
  'bespok': 1,
  'best': 1,
  'bigcommerc': 1,
  'busi': 2,
  'c': 1,
  'certifi': 3,
  'ci': 1,
  'client': 1,
  'cost': 1,
  'creat': 1,
  'creativ': 1,
  'crm': 1,
  'custom': 2,
  'dear': 1,
  'deliv': 1,
  'deposit_made': False,
  'develop': 2,
  'eclips': 1,
  'email_verified': True,
  'erp': 1,
  'expertis': 1,
  'experts-': 1,
  'facebook_connected': False,
  'fit': 1,
  'help': 1,
  'identity_verified': True,
  'inventori': 1,
  'io': 1,
  'java': 1,
  'laravel': 1,
  'last': 1,
  'long': 1,
  'manag': 1,
  'master': 1,
  'mcsd': 1,
  'mct': 1,
  'microsoft': 3,
  'mission': 1,
  'mobil': 1,
  'natur': 1,
  'need': 1,
  'object': 1,
  'offer': 1,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': True,
  'phonegap': 1,
  'php': 1,
  'po': 1,
  'prefer': 1,
  'profile_complete': True,
  'proud': 1,
  'provid': 1,
  'rang': 1,
  'saa': 1,
  'salesforc': 2,
  'satisfi': 1,
  'scrum': 1,
  'servic': 1,
  'shopifi': 1,
  'softwar': 1,
  'solut': 4,
  'specialist': 1,
  'swift': 1,
  'team': 1,
  'technolog': 2,
  'us': 1,
  'volus': 1,
  'web': 2,
  'wide': 1,
  'wordpress': 1,
  'yii': 1},
 612: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
  'First': 'o',
  'Last': '5',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'applic': 1,
  'articl': 2,
  'cloud': 1,
  'comput': 1,
  'creat': 1,
  'decis': 1,
  'deposit_made': True,
  'design': 2,
  'develop': 2,
  'dozen': 1,
  'e-commerc': 1,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'hii': 1,
  'hire': 1,
  'hundr': 1,
  'identity_verified': False,
  'impress': 1,
  'mobil': 2,
  'one': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'program': 1,
  'proud': 1,
  'rang': 1,
  'self': 1,
  'seo': 1,
  'servic': 1,
  'skill': 1,
  'taught': 1,
  'web': 1,
  'websit': 1,
  'write': 1,
  'written': 1},
 613: {'...': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'a',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
  'alway': 1,
  'basi': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'hard': 1,
  'identity_verified': False,
  'minimum': 1,
  'money': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'readi': 2,
  'requir': 1,
  'start': 1,
  'urgent': 1,
  'work': 3},
 614: {'2': 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 't',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'codeignit': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'framework': 1,
  'identity_verified': False,
  'laravel': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 2,
  'profile_complete': True,
  'use': 1,
  'year': 1},
 615: {'.we': 1,
  '3': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='1'>,
  'First': 'f',
  'Last': 'e',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
  'accord': 1,
  'advanc': 1,
  'agreement': 1,
  'ambassador': 1,
  'appreci': 1,
  'asset': 1,
  'bangladesh': 2,
  'base': 4,
  'believ': 3,
  'best': 1,
  'build': 1,
  'busi': 2,
  'career': 1,
  'client': 3,
  'collect': 1,
  'commit': 1,
  'compani': 4,
  'complet': 2,
  'complianc': 1,
  'comput': 1,
  'consist': 1,
  'custom': 4,
  'decad': 1,
  'dedic': 1,
  'delight': 1,
  'deposit_made': False,
  'dhaka': 1,
  'director': 1,
  'drive': 1,
  'effort': 1,
  'email_verified': True,
  'employ': 1,
  'employe': 2,
  'enhanc': 1,
  'ensur': 2,
  'environ': 1,
  'equal': 1,
  'establish': 1,
  'everi': 1,
  'exceed': 1,
  'excel': 1,
  'experi': 1,
  'experienc': 1,
  'f1': 6,
  'facebook_connected': False,
  'firm': 1,
  'foreign': 1,
  'frequent': 1,
  'gener': 1,
  'global': 1,
  'growth': 1,
  'guarante': 1,
  'highli': 2,
  'identifi': 1,
  'identity_verified': False,
  'industri': 2,
  'inform': 1,
  'ite': 2,
  'knowledg': 1,
  'led': 1,
  'like': 1,
  'live': 1,
  'mainten': 1,
  'make': 1,
  'market': 1,
  'meet': 1,
  'mr.': 1,
  'need': 2,
  'offer': 1,
  'oper': 1,
  'opportun': 1,
  'outsourc': 2,
  'park': 1,
  'payment_verified': False,
  'peak': 1,
  'peopl': 2,
  'person': 1,
  'phone_verified': False,
  'price': 1,
  'profession': 2,
  'profile_complete': True,
  'proven': 1,
  'provid': 1,
  'provis': 1,
  'qualiti': 5,
  'rang': 1,
  'reason': 1,
  'regist': 1,
  'regul': 1,
  'relat': 1,
  'represent': 1,
  'resourc': 1,
  'result': 1,
  'return': 1,
  'reward': 1,
  'satisfact': 1,
  'sector': 1,
  'secur': 1,
  'servic': 1,
  'skill': 2,
  'softwar': 1,
  'solut': 2,
  'solutions.w': 1,
  'specif': 1,
  'speed': 1,
  'strive': 2,
  'support': 1,
  'sure': 1,
  'system': 1,
  'team': 2,
  'technic': 1,
  'technolog': 3,
  'time': 1,
  'total': 3,
  'trade': 1,
  'valu': 3,
  'valuabl': 1,
  'ventur': 1,
  'work': 2},
 616: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
  'Digit': None,
  'First': 'J',
  'Last': 'c',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'access': 1,
  'applic': 1,
  'databas': 1,
  'deliv': 1,
  'deliveri': 1,
  'deposit_made': True,
  'driven': 1,
  'drupal': 1,
  'ektron': 1,
  'email_verified': True,
  'exampl': 1,
  'expert': 1,
  'facebook_connected': False,
  'fast': 1,
  'get': 1,
  'identity_verified': False,
  'joomla': 1,
  'msql': 1,
  'mysql': 1,
  'opensourc': 1,
  'oracl': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'special': 1,
  'sybas': 1,
  'web': 1,
  'wordpress': 1,
  'work': 1,
  'xml': 1},
 617: {"'ve": 1,
  '+5:30': 1,
  '40': 1,
  '6': 1,
  '9:00': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'i',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'actionscript': 1,
  'ajax': 1,
  'also': 1,
  'avail': 1,
  'best': 1,
  'cm': 1,
  'codeignit': 1,
  'commun': 1,
  'consideration.thank': 1,
  'contact': 1,
  'creat': 3,
  'css': 1,
  'current': 1,
  'deposit_made': False,
  'design': 2,
  'develop': 1,
  'done': 1,
  'email_verified': True,
  'english': 1,
  'experi': 2,
  'extj': 1,
  'facebook_connected': False,
  'flash': 1,
  'forward': 1,
  'framework': 1,
  'gmt': 1,
  'good': 1,
  'hello': 1,
  'hour': 1,
  'html/xhtml': 1,
  'identity_verified': False,
  'integr': 1,
  'joomla': 1,
  'jqueri': 2,
  'know': 1,
  'knowledg': 1,
  'let': 1,
  'like': 2,
  'look': 1,
  'mani': 1,
  'monday': 1,
  'mootool': 1,
  'mysql': 1,
  'opencart': 1,
  'payment_verified': False,
  'per': 1,
  'phone_verified': False,
  'photoshop': 1,
  'php': 1,
  'pleas': 1,
  'plugin': 1,
  'posit': 1,
  'profile_complete': True,
  'project': 1,
  'prototyp': 1,
  'respons': 1,
  'singh': 1,
  'site': 1,
  'smarti': 1,
  'stuff': 1,
  'templat': 1,
  'thank': 1,
  'time': 2,
  'url': 10,
  'vast': 2,
  'want': 1,
  'web': 2,
  'week': 1,
  'well.i': 1,
  'widget': 1,
  'wordpress': 1,
  'work': 2,
  'year': 1,
  'zend': 1},
 618: {'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'y',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'also': 1,
  'articl': 3,
  'content': 1,
  'contribut': 1,
  'could': 1,
  'deadlin': 1,
  'deposit_made': True,
  'email_verified': True,
  'ensur': 1,
  'especi': 1,
  'facebook_connected': False,
  'geek': 1,
  'grow': 1,
  'identity_verified': False,
  'make': 1,
  'meet': 1,
  'mine': 1,
  'miscellan': 1,
  'music': 1,
  'nearli': 1,
  'note': 1,
  'payment_verified': False,
  'phone_verified': False,
  'point': 1,
  'profession': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'side': 1,
  'sinc': 1,
  'site': 1,
  'web': 1,
  'work': 1,
  'writer': 1,
  'year': 1},
 619: {'10': 2,
  'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'n',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'ax': 1,
  'cakephp': 1,
  'cart': 1,
  'cm': 1,
  'cms-': 1,
  'codeignit': 1,
  'commerc': 1,
  'concret': 1,
  'cost': 1,
  'cs': 1,
  'css-': 1,
  'css2': 1,
  'css3': 1,
  'dbm': 1,
  'deposit_made': False,
  'develop': 1,
  'dhtml': 1,
  'drupal': 1,
  'e': 1,
  'e-commerc': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'git': 1,
  'good': 1,
  'html': 1,
  'identity_verified': False,
  'javascript': 1,
  'joomla': 1,
  'jqueri': 1,
  'json': 1,
  'last': 1,
  'magento': 1,
  'mainli': 1,
  'mssql-': 1,
  'mvc': 1,
  'mysql': 1,
  'opencart': 1,
  'opensourc': 1,
  'oracl': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 3,
  'postgresql': 1,
  'profile_complete': True,
  'program': 2,
  'python': 1,
  'quick': 1,
  'reason': 1,
  'ror': 1,
  'rubi': 1,
  'skill': 2,
  'smarty-': 1,
  'strong': 1,
  'subvers': 1,
  'svn': 1,
  'symfoni': 1,
  'tool': 1,
  'tortois': 1,
  'turn': 1,
  'use': 1,
  'virtuemart': 1,
  'vss': 1,
  'web': 1,
  'websit': 1,
  'wordpress': 1,
  'work': 2,
  'xcart': 1,
  'xhtml': 1,
  'xml-': 1,
  'year': 2,
  'yii': 1,
  'yui': 1,
  'zencart': 1,
  'zend': 2},
 620: {"'m": 3,
  "'ve": 1,
  '10': 1,
  '100': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
  'First': 'm',
  'Last': '0',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>,
  'ad': 1,
  'becom': 1,
  'busi': 1,
  'card': 1,
  'cd': 1,
  'client': 3,
  'code': 1,
  'conscienti': 1,
  'creation': 1,
  'deadlin': 1,
  'decid': 1,
  'deposit_made': True,
  'design': 2,
  'develop': 1,
  'done': 1,
  'email_verified': True,
  'encount': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'find': 1,
  'freelanc': 2,
  'get': 1,
  'graphic': 1,
  'html': 1,
  'ident': 1,
  'identity_verified': False,
  'illustr': 1,
  'independ': 1,
  'indesign': 1,
  'last': 1,
  'like': 1,
  'make': 1,
  'mani': 1,
  'materi': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'profession': 1,
  'profile_complete': True,
  'promot': 1,
  'provid': 1,
  'puzzl': 1,
  'quark': 1,
  'recent': 1,
  'simpl': 1,
  'skill': 1,
  'solut': 1,
  'spent': 1,
  'sure': 1,
  'thing': 1,
  'thorough': 1,
  'use': 2,
  'usual': 1,
  'way': 1,
  'websit': 1,
  'well': 1,
  'whatev': 1,
  'work': 1,
  'year': 2},
 621: {'9': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'c',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'client': 1,
  'commit': 1,
  'deposit_made': True,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'full': 1,
  'graphic': 1,
  'identity_verified': False,
  'intro': 1,
  'motion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'specialist': 1,
  'time': 1,
  'video': 1,
  'work': 1,
  'world': 1,
  'year': 1},
 622: {"'m": 2,
  "'re": 1,
  '200': 1,
  '3,000': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='3'>,
  'First': 't',
  'Last': '6',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'also': 1,
  'alway': 1,
  'articl': 2,
  'client': 3,
  'content': 1,
  'copi': 1,
  'creat': 1,
  'credit': 1,
  'deposit_made': False,
  'design': 1,
  'detail-ori': 1,
  'differ': 1,
  'ebook': 2,
  'ehow': 1,
  'email_verified': True,
  'everi': 2,
  'exactli': 2,
  'facebook_connected': True,
  'fast': 2,
  'fiction': 1,
  'film': 2,
  'five': 1,
  'found': 1,
  'four': 1,
  'graphic': 1,
  'great': 1,
  'high-qual': 1,
  'identity_verified': False,
  'import': 1,
  'independ': 1,
  'individu': 1,
  'intern': 1,
  'market': 1,
  'name': 1,
  'need': 1,
  'non-fict': 1,
  'novel': 1,
  'one': 2,
  'payment_verified': False,
  'phone_verified': True,
  'produc': 1,
  'profile_complete': True,
  'provid': 3,
  'publish': 1,
  'qualiti': 1,
  'question': 1,
  'research': 1,
  'result': 1,
  'screenwrit': 1,
  'seek': 1,
  'sold': 1,
  'strive': 1,
  'today': 1,
  'tomorrow': 1,
  'topic': 1,
  'trail': 1,
  'travel': 1,
  'turnaround': 2,
  'two': 1,
  'understand': 1,
  'usa': 1,
  'varieti': 1,
  'vision': 1,
  'want': 1,
  'web': 1,
  'well': 2,
  'whether': 1,
  'within': 1,
  'work': 4,
  'writer': 1,
  'written': 2},
 623: {'6': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': None,
  'First': 'P',
  'Last': 'r',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'compani': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'huge': 1,
  'identity_verified': False,
  'intern': 1,
  'languag': 1,
  'local': 1,
  'one': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'program': 1,
  'small': 1,
  'techniqu': 1,
  'use': 1,
  'variou': 1,
  'web': 1,
  'well': 1,
  'work': 1,
  'year': 1},
 624: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 's',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'algorithm': 1,
  'analyz': 1,
  'applic': 1,
  'background': 1,
  'base': 1,
  'cell': 1,
  'code': 1,
  'cycl': 1,
  'data': 1,
  'deploy': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'formula': 1,
  'identity_verified': False,
  'industri': 1,
  'knowledg': 1,
  'life': 1,
  'manufactur': 1,
  'object-ori': 1,
  'payment_verified': False,
  'phase': 1,
  'phone_verified': True,
  'profile_complete': True,
  'program': 2,
  'proven': 1,
  'softwar': 1,
  'strong': 1,
  'structur': 1,
  'translat': 1,
  'use': 1,
  'vba': 2,
  'web': 1,
  'well-vers': 1,
  'work': 1,
  'year': 1},
 625: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
  'First': 'J',
  'Last': '8',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'alway': 1,
  'deliveri': 1,
  'deposit_made': True,
  'detail': 1,
  'due': 1,
  'email_verified': True,
  'ensur': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'provid': 1,
  'qualiti': 1,
  'receiv': 1,
  'time': 2,
  'work': 2},
 626: {'5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
  'First': 'n',
  'Last': '5',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'development.i': 1,
  'done': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'mani': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'web': 1,
  'year': 1},
 627: {'2010.': 1,
  '2017': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 't',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'autocad': 1,
  'back': 2,
  'becom': 1,
  'chanc': 1,
  'deposit_made': False,
  'email_verified': True,
  'enough': 1,
  'establish': 1,
  'etab': 1,
  'excel': 1,
  'expert': 1,
  'facebook_connected': True,
  'fast': 1,
  'finish': 1,
  'freelanc': 2,
  'get': 1,
  'good': 1,
  'great': 1,
  'grow': 1,
  'here.i': 1,
  'identity_verified': True,
  'improv': 1,
  'join': 1,
  'less': 1,
  'local': 1,
  'octob': 1,
  'payment_verified': True,
  'phone_verified': True,
  'pleasur': 1,
  'postgradu': 1,
  'profile_complete': True,
  'program': 2,
  'project': 1,
  'sinc': 1,
  'site.i': 1,
  'skill': 1,
  'vb': 1,
  'wish': 1,
  'wonder': 1,
  'work': 1},
 628: {'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 's',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'accuraci': 1,
  'afford': 1,
  'amount': 1,
  'certainli': 1,
  'confid': 1,
  'coupl': 1,
  'deposit_made': True,
  'drive': 1,
  'elpreiss': 2,
  'email_verified': True,
  'enthusiasm': 1,
  'experi': 1,
  'facebook_connected': False,
  'feel': 1,
  'financi': 1,
  'highest': 1,
  'hire': 1,
  'identity_verified': False,
  'level': 1,
  'make': 1,
  'motiv': 1,
  'need': 1,
  'opportun': 1,
  'origin': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'qualiti': 1,
  'quot': 1,
  'satisfi': 1,
  'self': 1,
  'skill': 1,
  'success': 1,
  'suit': 1,
  'today': 1,
  'vast': 1,
  'write': 1},
 629: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
  'Digit': None,
  'First': 'W',
  'Last': 'a',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'build': 1,
  'busi': 3,
  'client': 2,
  'deposit_made': False,
  'design': 2,
  'develop': 1,
  'email_verified': True,
  'establish': 1,
  'facebook_connected': False,
  'happen': 1,
  'happi': 1,
  'help': 1,
  'identity_verified': False,
  'internet': 1,
  'make': 2,
  'money': 2,
  'payment_verified': False,
  'phone_verified': False,
  'portfolio': 1,
  'profile_complete': True,
  'relationship': 1,
  'run': 2,
  'seo': 1,
  'someth': 1,
  'success': 1,
  'via': 2,
  'web': 2,
  'whether': 1},
 630: {'.develop': 1,
  '5': 1,
  '8+': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'l',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'abl': 1,
  'ajax': 1,
  'android': 2,
  'api': 1,
  'app': 2,
  'applic': 1,
  'asp.net': 1,
  'aspir': 1,
  'back-end': 1,
  'c': 2,
  'cake': 1,
  'challeng': 1,
  'codeignitor': 1,
  'css': 1,
  'css3': 1,
  'deposit_made': True,
  'develop': 5,
  'drupal': 1,
  'e-commerc': 1,
  'eclips': 2,
  'email_verified': True,
  'estim': 1,
  'excel': 1,
  'experi': 2,
  'facebook_connected': False,
  'gap': 1,
  'gateway': 1,
  'html5': 1,
  'identity_verified': False,
  'io': 2,
  'iphone/ipad': 1,
  'javascript': 2,
  'joomla': 2,
  'jqueri': 2,
  'knowledg': 1,
  'lamp': 1,
  'languag': 1,
  'linux': 1,
  'magento': 3,
  'make': 1,
  'map': 1,
  'mobil': 1,
  'mvc': 2,
  'mysql': 1,
  'nativ': 1,
  'notif': 1,
  'object': 1,
  'opencart': 1,
  'oscommerc': 1,
  'payment_verified': False,
  'phone': 1,
  'phone_verified': False,
  'php': 3,
  'profession': 1,
  'profile_complete': True,
  'programm': 1,
  'project': 1,
  'prototyp': 1,
  'servic': 1,
  'skill': 1,
  'smartphon': 1,
  'standard': 1,
  'take': 1,
  'use': 1,
  'web': 2,
  'wordpress': 2,
  'work': 1,
  'xcode': 1,
  'xhtml': 1,
  'year': 1,
  'yii': 1,
  'zencart': 1,
  'zend': 3},
 631: {"'ll": 1,
  "'m": 1,
  '...': 1,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'm',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'also': 1,
  'assign': 1,
  'awesom': 1,
  'banner': 1,
  'best': 1,
  'book': 1,
  'busi': 1,
  'card': 1,
  'client': 2,
  'comment': 1,
  'creativ': 1,
  'deposit_made': True,
  'design': 4,
  'e-mail': 1,
  'edit': 1,
  'email_verified': True,
  'etc': 1,
  'experi': 1,
  'facebook_connected': True,
  'find': 1,
  'fit': 1,
  'flyer': 1,
  'graphic': 3,
  'head': 1,
  'hesit': 1,
  'identity_verified': True,
  'imag': 1,
  'introduc': 1,
  'job': 2,
  'kept': 1,
  'letter': 1,
  'like': 1,
  'link': 1,
  'logo': 1,
  'opportun': 1,
  'past': 1,
  'payment_verified': True,
  'phone_verified': True,
  'pleas': 1,
  'poster': 1,
  'profession': 1,
  'profile_complete': True,
  'satisfi': 1,
  'seek': 1,
  'self': 1,
  'show': 1,
  'signatur': 1,
  'special': 1,
  'sure': 1,
  'trust': 1,
  'type': 1,
  'variou': 1,
  'visit': 1,
  'web': 1,
  'without': 1,
  'work': 1,
  'would': 1,
  'year': 1},
 632: {'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 'm',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'activ': 1,
  'aim': 1,
  'anim': 1,
  'art': 1,
  'busi': 2,
  'consult': 1,
  'content': 1,
  'custom': 1,
  'deposit_made': False,
  'design': 1,
  'domain': 1,
  'edit': 1,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'field': 1,
  'follow': 1,
  'graphic': 1,
  'host': 1,
  'identity_verified': False,
  'internet': 1,
  'larg': 1,
  'number': 1,
  'optim': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photographi': 1,
  'profession': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'radio': 1,
  'registr': 1,
  'search': 1,
  'server': 1,
  'servic': 1,
  'solut': 1,
  'support': 1,
  'video': 1,
  'web': 2,
  'web-bas': 1,
  'write-up': 1},
 633: {'15': 1,
  '2': 1,
  '3': 1,
  '5': 2,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
  'Digit': None,
  'First': 'K',
  'Last': 'l',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abil': 1,
  'abl': 3,
  'ajax': 1,
  'also': 1,
  'amazon': 1,
  'background': 1,
  'banner': 1,
  'believ': 1,
  'best': 1,
  'card': 1,
  'chang': 1,
  'client': 1,
  'code': 1,
  'configur': 1,
  'convert': 1,
  'creat': 2,
  'cs3': 1,
  'css': 1,
  'day': 1,
  'deposit_made': True,
  'design': 1,
  'ean': 1,
  'edit': 1,
  'email': 2,
  'email_verified': True,
  'etc': 1,
  'etsi': 1,
  'everi': 1,
  'experi': 2,
  'experienc': 1,
  'facebook_connected': True,
  'found': 1,
  'full': 1,
  'fulli': 1,
  'gmail': 1,
  'good': 2,
  'got': 1,
  'graphic': 2,
  'hi': 1,
  'hotmail': 1,
  'hr': 1,
  'html': 3,
  'identity_verified': False,
  'imag': 2,
  'it.i': 1,
  'javascript': 1,
  'jqueri': 1,
  'kamal': 1,
  'key': 1,
  'like': 1,
  'logo': 1,
  'mainli': 1,
  'mani': 1,
  'mostofa': 1,
  'number': 1,
  'onlin': 1,
  'payment_verified': True,
  'phone_verified': True,
  'photoshop': 1,
  'php': 1,
  'product': 1,
  'profession': 2,
  'profile_complete': True,
  'psd': 2,
  'row': 1,
  'satisfied.i': 1,
  'seo': 1,
  'similar': 1,
  'skype': 1,
  'stop': 1,
  'success': 1,
  'support': 1,
  'templat': 2,
  'theme': 1,
  'time': 2,
  'upload': 1,
  'upwork': 1,
  'visit': 1,
  'wait': 1,
  'web': 1,
  'without': 1,
  'wordpress': 1,
  'work': 4,
  'work.i': 1,
  'worker': 1,
  'yahoo': 1,
  'year': 1},
 634: {"'s": 1,
  '1.': 1,
  '2.': 1,
  '3.': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
  'First': 'A',
  'Last': '1',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  '``': 1,
  'attack': 1,
  'bs': 1,
  'colleg': 1,
  'data': 1,
  'degre': 1,
  'deposit_made': False,
  'differ': 2,
  'done': 1,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'name': 1,
  'ngo': 1,
  'payment_verified': False,
  'phone_verified': False,
  'prevent': 1,
  'profile_complete': True,
  'project': 1,
  'research': 1,
  'school': 1,
  'servic': 1,
  'websit': 1},
 635: {'1': 1,
  '1b': 2,
  '2': 2,
  '3': 3,
  '4': 1,
  '5': 1,
  '6': 1,
  '7': 1,
  '8': 1,
  '9': 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'k',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'ad': 1,
  'add': 1,
  'anim': 3,
  'bold': 1,
  'crystal': 1,
  'deposit_made': False,
  'deterg': 1,
  'email': 1,
  'email_verified': True,
  'episod': 5,
  'experi': 1,
  'facebook_connected': False,
  'first': 2,
  'forest': 1,
  'identity_verified': False,
  'lost': 1,
  'oxford': 9,
  'payment_verified': False,
  'phone_verified': True,
  'phonic': 2,
  'profession': 1,
  'profile_complete': True,
  'project': 3,
  'rain': 1,
  'read': 2,
  'scienc': 3,
  'serial': 2,
  'stage': 9,
  'star': 2,
  'talk': 6,
  'tele': 2,
  'televis': 2,
  'text': 1,
  'tree': 2,
  'web': 1,
  'zoo': 1},
 636: {'2.0': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'e',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'c': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': True,
  'pl': 1,
  'profile_complete': True,
  'qualit': 1,
  'quickli': 1,
  'remot': 1,
  'servic': 1,
  'sql': 1,
  'work': 1},
 637: {'5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(11, 12), match='2'>,
  'First': 'u',
  'Last': '9',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
  'abl': 1,
  'academ': 1,
  'advoc': 1,
  'also': 2,
  'articl': 1,
  'audienc': 2,
  'author': 1,
  'background': 1,
  'blog': 1,
  'build': 1,
  'campaign': 1,
  'co-found': 1,
  'commun': 1,
  'complet': 1,
  'complex': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 1,
  'directli': 1,
  'divers': 2,
  'email_verified': True,
  'exist': 1,
  'experienc': 2,
  'explain': 1,
  'facebook_connected': False,
  'green': 1,
  'grievanc': 1,
  'hone': 1,
  'idea': 1,
  'identity_verified': False,
  'issu': 2,
  'last': 1,
  'led': 1,
  'letter': 1,
  'maintain': 1,
  'manag': 1,
  'media': 2,
  'media.i': 1,
  'numer': 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': True,
  'polici': 1,
  'post': 1,
  'press': 1,
  'print': 1,
  'profile_complete': True,
  'profit': 1,
  'program': 1,
  'provid': 1,
  'radio': 1,
  'ran': 1,
  'rang': 1,
  'releas': 1,
  'research': 1,
  'scratch': 1,
  'sector': 1,
  'senat': 1,
  'simpli': 1,
  'six': 1,
  'skill': 1,
  'social': 1,
  'solut': 1,
  'start': 1,
  'strong': 1,
  'submiss': 1,
  'sustain': 1,
  'tertiari': 1,
  'train': 1,
  'upon': 1,
  'whether': 1,
  'wordpress': 1,
  'work': 2,
  'workshop': 1,
  'write': 3,
  'wrote': 1,
  'year': 2},
 638: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'k',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'get': 1,
  'identity_verified': False,
  'job': 1,
  'man': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'successful': 1,
  'want': 1},
 639: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
  'First': 'm',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'advanc': 1,
  'assur': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'good': 1,
  'identity_verified': False,
  'job': 2,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'sincer': 1,
  'speed': 1,
  'thank': 1,
  'type': 1,
  'want': 1},
 640: {'6': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
  'First': 's',
  'Last': '7',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'deposit_made': False,
  'develop': 1,
  'digit': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'freelanc': 1,
  'identity_verified': False,
  'kumar': 1,
  'market': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profess': 1,
  'profile_complete': True,
  'self': 1,
  'web': 1,
  'work': 1,
  'year': 1},
 641: {'--': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='4'>,
  'First': 's',
  'Last': '4',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'associ': 1,
  'bangalor': 3,
  'blog': 1,
  'bosch': 2,
  'coimbator': 2,
  'corpor': 1,
  'current': 1,
  'degre': 1,
  'delhi': 1,
  'deposit_made': True,
  'develop': 2,
  'differ': 1,
  'diploma': 1,
  'e-learn': 1,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'graduat': 1,
  'hold': 1,
  'human': 1,
  'icici': 1,
  'identity_verified': False,
  'includ': 1,
  'india': 3,
  'indian': 1,
  'manag': 1,
  'mani': 1,
  'mnc': 1,
  'new': 1,
  'payment_verified': True,
  'phone_verified': False,
  'post': 1,
  'profile_complete': True,
  'resourc': 1,
  'robert': 2,
  'skill': 1,
  'societi': 1,
  'studi': 1,
  'train': 3,
  'trainer': 1,
  'univers': 1,
  'visit': 1,
  'work': 1,
  'write': 1,
  'writer': 1},
 642: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'S',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'comput': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'liter': 1,
  'need': 1,
  'part': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'time': 1},
 643: {'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'h',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'excel': 1,
  'expert': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'microsoft': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': False,
  'powerpoint': 1,
  'profile_complete': True,
  'set': 1,
  'word': 1,
  'xp': 1},
 644: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'j',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'blog': 1,
  'book': 1,
  'deposit_made': False,
  'doctor': 1,
  'email_verified': True,
  'facebook_connected': False,
  'good': 1,
  'grammar': 1,
  'identity_verified': False,
  'magazin': 1,
  'medic': 2,
  'payment_verified': True,
  'phone_verified': True,
  'produc': 1,
  'profile_complete': True,
  'proofread': 1,
  'read': 1,
  'spare': 1,
  'time': 1,
  'write': 1},
 645: {"'ll": 1,
  '14': 1,
  '2004': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'k',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'abl': 1,
  'accept': 1,
  'across': 1,
  'alway': 1,
  'arshi': 2,
  'arvind': 2,
  'believ': 1,
  'better': 1,
  'bid': 1,
  'confid': 1,
  'custom': 1,
  'customers.i': 1,
  'deliv': 1,
  'deliveri': 1,
  'deposit_made': True,
  'design/develop': 1,
  'discuss': 1,
  'email_verified': True,
  'entir': 1,
  'experi': 1,
  'facebook_connected': True,
  'feel': 1,
  'find': 1,
  'freelanc': 2,
  'fulfil': 2,
  'globe': 1,
  'guarante': 1,
  'hi': 1,
  'identity_verified': False,
  'issu': 1,
  'long': 1,
  "n't": 1,
  'need': 1,
  'onlin': 1,
  'outsourc': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'project': 5,
  'provid': 2,
  'qualiti': 2,
  'relationship': 1,
  'requir': 2,
  'satisfact': 1,
  'servic': 2,
  'sinc': 1,
  'solut': 1,
  'time': 3,
  'web': 1,
  'whenev': 1,
  'work': 2,
  'year': 1},
 646: {'Caps': None,
  'Digit': None,
  'First': 'u',
  'Last': 'x',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'fulltim': 1,
  'home': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'work': 1},
 647: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='G'>,
  'Digit': None,
  'First': 'G',
  'Last': 'n',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'account': 1,
  'appli': 1,
  'area': 1,
  'assur': 1,
  'audit': 2,
  'better': 1,
  'career': 1,
  'charter': 1,
  'complianc': 1,
  'control': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 2,
  'explor': 1,
  'facebook_connected': False,
  'forward': 1,
  'gain': 1,
  'horizon': 1,
  'identity_verified': False,
  'intern': 1,
  'knowledg': 2,
  'look': 1,
  'new': 1,
  'organ': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'reput': 1,
  'revenu': 1,
  'skill': 2,
  'start': 1,
  'statutori': 1,
  'well': 1},
 648: {"'m": 2,
  "'s": 2,
  '..': 1,
  '1997.': 1,
  '2002': 1,
  '2010': 1,
  '3': 1,
  '5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'o',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'access': 4,
  'accomplish': 1,
  'activ': 9,
  'actual': 2,
  'ad': 1,
  'aeronaut': 1,
  'also': 1,
  'among': 2,
  'analysi': 1,
  'analyz': 1,
  'apach': 2,
  'applic': 21,
  'approach': 1,
  'area': 3,
  'associ': 1,
  'audio': 1,
  'authent': 1,
  'automat': 1,
  'automot': 1,
  'bank': 1,
  'base': 4,
  'basic': 1,
  'benefit': 1,
  'board': 1,
  'bond': 2,
  'brd': 1,
  'busi': 1,
  'c': 1,
  'c++': 1,
  'c/c++': 2,
  'ca': 3,
  'case': 1,
  'cd': 2,
  'center': 1,
  'charg': 1,
  'check': 1,
  'client': 1,
  'close': 1,
  'club': 1,
  'codewarrior': 1,
  'collect': 1,
  'command': 1,
  'commun': 2,
  'compani': 2,
  'configur': 2,
  'consist': 1,
  'contain': 1,
  'control': 5,
  'craiova': 2,
  'creat': 1,
  'csv': 2,
  'custom': 2,
  'data': 2,
  'databas': 4,
  'date': 3,
  'defin': 1,
  'delet': 1,
  'deliv': 1,
  'depend': 1,
  'deposit_made': False,
  'descript': 3,
  'develop': 11,
  'differ': 1,
  'directori': 1,
  'discuss': 1,
  'distinguish': 1,
  'distribut': 1,
  'domain': 4,
  'download': 3,
  'dsm': 1,
  'dto': 4,
  'easi': 1,
  'eclips': 1,
  'effici': 1,
  'ehealth': 2,
  'eight': 1,
  'email_verified': True,
  'emerg': 1,
  'emilio': 2,
  'engin': 1,
  'entri': 1,
  'envelop': 1,
  'especi': 1,
  'etc': 1,
  'excel': 1,
  'exchang': 1,
  'exist': 1,
  'expans': 1,
  'experi': 2,
  'expertis': 2,
  'expiri': 1,
  'extens': 1,
  'extern': 2,
  'facebook_connected': True,
  'file': 4,
  'filter': 1,
  'financi': 2,
  'firm': 1,
  'flexibl': 1,
  'folder': 1,
  'follow': 2,
  'footbal': 1,
  'freelanc': 1,
  'frontpag': 1,
  'group': 3,
  'help': 1,
  'high': 1,
  'html': 1,
  'http': 1,
  'ide': 2,
  'ident': 4,
  'identity_verified': False,
  'import': 4,
  'includ': 2,
  'inform': 4,
  'input': 1,
  'instal': 1,
  'intelidei': 2,
  'internet': 2,
  'involv': 2,
  'itali': 1,
  'italian': 1,
  'item': 1,
  'januari': 1,
  'java': 15,
  'javascript': 1,
  'jboss': 1,
  'joomla': 1,
  'jsp': 2,
  'languag': 1,
  'latest': 1,
  'ldap': 1,
  'leas': 1,
  'leverag': 1,
  'limit': 1,
  'london': 1,
  'lower': 1,
  'made': 1,
  'maintain': 1,
  'mainten': 1,
  'make': 1,
  'manag': 9,
  'manager*': 2,
  'mark': 2,
  'market': 1,
  'materi': 1,
  'may': 1,
  'mean': 2,
  'member': 3,
  'minimum': 1,
  'moara': 1,
  'model': 1,
  'modul': 7,
  'monitor': 1,
  'move': 1,
  'mysql': 2,
  'net': 1,
  'net-sol': 3,
  'netbean': 1,
  'network': 3,
  'new': 1,
  'notic': 2,
  'offer': 1,
  'one': 1,
  'oper': 2,
  'oracl': 3,
  'orang': 1,
  'organ': 1,
  'organiz': 1,
  'outsourc': 1,
  'packag': 2,
  'page': 2,
  'part': 1,
  'password': 1,
  'payment': 1,
  'payment_verified': False,
  'pdf': 1,
  'person': 3,
  'phone_verified': False,
  'photoshop': 1,
  'php': 1,
  'platform': 1,
  'plugin': 1,
  'polic': 1,
  'polici': 1,
  'possibl': 1,
  'price': 1,
  'print': 3,
  'process': 1,
  'product': 2,
  'profile_complete': True,
  'program': 1,
  'programm': 1,
  'programmercompani': 3,
  'project': 7,
  'psitrad': 2,
  'purchas': 1,
  'quantiti': 3,
  'r12': 1,
  'r8': 2,
  'rang': 1,
  'raw': 1,
  'recip': 1,
  'remot': 1,
  'requir': 2,
  'restaur': 4,
  'resum': 1,
  'retriev': 1,
  'romania': 4,
  'romanian': 1,
  'sc': 1,
  'school': 1,
  'second': 1,
  'secur': 2,
  'send': 2,
  'sent': 1,
  'separ': 1,
  'servic': 1,
  'servicedesk': 8,
  'servlet': 2,
  'set': 1,
  'sever': 4,
  'similar': 1,
  'sinc': 3,
  'singl': 1,
  'site': 2,
  'small': 1,
  'smf': 1,
  'snmp': 1,
  'softwar': 3,
  'software/technologiescompani': 2,
  'solut': 2,
  'solvit': 3,
  'sound': 1,
  'sphere': 1,
  'sql': 2,
  'standalon': 1,
  'start': 1,
  'statist': 1,
  'stock': 4,
  'structur': 1,
  'strut': 1,
  'studi': 1,
  'suit': 2,
  'synchron': 1,
  'system': 5,
  'tabl': 2,
  'team': 2,
  'technolog': 2,
  'temporari': 1,
  'third': 1,
  'three': 1,
  'tomcat': 1,
  'tool': 1,
  'two': 1,
  'unicredit': 2,
  'uniqu': 1,
  'universitari': 1,
  'updat': 5,
  'upgrad': 1,
  'use': 12,
  'user': 3,
  'usernam': 1,
  'v3': 1,
  'variou': 2,
  'vc++': 1,
  'verif': 1,
  'version': 1,
  'via': 1,
  'video': 1,
  'visual': 2,
  'vodafon': 1,
  'volunt': 1,
  'waiter': 1,
  'web': 4,
  'web-bas': 1,
  'webpag': 1,
  'webserv': 1,
  'webservic': 1,
  'websit': 1,
  'wide': 1,
  'work': 4,
  'xml': 2,
  'york': 1},
 649: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'l',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'area': 1,
  'audit': 1,
  'basi': 1,
  'bgp': 1,
  'cisco': 4,
  'composit': 1,
  'conduct': 1,
  'consist': 1,
  'custom': 2,
  'deposit_made': False,
  'design': 2,
  'eigrp': 1,
  'email_verified': True,
  'engin': 1,
  'enterpris': 1,
  'facebook_connected': False,
  'firewal': 1,
  'hierarch': 1,
  'identity_verified': False,
  'implement': 1,
  'inform': 1,
  'instal': 1,
  'model': 1,
  'network': 5,
  'new': 1,
  'ospf': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'r': 1,
  'router': 1,
  'run': 1,
  'secur': 1,
  'site': 1,
  'support': 1,
  'survey': 1,
  'switch': 1,
  'troubleshoot': 1,
  'upgrad': 1,
  'work': 1},
 650: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'z',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'abil': 1,
  'addit': 1,
  'aim': 1,
  'articl': 2,
  'becom': 1,
  'best': 1,
  'blog': 2,
  'client': 2,
  'consid': 1,
  'custom': 1,
  'data': 2,
  'deposit_made': False,
  'effici': 1,
  'email_verified': True,
  'engin': 1,
  'enhanc': 1,
  'entri': 2,
  'extens': 1,
  'facebook_connected': False,
  'freelanc': 2,
  'gear': 1,
  'get': 1,
  'great': 1,
  'help': 1,
  'hone': 1,
  'identity_verified': False,
  'improv': 1,
  'manag': 1,
  'media': 1,
  'object': 1,
  'onlin': 1,
  'paramount': 1,
  'payment_verified': False,
  'phone_verified': False,
  'potenti': 1,
  'profile_complete': True,
  'provid': 3,
  'qualiti': 2,
  'research': 2,
  'result': 1,
  'satisfactori': 1,
  'search': 1,
  'servic': 2,
  'skill': 1,
  'social': 1,
  'success': 1,
  'variou': 1,
  'web': 2,
  'well': 3,
  'write': 2,
  'year': 1},
 651: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
  'First': 'j',
  'Last': '3',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'assign': 1,
  'count': 1,
  'creat': 1,
  'deposit_made': True,
  'eager': 1,
  'email_verified': True,
  'facebook_connected': True,
  'fantast': 1,
  'identity_verified': False,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'skill': 1,
  'specif': 1,
  'super': 1,
  'work': 1,
  'write': 1},
 652: {'12': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'g',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'automot': 1,
  'bachelor': 1,
  'commun': 2,
  'deposit_made': False,
  'develop': 1,
  'electron': 1,
  'email_verified': True,
  'embed': 1,
  'engin': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'industri': 1,
  'manner': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'respect': 1,
  'skill': 1,
  'system': 1,
  'year': 1},
 653: {'.net': 4,
  '1.1': 1,
  '18+': 1,
  '2.0': 1,
  '2.6': 1,
  '2003': 1,
  '2005': 1,
  '3.0': 1,
  '3.5': 1,
  '4.0': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 's',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'applic': 1,
  'around': 1,
  'asp.net': 1,
  'background': 1,
  'c': 1,
  'contact': 1,
  'control': 1,
  'databas': 1,
  'deposit_made': False,
  'desktop': 1,
  'develop': 1,
  'discuss': 1,
  'e-mail': 1,
  'email_verified': True,
  'enclos': 1,
  'experi': 1,
  'extens': 1,
  'facebook_connected': False,
  'follow': 2,
  'form': 1,
  'forward': 1,
  'foxpro': 1,
  'hear': 1,
  'html': 1,
  'identity_verified': False,
  'interview': 1,
  'intranet': 1,
  'java': 1,
  'knowledg': 1,
  'like': 1,
  'look': 1,
  'microsoft': 1,
  'opportun': 1,
  'payment_verified': False,
  'phone': 1,
  'phone_verified': True,
  'pleas': 1,
  'posit': 1,
  'profile_complete': True,
  'question': 1,
  'resum': 1,
  'review': 1,
  'schedul': 1,
  'script': 1,
  'server': 1,
  'servic': 1,
  'studio': 1,
  'web': 3,
  'welcom': 1,
  'would': 2,
  'xml': 1,
  'xsl': 1,
  'year': 1},
 654: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'b',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ansibl': 1,
  'applic': 2,
  'aw': 1,
  'azur': 1,
  'chef': 1,
  'cloud': 1,
  'consult': 1,
  'corpor': 1,
  'custom': 1,
  'deliv': 1,
  'deposit_made': True,
  'devop': 4,
  'docker': 1,
  'elk': 1,
  'email_verified': True,
  'ensur': 1,
  'facebook_connected': False,
  'framework': 1,
  'git': 1,
  'hybrid': 1,
  'identity_verified': False,
  'implement': 2,
  'individu': 1,
  'jenkin': 1,
  'linux': 1,
  'migrat': 1,
  'payment_verified': True,
  'perl': 1,
  'phone_verified': True,
  'privat': 1,
  'profile_complete': True,
  'public': 1,
  'puppet': 1,
  'python': 1,
  'qualiti': 1,
  'rubi': 1,
  'script': 1,
  'shell': 1,
  'svn': 1,
  'train': 1,
  'unix': 1,
  'vmware': 1,
  'web': 1},
 655: {'...': 2,
  'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'r',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'averag': 1,
  'base': 2,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'figur': 1,
  'flash': 1,
  'go': 1,
  'higher': 1,
  'hourli': 2,
  'identity_verified': False,
  'lower': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 2,
  'put': 1,
  'rate': 1,
  'type': 1,
  'vari': 1,
  'video': 1,
  'web': 1,
  'whether': 1},
 656: {'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'n',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'around': 1,
  'audio': 1,
  'bend': 1,
  'coast': 2,
  'commerci': 1,
  'compani': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'format': 1,
  'heard': 1,
  'identity_verified': False,
  'imag': 1,
  'media': 1,
  'mind': 1,
  'multimedia': 1,
  'multipl': 1,
  'new': 1,
  'offer': 1,
  'one-stop': 1,
  'over': 1,
  'payment_verified': False,
  'phone_verified': False,
  'product': 3,
  'profile_complete': True,
  'radio': 2,
  'station': 1,
  'track': 1,
  'tv': 1,
  'voic': 2,
  'work': 1,
  'world': 1},
 657: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 's',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'administr': 1,
  'debian': 1,
  'deposit_made': True,
  'email_verified': True,
  'experienc': 1,
  'facebook_connected': True,
  'framework': 2,
  'identity_verified': False,
  'laravel': 1,
  'mailserv': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'skill': 1,
  'system': 1,
  'webserv': 1,
  'work': 1,
  'yii': 1},
 658: {'.i': 1,
  '1999': 1,
  '2009': 2,
  '2009.': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'Digit': None,
  'First': 'I',
  'Last': 's',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  '\\xe2\\u20ac\\u201c': 2,
  'account': 1,
  'alway': 1,
  'apr': 1,
  'balanc': 1,
  'best': 1,
  'calcul': 1,
  'check': 1,
  'data': 1,
  'deposit_made': True,
  'detail': 1,
  'develop': 1,
  'email_verified': True,
  'etc': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'gener': 1,
  'hard': 1,
  'identity_verified': False,
  'indonesia': 1,
  'januari': 1,
  'job': 1,
  'keep': 1,
  'manag': 1,
  'march': 1,
  'move': 1,
  'octob': 1,
  'payment_verified': True,
  'person': 1,
  'phone_verified': True,
  'present': 1,
  'print': 1,
  'profile_complete': True,
  'quickbook': 1,
  'report': 1,
  'respons': 1,
  'royalti': 2,
  'sa': 1,
  'senior': 1,
  'ten': 1,
  'usa': 1,
  'work': 1,
  'worker': 1,
  'year': 1},
 659: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='4'>,
  'First': 'm',
  'Last': '0',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'edit': 1,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'french': 1,
  'identity_verified': False,
  'journalist': 1,
  'languag': 1,
  'master': 1,
  'mauritiu': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'proofread': 1,
  'translat': 1},
 660: {'40': 1,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abil': 1,
  'agreement': 1,
  'anyon': 1,
  'arbitr': 1,
  'area': 1,
  'bank': 1,
  'believ': 1,
  'besid': 1,
  'best': 2,
  'client': 3,
  'combin': 1,
  'commerci': 2,
  'compani': 1,
  'complet': 1,
  'crimin': 1,
  'cyber': 1,
  'deposit_made': True,
  'draft': 1,
  'els': 1,
  'email_verified': True,
  'endeavour': 1,
  'engag': 1,
  'experi': 1,
  'facebook_connected': True,
  'high': 1,
  'identity_verified': False,
  'kind': 1,
  'law': 2,
  'lawyer': 1,
  'legal': 1,
  'make': 1,
  'matter': 1,
  'multin': 1,
  'net': 1,
  'payment_verified': False,
  'perform': 1,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'rang': 1,
  'render': 1,
  'review': 1,
  'satisfact': 1,
  'servic': 1,
  'special': 1,
  'taxat': 1,
  'team': 1,
  'tender': 1,
  'therefor': 1,
  'think': 1,
  'twice': 1,
  'variou': 2,
  'worth': 1,
  'year': 1},
 661: {'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'o',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'base': 1,
  'chines': 1,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'mobil': 2,
  'payment_verified': False,
  'phone_verified': False,
  'popular': 1,
  'product': 1,
  'profession': 1,
  'profile_complete': True,
  'termin': 1,
  'varieti': 1,
  'work': 1},
 662: {'10': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
  'First': 'v',
  'Last': '3',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'channel': 2,
  'commerci': 1,
  'comput': 1,
  'consid': 1,
  'creation': 1,
  'current': 1,
  'deposit_made': True,
  'design': 1,
  'email_verified': True,
  'engag': 1,
  'facebook_connected': True,
  'graphic': 3,
  'identity_verified': False,
  'intro': 1,
  'involv': 1,
  'made': 1,
  'much': 1,
  'music': 1,
  'order': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'propos': 1,
  'readi': 1,
  'style': 1,
  'televis': 1,
  'video': 2,
  'work': 1,
  'year': 1},
 663: {"'m": 2,
  "'re": 1,
  '...': 1,
  '30': 1,
  '8': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': None,
  'First': 'M',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'achiev': 1,
  'adapt': 1,
  'alway': 3,
  'app': 2,
  'attempt': 1,
  'attest': 1,
  'beauti': 1,
  'becam': 1,
  'believ': 1,
  'belt': 1,
  'book': 1,
  'brows': 1,
  'case': 1,
  'check': 1,
  'client': 1,
  'comfort': 1,
  'compound': 1,
  'comput': 2,
  'corpor': 1,
  'deposit_made': False,
  'design': 4,
  'dynam': 1,
  'email_verified': True,
  'expect': 1,
  'experi': 2,
  'facebook_connected': False,
  'faculti': 1,
  'first': 1,
  'friendli': 1,
  'full': 1,
  'goal': 1,
  'graduat': 1,
  'graphic': 1,
  'headquart': 1,
  'help': 1,
  'hesit': 1,
  'hobbi': 1,
  'home': 1,
  'ident': 1,
  'identity_verified': False,
  'independ': 1,
  'job': 1,
  'kit': 1,
  'locat': 1,
  'look': 1,
  'love': 1,
  'mathemat': 1,
  'meet': 1,
  'mobil': 1,
  "n't": 1,
  'numer': 1,
  'old': 1,
  'orient': 1,
  'payment_verified': False,
  'perfect': 1,
  'phone_verified': False,
  'pleasant': 1,
  'profession': 1,
  'profil': 1,
  'profile_complete': True,
  'qualiti': 1,
  'reach': 1,
  'result': 1,
  'romania': 1,
  'satisfi': 1,
  'scienc': 2,
  'see': 1,
  'soon': 1,
  'special': 1,
  'succeed': 1,
  'testimoni': 1,
  'time': 1,
  'top': 2,
  'use': 1,
  'user': 1,
  'web': 2,
  'websit': 2,
  'work': 3,
  'year': 2},
 664: {'2010': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'a',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'articl': 1,
  'date': 1,
  'deposit_made': False,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': False,
  'fortun': 1,
  'identity_verified': False,
  'occasion': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'sinc': 1,
  'submiss': 1,
  'written': 1},
 665: {"'s": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='5'>,
  'First': 'v',
  'Last': '5',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
  'chat': 1,
  'data': 1,
  'deep': 1,
  'deposit_made': True,
  'do': 1,
  'email_verified': True,
  'engin': 2,
  'entri': 1,
  'facebook_connected': False,
  'find': 2,
  'freelanc': 1,
  'good': 2,
  'histori': 1,
  'identity_verified': False,
  'inform': 1,
  'internet': 1,
  'knowledg': 1,
  'like': 1,
  'market': 4,
  'media': 1,
  'optim': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'plu': 1,
  'profile_complete': True,
  'quit': 1,
  'research': 1,
  'search': 2,
  'sem': 1,
  'seo': 1,
  'smm': 1,
  'social': 1},
 666: {"'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'j',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'basi': 1,
  'bid': 1,
  'busi': 1,
  'degre': 1,
  'deposit_made': True,
  'earlier': 1,
  'email_verified': True,
  'employ': 1,
  'english': 1,
  'even': 1,
  'facebook_connected': True,
  'good': 1,
  'identity_verified': False,
  'long': 1,
  'mani': 1,
  'master': 1,
  'medic': 1,
  "n't": 1,
  'part': 1,
  'passion': 1,
  'payment_verified': True,
  'peopl': 1,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'reason': 1,
  'sole': 1,
  'term': 1,
  'though': 1,
  'time': 1,
  'usa': 1,
  'write': 2,
  'wrote': 1},
 667: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(3, 4), match='2'>,
  'First': 'd',
  'Last': '1',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'bcom': 1,
  'complet': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': True,
  'gujarat': 1,
  'identity_verified': False,
  'mysql': 1,
  'payment_verified': False,
  'pgdca': 1,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'sheth': 1,
  'websit': 1},
 668: {"'m": 3,
  'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'f',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'also': 1,
  'cooper': 1,
  'deposit_made': False,
  'easili': 1,
  'email_verified': True,
  'even': 1,
  'exampl': 1,
  'facebook_connected': False,
  'flexibl': 1,
  'full': 1,
  'good': 2,
  'hard': 1,
  'hardwork': 1,
  'identity_verified': False,
  'industri': 1,
  'job': 1,
  'late': 1,
  'leader': 1,
  'never': 1,
  'other': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'sleep': 1,
  'tackl': 1,
  'time': 1,
  'without': 1,
  'work': 1},
 669: {"'m": 3,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
  'First': 't',
  'Last': '0',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'chanc': 1,
  'client': 1,
  'complet': 1,
  'deposit_made': True,
  'detail': 1,
  'email_verified': True,
  'ensur': 1,
  'facebook_connected': False,
  'given': 1,
  'identity_verified': False,
  'job': 2,
  'man': 1,
  'new': 1,
  'organis': 1,
  'orient': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'prove': 1,
  'satisfact': 1,
  'site': 1,
  'time': 1},
 670: {'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 's',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'angular': 1,
  'cm': 1,
  'css': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'html': 1,
  'identity_verified': False,
  'javascript': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'technolog': 1,
  'use': 1,
  'web': 1,
  'year': 1},
 671: {'Caps': None,
  'Digit': None,
  'First': 'u',
  'Last': 'y',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
  'anim': 1,
  'asp': 1,
  'asp.net': 1,
  'bid': 1,
  'commun': 1,
  'compani': 2,
  'concept': 1,
  'creativ': 1,
  'customer-specif': 1,
  'daili': 1,
  'deliv': 1,
  'deploy': 1,
  'deposit_made': False,
  'design': 2,
  'develop': 4,
  'dhtml': 1,
  'ecommerc': 1,
  'email': 1,
  'email_verified': True,
  'experi': 2,
  'expertis': 1,
  'facebook_connected': False,
  'flash': 2,
  'function': 1,
  'got': 1,
  'hi': 1,
  'html': 1,
  'identity_verified': False,
  'includ': 1,
  'java': 1,
  'look': 1,
  'match': 1,
  'messeng': 1,
  'ms': 1,
  'orient': 1,
  'payment_verified': False,
  'phone': 1,
  'phone_verified': False,
  'php': 1,
  'profession': 3,
  'profile_complete': True,
  'propos': 1,
  'readi': 1,
  'report': 1,
  'rich': 1,
  'script': 1,
  'send': 1,
  'server': 1,
  'servic': 1,
  'site': 1,
  'sql': 3,
  'start': 1,
  'team': 2,
  'test': 1,
  'web': 2,
  'work': 1},
 672: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'y',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'altern': 1,
  'articl': 1,
  'beauti': 1,
  'care': 1,
  'comprehens': 1,
  'content': 1,
  'deposit_made': True,
  'diet': 1,
  'diy': 1,
  'edit': 1,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'fashion': 1,
  'fit': 1,
  'health': 1,
  'home': 1,
  'identity_verified': False,
  'leisur': 1,
  'lyric': 1,
  'nutrit': 1,
  'origin': 1,
  'payment_verified': False,
  'pet': 1,
  'phone_verified': False,
  'profile_complete': True,
  'provid': 1,
  'seo': 1,
  'solut': 1,
  'special': 1,
  'stori': 1,
  'technolog': 1,
  'therapi': 1,
  'travel': 1,
  'write': 1},
 673: {"'m": 2,
  '40': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'l',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'also': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'english': 1,
  'entri': 1,
  'experi': 1,
  'facebook_connected': False,
  'gujarati': 1,
  'hindi': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'transcript': 1,
  'year': 1},
 674: {'15': 1,
  '1994.': 1,
  '3': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
  'First': 'j',
  'Last': '1',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'again.i': 1,
  'also': 1,
  'asp.net': 1,
  'base': 1,
  'box': 1,
  'bs': 1,
  'c': 1,
  'ci': 1,
  'code': 2,
  'coldfus': 1,
  'compani': 3,
  'contract': 1,
  'creat': 1,
  'custom': 1,
  'datacent': 1,
  'degre': 1,
  'deposit_made': False,
  'develop': 2,
  'done': 3,
  'elk': 1,
  'email_verified': True,
  'estat': 1,
  'etc': 1,
  'except': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'job': 1,
  'like': 1,
  'linux': 1,
  'lot': 1,
  'make': 1,
  'manag': 1,
  'newel': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php/mysql': 1,
  'profile_complete': True,
  'project': 1,
  'real': 1,
  'report': 1,
  'roof': 1,
  'search': 2,
  'server': 2,
  'simpl': 1,
  'sinc': 1,
  'site': 1,
  'softwar': 1,
  'special': 1,
  'sql': 1,
  'system': 1,
  'web': 2,
  'window': 1,
  'work': 1,
  'year': 1,
  'zip': 1},
 675: {"'ve": 1,
  '15': 1,
  'Caps': None,
  'Digit': None,
  'First': 'u',
  'Last': 'd',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
  'also': 1,
  'anim': 1,
  'busi': 1,
  'commerci': 1,
  'corpor': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'graphic': 1,
  'identity_verified': False,
  'motion': 1,
  'music': 1,
  'payment_verified': False,
  'phone_verified': True,
  'product': 1,
  'profil': 1,
  'profile_complete': True,
  'small': 1,
  'special': 1,
  'train': 1,
  'video': 3,
  'work': 1,
  'year': 1},
 676: {'/asp.net': 1,
  '2005': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 't',
  'Last': 'd',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'agil': 1,
  'also': 1,
  'applic': 1,
  'c': 1,
  'codeignit': 1,
  'command': 1,
  'concept': 1,
  'databas': 1,
  'deposit_made': False,
  'develop': 1,
  'driven': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'framework': 1,
  'good': 2,
  'identity_verified': False,
  'littl': 1,
  'magento': 1,
  'oop': 1,
  'payment_verified': False,
  'phone_verified': True,
  'play': 1,
  'profile_complete': True,
  'rang': 1,
  'sinc': 1,
  'tdd': 1,
  'use': 1,
  'vb6': 1,
  'web': 1,
  'well': 1,
  'wide': 1,
  'wordpress': 1,
  'zend': 1},
 677: {'100': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'd',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  '\\xe2\\u20ac\\u201c': 1,
  'adob': 1,
  'advertis': 1,
  'attent': 1,
  'banner': 1,
  'believ': 1,
  'brochur': 1,
  'busi': 1,
  'card': 2,
  'ccna': 1,
  'ccnp': 1,
  'certif': 1,
  'certifi': 1,
  'choos': 1,
  'client': 1,
  'commun': 2,
  'concept': 1,
  'continu': 1,
  'core': 1,
  'corel': 1,
  'corpor': 1,
  'creativ': 1,
  'custom': 1,
  'deposit_made': False,
  'design': 4,
  'detail': 2,
  'direct': 1,
  'draw': 1,
  'email_verified': True,
  'end': 1,
  'envelop': 1,
  'experi': 1,
  'facebook_connected': False,
  'fair': 1,
  'first': 1,
  'flash': 1,
  'flyer': 1,
  'folder': 1,
  'graphic': 1,
  'guy': 1,
  'hardwork': 1,
  'header': 1,
  'hello': 1,
  'high': 1,
  'highli': 1,
  'i\\xe2\\u20ac\\u2122m': 1,
  'ident': 1,
  'identity_verified': False,
  'illustr': 1,
  'includ': 1,
  'invit': 1,
  'ip': 1,
  'key': 1,
  'letterhead': 1,
  'like': 1,
  'logo': 3,
  'louder': 1,
  'market': 1,
  'materi': 1,
  'motiv': 1,
  'name': 1,
  'number': 1,
  'offer': 1,
  'one': 1,
  'option': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'price': 1,
  'print': 1,
  'prioriti': 1,
  'profession': 1,
  'profile_complete': True,
  'program': 1,
  'provid': 1,
  'qualiti': 2,
  'quick': 1,
  'research': 1,
  'result': 1,
  'revis': 1,
  'satisfact': 1,
  'satisfi': 1,
  'sell': 1,
  'send': 1,
  'servic': 1,
  'sheet': 1,
  'speak': 1,
  'specialti': 2,
  'start': 1,
  'stationari': 1,
  'support': 1,
  'thank': 2,
  'that\\xe2\\u20ac\\u2122': 1,
  'time': 1,
  'turnaround': 1,
  'type': 1,
  'usual': 1,
  'web': 1,
  'word': 2,
  'work': 4,
  'would': 1,
  'year': 1},
 678: {"'m": 2,
  '15': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'p',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'blogger': 1,
  'came': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'great': 2,
  'hang': 1,
  'hear': 1,
  'identity_verified': False,
  'old': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'recent': 1,
  'site': 2,
  'therebi': 1,
  'thought': 1,
  'would': 1,
  'yr': 1},
 679: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
  'First': 't',
  'Last': '7',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'ad': 1,
  'administr': 1,
  'classifi': 1,
  'creativ': 1,
  'depend': 1,
  'deposit_made': False,
  'e-commerc': 1,
  'e-mail': 1,
  'email_verified': True,
  'estat': 1,
  'facebook_connected': False,
  'handl': 1,
  'honest': 1,
  'identity_verified': False,
  'includ': 1,
  'offer': 1,
  'payment_verified': False,
  'phone_verified': False,
  'post': 1,
  'profile_complete': True,
  'real': 1,
  'reliabl': 1,
  'research': 2,
  'servic': 2,
  'support': 2,
  'web': 1},
 680: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(12, 13), match='0'>,
  'First': 'g',
  'Last': '8',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'bing': 1,
  'deposit_made': True,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'first': 1,
  'googl': 1,
  'grow': 1,
  'identity_verified': False,
  'imagin': 1,
  'make': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'sale': 1,
  'sign-up': 1,
  'togeth': 1,
  'traffic': 1,
  'visitor': 1,
  'web': 1,
  'work': 1,
  'yahoo': 1},
 681: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'a',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  '\\xe2\\u20ac\\u201c': 1,
  'alway': 1,
  'assess': 1,
  'board': 1,
  'civil': 1,
  'colleagu': 1,
  'content': 1,
  'creativ': 1,
  'deposit_made': False,
  'distanc': 1,
  'educ': 1,
  'elig': 1,
  'email_verified': True,
  'employ': 1,
  'evalu': 1,
  'exam': 1,
  'expans': 1,
  'facebook_connected': False,
  'flexibl': 1,
  'graduat': 1,
  'high': 1,
  'identity_verified': False,
  'investigatori': 1,
  'let': 1,
  'licens': 1,
  'major': 1,
  'manag': 2,
  'master': 1,
  'nation': 1,
  'paper': 1,
  'payment_verified': False,
  'philippin': 1,
  'phone_verified': False,
  'polici': 1,
  'posit': 1,
  'prc': 1,
  'profession': 1,
  'profile_complete': True,
  'program': 1,
  'public': 2,
  'pursu': 1,
  'rate': 1,
  'receiv': 1,
  'research': 1,
  'resourc': 1,
  'school': 1,
  'scienc': 1,
  'servic': 1,
  'student': 1,
  'studi': 1,
  'talent': 1,
  'teach': 2,
  'teacher': 1,
  'train': 1,
  'univers': 1,
  'wise': 1},
 682: {"'s": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'e',
  'Last': '0',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'alway': 1,
  'aspect': 2,
  'balanc': 1,
  'busi': 2,
  'client': 1,
  'compani': 1,
  'deposit_made': True,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'implement': 1,
  'improv': 2,
  'lean': 1,
  'manag': 4,
  'oper': 2,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'profit': 1,
  'relat': 1,
  'skill': 3,
  'specialist': 1,
  'strateg': 1,
  'theori': 1,
  'therefor': 1,
  'ultim': 1,
  'work': 1},
 683: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'm',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'attitud': 1,
  'best': 1,
  'deadlin': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'orient': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True},
 684: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
  'First': 'm',
  'Last': '3',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'alway': 1,
  'applic': 1,
  'busi': 1,
  'come': 1,
  'databas': 2,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'everyday': 1,
  'exit': 1,
  'facebook_connected': False,
  'filemak': 1,
  'find': 1,
  'first': 1,
  'great': 1,
  'identity_verified': False,
  'market': 1,
  'open': 1,
  'passion': 1,
  'payment_verified': True,
  'peopl': 1,
  'phone_verified': True,
  'pro': 1,
  'profile_complete': True,
  'see': 1,
  'sourc': 1,
  'tool': 1,
  'use': 1,
  'work': 1},
 685: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'c',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'client': 1,
  'corpor': 1,
  'deposit_made': True,
  'design': 6,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': True,
  'graphic': 1,
  'high': 1,
  'ident': 1,
  'identity_verified': False,
  'layout': 1,
  'media': 2,
  'payment_verified': True,
  'per': 1,
  'phone_verified': True,
  'print': 1,
  'profile_complete': True,
  'provid': 2,
  'qualiti': 1,
  'relat': 1,
  'servic': 1,
  'stationari': 1,
  'web': 2},
 686: {'Caps': None,
  'Digit': None,
  'First': 'y',
  'Last': 'b',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'applic': 1,
  'compani': 1,
  'consult': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'india': 1,
  'like': 1,
  'mobil': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'provid': 2,
  'seo': 1,
  'servic': 4,
  'web': 2},
 687: {'...': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'l',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'beij': 1,
  'china': 1,
  'deposit_made': False,
  'email_verified': True,
  'european': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'japan': 1,
  'locat': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'programm': 1,
  'team': 1,
  'toward': 1,
  'translat': 1},
 688: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
  'First': 'r',
  'Last': '2',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'respons': 1,
  'simpl': 1,
  'worker': 1},
 689: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
  'Digit': None,
  'First': 'R',
  'Last': 'c',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'alpha': 2,
  'articl': 4,
  'car': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'fashion': 1,
  'identity_verified': False,
  'includ': 1,
  'latest': 4,
  'music': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pro': 1,
  'profile_complete': True,
  'qualif': 1,
  'review': 1,
  'seek': 2},
 690: {'...': 1,
  '10': 1,
  '12': 1,
  '2000': 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'e',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  'also': 1,
  'api': 1,
  'appli': 1,
  'asana': 1,
  'aw': 1,
  'basecamp': 1,
  'cake': 1,
  'code': 1,
  'commerc': 1,
  'complet': 1,
  'cre': 1,
  'cvn': 1,
  'deposit_made': False,
  'develop': 1,
  'differ': 1,
  'drupal': 1,
  'email_verified': True,
  'etc': 1,
  'etc\\xe2\\u20ac\\xa6-': 2,
  'experi': 2,
  'experience.-': 1,
  'facebook_connected': False,
  'framework': 1,
  'git': 1,
  'give': 1,
  'handl': 1,
  'identity_verified': False,
  'joomla': 1,
  'json': 1,
  'lamp': 1,
  'laravel': 1,
  'lead': 1,
  'like': 3,
  'load': 2,
  'magento': 1,
  'manag': 1,
  'mani': 1,
  'manti': 1,
  'multipl': 1,
  'mysql-': 1,
  'open': 1,
  'os': 1,
  'output': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 2,
  'press': 1,
  'profile_complete': True,
  'project': 3,
  'server': 1,
  'servic': 2,
  'setup': 1,
  'size': 1,
  'smarti': 1,
  'sourc': 1,
  'summari': 1,
  'svn': 1,
  'system': 1,
  'team': 2,
  'tool': 1,
  'use': 1,
  'variou': 2,
  'vast': 1,
  'version': 1,
  'web': 2,
  'word': 1,
  'work': 4,
  'yii': 1},
 691: {'25': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': <_sre.SRE_Match object; span=(11, 12), match='6'>,
  'First': 'S',
  'Last': '5',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='A'>,
  'achiev': 1,
  'busi': 1,
  'client': 1,
  'commun': 1,
  'compos': 1,
  'contribut': 1,
  'deposit_made': True,
  'email_verified': True,
  'experi': 2,
  'facebook_connected': False,
  'focu': 1,
  'group': 1,
  'identity_verified': False,
  'implement': 1,
  'individu': 1,
  'inform': 2,
  'integr': 1,
  'involv': 1,
  'knowledg': 2,
  'led': 1,
  'manag': 2,
  'mr.': 1,
  'object': 1,
  'oper': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'provid': 2,
  'reason': 1,
  'reliabl': 1,
  'reorgan': 1,
  'resourc': 1,
  'servic': 1,
  'size': 1,
  'solut': 1,
  'team': 1,
  'technolog': 3,
  'util': 1,
  'year': 1},
 692: {'12+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'i',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'asp.net': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'key': 1,
  'microsoft': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'skill': 1,
  'technolog': 1,
  'use': 1,
  'year': 1},
 693: {"'s": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
  'First': 'l',
  'Last': '8',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'bag': 2,
  'beij': 1,
  'compani': 1,
  'deposit_made': False,
  'email_verified': True,
  'especi': 1,
  'etc': 2,
  'experi': 2,
  'facebook_connected': False,
  'fujian': 1,
  'garment': 1,
  'girl': 1,
  'identity_verified': False,
  'inform': 1,
  'internet': 1,
  'kind': 1,
  'ladi': 1,
  'live': 1,
  'made': 1,
  'major': 1,
  'mani': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'school': 1,
  'technic': 1,
  'trade': 1,
  'translat': 2,
  'underwear': 1,
  'variou': 1,
  'via': 1,
  'year': 2},
 694: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'a',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'also': 1,
  'blog': 1,
  'decid': 1,
  'deposit_made': False,
  'email_verified': True,
  'especi': 1,
  'facebook_connected': True,
  'famili': 1,
  'freelanc': 1,
  'identity_verified': False,
  'love': 1,
  'na': 1,
  'network': 1,
  'payment_verified': False,
  'phone_verified': False,
  'plan': 1,
  'profile_complete': True,
  'secretari': 1,
  'social': 1,
  'spent': 1,
  'time': 1,
  'wan': 1,
  'year': 1},
 695: {'4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'r',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'also': 1,
  'client': 1,
  'damag': 1,
  'deposit_made': False,
  'edit': 1,
  'email_verified': True,
  'enthusiast': 1,
  'exact': 1,
  'experience.i': 1,
  'extrem': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'involv': 1,
  'learn': 1,
  'like': 1,
  'lookout': 1,
  'mean': 1,
  'new': 1,
  'offer': 1,
  'opportun': 1,
  'passion': 1,
  'payment_verified': False,
  'perman': 1,
  'phone_verified': False,
  'process': 1,
  'profession': 1,
  'profile_complete': True,
  'proofread': 1,
  'qualiti': 1,
  'reflect': 1,
  'servic': 1,
  'specif': 1,
  'style.i': 1,
  'tailor': 1,
  'text': 1,
  'translat': 4,
  'webdesign': 1,
  'without': 1,
  'year': 1},
 696: {"'m": 1,
  '15': 1,
  '4': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='8'>,
  'First': 'H',
  'Last': '6',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'best': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'evangelist': 1,
  'experi': 1,
  'facebook_connected': False,
  'focu': 1,
  'identity_verified': False,
  'magento': 2,
  'payment_verified': False,
  'perform': 1,
  'phone_verified': False,
  'php': 1,
  'practic': 1,
  'profile_complete': True,
  'program': 1,
  'scalabl': 1,
  'system': 1,
  'year': 1},
 697: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'a',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'commit': 1,
  'confid': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'hardwork': 1,
  'identity_verified': False,
  'orient': 1,
  'payment_verified': False,
  'per': 1,
  'person': 1,
  'phone_verified': False,
  'profile_complete': True,
  'result': 1,
  'schedul': 1,
  'time': 1,
  'work': 1},
 698: {'10': 1,
  '2010': 1,
  '6': 1,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'a',
  'Numchar': 4,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  'code': 1,
  'deposit_made': False,
  'dig': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'framework': 1,
  'got': 1,
  'html/css': 1,
  'i\\xe2\\u20ac\\u2122v': 2,
  'identity_verified': False,
  'interest': 1,
  'learn': 1,
  'less': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'rail': 1,
  'rubi': 2,
  'start': 2,
  'technolog': 1,
  'web': 2,
  'year': 3},
 699: {"'s": 1,
  '12': 1,
  '2004': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
  'Digit': None,
  'First': 'T',
  'Last': 'M',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'age': 1,
  'architectur': 1,
  'back': 1,
  'besid': 1,
  'databas': 1,
  'deposit_made': False,
  'design': 3,
  'develop': 2,
  'element': 1,
  'email_verified': True,
  'explor': 1,
  'facebook_connected': False,
  'first': 1,
  'form': 1,
  'got': 1,
  'hand': 1,
  'identity_verified': False,
  'import': 1,
  'keep': 1,
  'land': 1,
  'like': 1,
  'look': 1,
  'manag': 1,
  'mostli': 1,
  'never': 1,
  'new': 1,
  'often': 1,
  'one': 1,
  'payment_verified': False,
  'phone_verified': True,
  'platform': 1,
  'profession': 2,
  'profile_complete': True,
  'program': 1,
  'project': 2,
  'rang': 1,
  'sinc': 1,
  'solut': 1,
  'start': 1,
  'technolog': 1,
  'test': 1,
  'though': 1,
  'ui': 1,
  'web': 1,
  'wide': 1,
  'work': 5,
  'year': 1},
 700: {'100': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'a',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'alway': 1,
  'australia': 1,
  'canada': 1,
  'client': 2,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'germani': 1,
  'give': 1,
  'identity_verified': False,
  'india': 1,
  'output': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'u.k.': 1,
  'u.s.': 1,
  'work': 1},
 701: {'1992': 1,
  '500': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'e',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'also': 1,
  'art': 1,
  'book': 1,
  'busi': 3,
  'c++': 1,
  'compani': 1,
  'compliant': 1,
  'creativ': 1,
  'deposit_made': False,
  'develop': 1,
  'done': 1,
  'email_verified': True,
  'facebook_connected': False,
  'fiction': 1,
  'fine': 1,
  'fortun': 1,
  'genr': 1,
  'grant': 1,
  'howev': 1,
  'identity_verified': False,
  'internet': 1,
  'it.i': 1,
  'littl': 1,
  'look': 1,
  'mani': 1,
  'manuscript': 1,
  'market': 1,
  'master': 1,
  'mfa': 1,
  'mysql': 1,
  'non-fict': 1,
  'offer': 1,
  'other': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'publish': 1,
  'qualiti': 1,
  'seo': 1,
  'show': 1,
  'sinc': 1,
  'site': 1,
  'skill': 2,
  'small': 1,
  'technic': 1,
  'vb': 1,
  'web': 1,
  'write': 5},
 702: {'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'm',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'achiev': 1,
  'agre': 1,
  'attitud': 1,
  'best': 1,
  'competit': 1,
  'deposit_made': False,
  'email_verified': True,
  'enabl': 1,
  'enhanc': 1,
  'facebook_connected': False,
  'focus': 2,
  'gain': 1,
  'high': 1,
  'identity_verified': False,
  'individu': 1,
  'inform': 1,
  'knowledg': 2,
  'object': 1,
  'passion': 1,
  'payment_verified': False,
  'perform': 2,
  'phone_verified': False,
  'player': 1,
  'practic': 1,
  'profile_complete': True,
  'right': 1,
  'self-motiv': 1,
  'set': 1,
  'skill': 1,
  'special': 1,
  'standard': 1,
  'team': 1},
 703: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'd',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'adword': 1,
  'also': 2,
  'anywher': 1,
  'area': 1,
  'automot': 1,
  'best': 3,
  'busi': 4,
  'cart': 1,
  'cloth': 1,
  'complet': 1,
  'contact': 1,
  'current': 1,
  'deposit_made': True,
  'develop': 1,
  'done': 1,
  'ecommerc': 2,
  'elit': 1,
  'email_verified': True,
  'enough': 1,
  'etc': 1,
  'experi': 1,
  'facebook_connected': False,
  'find': 1,
  'follow': 1,
  'furnitur': 1,
  'get': 1,
  'go': 1,
  'good': 1,
  'guid': 2,
  'help': 1,
  'hundr': 1,
  'identity_verified': True,
  'know': 1,
  'knowledg': 1,
  'last': 1,
  'like': 1,
  'mani': 1,
  'market': 3,
  'marketplac': 1,
  'media': 1,
  'onlin': 2,
  'payment_verified': True,
  'phone_verified': True,
  'plan': 1,
  'platforms.i': 1,
  'product': 1,
  'profile_complete': True,
  'project': 1,
  'research': 1,
  'right': 1,
  'sale': 1,
  'seo': 1,
  'shop': 1,
  'social': 1,
  'sourc': 1,
  'start': 1,
  'start-up': 1,
  'succeed': 1,
  'success': 1,
  'tactic': 1,
  'three': 1,
  'variou': 1,
  'websit': 2,
  'wholesal': 1,
  'work': 1,
  'year': 1},
 704: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'Digit': None,
  'First': 'E',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'deposit_made': False,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'nativ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'qualiti': 1,
  'servic': 1,
  'web': 1,
  'writer': 1},
 705: {'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'g',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'commun': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'high': 1,
  'identity_verified': False,
  'instal': 1,
  'linux': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'remot': 1,
  'server': 1,
  'servic': 1,
  'support': 2,
  'voip': 1},
 706: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
  'First': 'r',
  'Last': '1',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'ajax': 1,
  'apach': 1,
  'css': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'good': 1,
  'identity_verified': False,
  'javascript': 1,
  'look': 1,
  'mysql': 1,
  'need': 1,
  'offshor': 1,
  'outsourc': 1,
  'partner': 2,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'programm': 1,
  'real': 1,
  'technolog': 1,
  'work': 1},
 707: {'10': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'R',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'accentur': 1,
  'client': 1,
  'combin': 1,
  'deposit_made': True,
  'email_verified': True,
  'en': 1,
  'experi': 1,
  'facebook_connected': False,
  'final': 1,
  'freelanc': 1,
  'hp': 1,
  'identity_verified': False,
  'italian': 1,
  'ite': 1,
  'languag': 1,
  'like': 1,
  'mani': 1,
  'microsoft': 1,
  'other': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profession': 2,
  'profile_complete': True,
  'provid': 1,
  'servic': 1,
  'translat': 2,
  'work': 1,
  'year': 1},
 708: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'e',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'ajax': 1,
  'base': 1,
  'basic': 1,
  'cse': 1,
  'css': 1,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'engin': 1,
  'expert': 1,
  'facebook_connected': False,
  'graphic': 1,
  'html': 1,
  'identity_verified': False,
  'javascript': 1,
  'knowledg': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'php': 1,
  'profile_complete': True,
  'program': 1,
  'use': 1,
  'web': 2},
 709: {"'s": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
  'Digit': None,
  'First': 'J',
  'Last': 'C',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'also': 2,
  'angel': 1,
  'articl': 1,
  'attend': 1,
  'author': 1,
  'blog': 1,
  'book': 1,
  'broke': 1,
  'cat': 1,
  'colleg': 1,
  'comic': 1,
  'compani': 1,
  'cours': 1,
  'current': 1,
  'deposit_made': True,
  'email_verified': True,
  'establish': 1,
  'facebook_connected': False,
  'famili': 1,
  'featur': 1,
  'first': 1,
  'freelanc': 1,
  'head': 1,
  'home': 1,
  'host': 1,
  'identity_verified': False,
  'illinoi': 1,
  'independ': 1,
  'jani': 1,
  'magazin': 1,
  'mari': 1,
  'mom': 1,
  'mostli': 1,
  'move': 1,
  'new': 1,
  'one': 1,
  'onlin': 2,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'profile_complete': True,
  'publish': 2,
  'resid': 1,
  'rock': 1,
  'scene': 1,
  'script': 1,
  'self': 1,
  'singl': 2,
  'site': 2,
  'son': 1,
  'train': 1,
  'upcom': 1,
  'valley': 1,
  'variou': 1,
  'web': 1,
  'websit': 1,
  'well': 1,
  'work': 1,
  'write': 3,
  'writer': 2,
  'young': 1},
 710: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
  'First': 'a',
  'Last': '8',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'hard': 1,
  'identity_verified': False,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'profile_complete': True,
  'work': 1},
 711: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
  'First': 'm',
  'Last': '6',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'big': 1,
  'compani': 1,
  'deposit_made': True,
  'done': 1,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'multin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'writer': 1},
 712: {'Caps': None,
  'Digit': None,
  'First': 'u',
  'Last': 'q',
  'Numchar': 4,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
  'also': 1,
  'cool': 1,
  'deposit_made': True,
  'design': 1,
  'dynam': 1,
  'edit': 1,
  'effect': 1,
  'email_verified': True,
  'facebook_connected': True,
  'good': 1,
  'graphic': 1,
  'identity_verified': False,
  'make': 1,
  'motion': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'sever': 1,
  'short': 1,
  'univers': 1,
  'videos.i': 1,
  'visual': 1,
  'want': 1},
 713: {"''": 1,
  "'ll": 2,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='U'>,
  'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
  'First': 'U',
  'Last': '4',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='U'>,
  '``': 1,
  'artist': 1,
  'benefit': 1,
  'budget': 1,
  'busi': 1,
  'choos': 1,
  'compani': 1,
  'creativ': 3,
  'crowd': 1,
  'current': 1,
  'custom': 1,
  'deposit_made': False,
  'design': 2,
  'differ': 2,
  'dozen': 1,
  'email_verified': True,
  'experi': 1,
  'expert': 1,
  'facebook_connected': False,
  'gener': 1,
  'get': 2,
  'graphic': 1,
  'hand': 1,
  'http': 1,
  'hundr': 1,
  'identity_verified': False,
  'instead': 1,
  'kindli': 1,
  'logo': 1,
  'manufactur': 1,
  'materi': 1,
  'payment_verified': False,
  'phone_verified': False,
  'practic': 1,
  'profile_complete': True,
  'programm': 1,
  'proof': 2,
  'qualiti': 1,
  'reason': 1,
  'see': 1,
  'sourc': 1,
  'team': 1,
  'uniqu': 1,
  'want': 1,
  'websit': 2,
  'work': 2,
  'worldwid': 1},
 714: {'.net': 1,
  '15': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(3, 4), match='3'>,
  'First': 'b',
  'Last': '2',
  'Numchar': 5,
  'Vowel': None,
  'android': 1,
  'app': 1,
  'asp': 1,
  'deposit_made': False,
  'develop': 1,
  'differ': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'industri': 1,
  'mvc': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'recent': 1,
  'server': 1,
  'softwar': 1,
  'solid': 1,
  'sql': 1,
  'type': 1,
  'version': 1,
  'year': 1},
 715: {'5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
  'First': 'g',
  'Last': '3',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'admin': 1,
  'css': 1,
  'deposit_made': False,
  'email_verified': True,
  'exerienc': 1,
  'facebook_connected': True,
  'html': 1,
  'identity_verified': False,
  'java': 1,
  'linux': 1,
  'payment_verified': True,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True},
 716: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'k',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'account': 1,
  'build': 1,
  'comfort': 1,
  'creation': 1,
  'data': 1,
  'deliv': 1,
  'deposit_made': True,
  'email_verified': True,
  'entri': 1,
  'expert': 1,
  'facebook_connected': True,
  'freelanc': 1,
  'hous': 1,
  'identity_verified': False,
  'india': 1,
  'link': 1,
  'maker': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profil': 1,
  'profile_complete': True,
  'qualiti': 1,
  'small': 1,
  'task': 1,
  'time': 1,
  'variou': 1,
  'work': 2,
  'worker': 1},
 717: {"''": 2,
  "'m": 1,
  "'s": 1,
  "'ve": 2,
  '..': 2,
  '...': 1,
  '2008.': 1,
  '2600': 1,
  '3': 1,
  '4': 1,
  '64': 2,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'y',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  '``': 2,
  'age': 1,
  'atari': 1,
  'basic': 3,
  'cant': 1,
  'card': 1,
  'come': 1,
  'commodor': 2,
  'complet': 1,
  'comput': 1,
  'conclus': 1,
  'deposit_made': True,
  'design': 2,
  'develop': 1,
  'dig': 1,
  'earn': 1,
  'easili': 1,
  'email_verified': True,
  'enough': 1,
  'enter': 1,
  'everyth': 2,
  'expert': 2,
  'facebook_connected': True,
  'field': 1,
  'first': 2,
  'give': 1,
  'graphic': 3,
  'identity_verified': False,
  'im': 2,
  'info': 1,
  'instead': 1,
  'know': 3,
  'knowledg': 2,
  'learn': 1,
  'lesson': 1,
  'like': 1,
  'logic': 1,
  'money': 1,
  'need': 1,
  'old': 1,
  'paint': 1,
  'passion': 1,
  'payment_verified': True,
  'pc': 1,
  'phone_verified': True,
  'play': 1,
  'player': 1,
  'posit': 1,
  'prefer': 1,
  'problem': 1,
  'profile_complete': True,
  'project': 2,
  'remind': 1,
  'say': 2,
  'sinc': 1,
  'soccer': 1,
  'softwar': 3,
  'someth': 3,
  'sound': 1,
  'specif': 2,
  'start': 1,
  'tell': 2,
  'tool': 1,
  'use': 1,
  'visual': 1,
  'way': 2,
  'web': 1,
  'without': 2,
  'wonder': 1,
  'word': 1,
  'world': 1,
  'year': 1},
 718: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'android': 1,
  'app': 2,
  'applic': 3,
  'cakephp': 1,
  'codeignit': 1,
  'commerc': 1,
  'compon': 1,
  'core': 1,
  'custom': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 8,
  'e-commerc': 1,
  'email_verified': True,
  'expertis': 2,
  'facebook': 1,
  'facebook_connected': False,
  'frame': 1,
  'framework': 1,
  'html5': 1,
  'identity_verified': True,
  'implement': 1,
  'io': 1,
  'joomla': 2,
  'magento': 1,
  'mobil': 1,
  'modul': 1,
  'offshor': 1,
  'os': 1,
  'payment_verified': False,
  'phone_verified': True,
  'phonegap': 1,
  'php': 1,
  'plugin': 1,
  'profile_complete': True,
  'program': 1,
  'provid': 1,
  'rail': 1,
  'relat': 1,
  'rubi': 1,
  'servic': 1,
  'theme': 1,
  'virtuemart': 1,
  'web': 2,
  'wordpress': 2,
  'work': 1,
  'zend': 1},
 719: {'10': 1,
  '11': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'a',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'academ': 1,
  'basis.mi': 1,
  'client': 2,
  'commun': 1,
  'complex': 1,
  'contact': 1,
  'content': 1,
  'cost': 1,
  'day': 2,
  'deposit_made': False,
  'determin': 1,
  'direct': 1,
  'directli': 1,
  'directori': 1,
  'ebook': 1,
  'effect': 1,
  'email_verified': True,
  'engin': 1,
  'english': 2,
  'entri': 1,
  'etci': 1,
  'exact': 1,
  'experienc': 1,
  'facebook_connected': False,
  'fluent': 1,
  'focus': 1,
  'forum': 1,
  'highli': 1,
  'hour': 1,
  'identity_verified': False,
  'interact': 1,
  'monitor': 1,
  'need': 1,
  'nomin': 1,
  'offer': 1,
  'optim': 1,
  'option': 1,
  'oversea': 1,
  'past': 1,
  'payment': 1,
  'payment_verified': False,
  'per': 2,
  'phone_verified': False,
  'post': 1,
  'prefer': 1,
  'press': 1,
  'price': 3,
  'product': 1,
  'profile_complete': True,
  'progress': 1,
  'project': 2,
  'rang': 1,
  'reason': 1,
  'requir': 1,
  'search': 1,
  'seo': 1,
  'short': 1,
  'solut': 1,
  'speak': 1,
  'specif': 2,
  'submiss': 1,
  'suit': 1,
  'typic': 1,
  'variou': 1,
  'web': 1,
  'write': 3,
  'writer': 1,
  'year': 1},
 720: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
  'First': 'w',
  'Last': '7',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'comput': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'graduat': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'scienc': 1},
 721: {"'m": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
  'First': 't',
  'Last': '5',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'capabl': 1,
  'creation': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'enter': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'microsoft': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': True,
  'point': 1,
  'profile_complete': True,
  'relat': 1,
  'set': 1,
  'work': 1},
 722: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
  'First': 'M',
  'Last': '3',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'academ': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'financ': 1,
  'highest': 1,
  'identity_verified': False,
  'major': 1,
  'manageri': 1,
  'mba': 1,
  'nation': 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'posit': 1,
  'profile_complete': True,
  'qualif': 1,
  'work': 1,
  'year': 1},
 723: {"'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 's',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'africa': 1,
  'app': 1,
  'applic': 1,
  'asp': 1,
  'au': 1,
  'base': 2,
  'build': 1,
  'chang': 1,
  'compani': 2,
  'dashboard': 1,
  'deposit_made': True,
  'destin': 1,
  'devic': 1,
  'email_verified': True,
  'engin': 1,
  'exist': 1,
  'facebook_connected': False,
  'financi': 1,
  'forex': 1,
  'identity_verified': False,
  'in-hous': 1,
  'increas': 1,
  'industri': 1,
  'inhous': 1,
  'lead': 1,
  'linux': 1,
  'maintain': 1,
  'manag': 2,
  'migrat': 1,
  'mobil': 1,
  'move': 1,
  'mssql': 1,
  'offer': 1,
  'os': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php/mysql': 1,
  'port': 1,
  'portal': 1,
  'profile_complete': True,
  'project': 1,
  'rate': 1,
  'sa': 2,
  'school': 1,
  'server': 2,
  'site': 1,
  'softwar': 1,
  'solut': 1,
  'success': 1,
  'transact': 1,
  'travel': 1,
  'uk': 1,
  'web': 2,
  'websit': 1,
  'window': 1},
 724: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'i',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'also': 1,
  'applic': 2,
  'base': 1,
  'core': 1,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'intelig': 1,
  'languag': 1,
  'latest': 1,
  'learn': 1,
  'machin': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'port': 1,
  'profile_complete': True,
  'special': 1,
  'techniqu': 1,
  'use': 1},
 725: {"'m": 1,
  "'s": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
  'First': 's',
  'Last': '1',
  'Numchar': 6,
  'Vowel': None,
  'api': 1,
  'aw': 1,
  'build': 1,
  'cento': 1,
  'citrix': 1,
  'debian': 1,
  'deposit_made': True,
  'email_verified': True,
  'engin': 1,
  'esxi': 1,
  'experienc': 1,
  'expert': 1,
  'facebook_connected': False,
  'found': 1,
  'googl': 1,
  'greet': 1,
  'identity_verified': False,
  'js': 1,
  'keyword': 1,
  'kvm': 1,
  'linux': 2,
  'list': 1,
  'love': 1,
  'map': 1,
  'media': 2,
  'nginx': 1,
  'oracl': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'relat': 1,
  'rhel': 1,
  'servic': 1,
  'stream': 3,
  'system': 1,
  'ubuntu': 1,
  'vmware': 1,
  'wowza': 1,
  'xenserv': 1},
 726: {"'m": 2,
  'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'r',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'ajax': 1,
  'aka': 1,
  'blog': 1,
  'deposit_made': False,
  'django': 1,
  'dojo': 1,
  'email_verified': True,
  'experienc': 1,
  'facebook_connected': False,
  'hi': 1,
  'identity_verified': False,
  'javascript': 1,
  'jqueri': 1,
  'json': 1,
  'live': 1,
  'mootool': 1,
  'mysql': 1,
  'north': 1,
  'oracle-': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'prototyp': 1,
  'pylon': 1,
  'python': 1,
  'toolkit': 1,
  'webdevelop': 1,
  'xml': 1},
 727: {'10+': 1,
  '6+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 'a',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'advertis': 1,
  'base': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'experi': 2,
  'facebook_connected': False,
  'forward': 1,
  'freelanc': 1,
  'graphic': 1,
  'hong': 1,
  'identity_verified': False,
  'industri': 1,
  'invit': 1,
  'kong': 1,
  'like': 1,
  'look': 1,
  'market': 1,
  'overal': 1,
  'payment_verified': True,
  'phone_verified': True,
  'photography.i': 1,
  'portfolio': 1,
  'profile_complete': True,
  'request': 1,
  'retail': 1,
  'take': 1,
  'work': 2,
  'would': 1,
  'year': 2},
 728: {"'s": 1,
  '...': 2,
  '10+': 1,
  '100': 1,
  '7': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='7'>,
  'First': 's',
  'Last': '6',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'accuraci': 1,
  'achiev': 1,
  'add': 1,
  'administr': 1,
  'almost': 1,
  'alway': 1,
  'area': 1,
  'around': 1,
  'articl': 1,
  'asp.net*': 1,
  'assist': 1,
  'best': 3,
  'blog': 1,
  'cart': 1,
  'client': 5,
  'commit': 1,
  'competit': 1,
  'compil': 1,
  'contact': 1,
  'continu': 1,
  'corner': 1,
  'css*': 1,
  'data': 2,
  'deliv': 1,
  'deposit_made': True,
  'describ': 1,
  'design': 1,
  'detail': 1,
  'develop': 1,
  'devis': 1,
  'directori': 1,
  'email_verified': True,
  'entri': 2,
  'erp': 1,
  'etc.web': 1,
  'event': 2,
  'everi': 2,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'far': 1,
  'focu': 1,
  'forum': 1,
  'freelanc': 2,
  'give': 1,
  'globe': 1,
  'hospit': 1,
  'hotel': 1,
  'hrm': 1,
  'html*': 1,
  'hubpag': 1,
  'huge': 1,
  'identity_verified': False,
  'import': 2,
  'industri': 1,
  'inform': 1,
  'job': 2,
  'key': 1,
  'like': 1,
  'link': 1,
  'ltd.': 1,
  'mainli': 1,
  'manag': 2,
  'name': 1,
  'one': 1,
  'onlin': 3,
  'particular': 1,
  'past': 1,
  'payment_verified': True,
  'payrol': 1,
  'per': 1,
  'percent': 1,
  'person': 1,
  'phone_verified': True,
  'platform': 1,
  'po': 1,
  'print': 1,
  'process': 1,
  'product': 1,
  'profil': 1,
  'profile_complete': True,
  'project': 2,
  'provid': 1,
  'qualiti': 1,
  'quick': 1,
  'rate': 1,
  'report': 1,
  'requirement.data': 1,
  'research': 4,
  'sale': 1,
  'satisfi': 1,
  'schedul': 1,
  'serv': 1,
  'servic': 3,
  'set': 1,
  'shop': 1,
  'sinc': 1,
  'site': 2,
  'small': 1,
  'social': 1,
  'softwar': 1,
  'solut': 2,
  'specif': 1,
  'squidoo': 1,
  'start': 1,
  'still': 1,
  'submiss': 2,
  'submission*': 2,
  'success': 1,
  'technolog': 1,
  'tri': 1,
  'turn': 1,
  'updat': 1,
  'upload': 1,
  'us': 1,
  'valuabl': 1,
  'virtual': 1,
  'websit': 1,
  'work': 3,
  'year': 2},
 729: {'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'a',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'assist': 1,
  'backbone.j': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'interest': 1,
  'javascript': 3,
  'jqueri': 1,
  'middl': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 3,
  'pure': 1,
  'rail': 2,
  'react': 1,
  'rubi': 1,
  'simpli': 1,
  'well': 1,
  'work': 1},
 730: {'6': 1,
  'Caps': None,
  'Digit': None,
  'First': 'z',
  'Last': 'h',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
  'applic': 2,
  'area': 1,
  'associ': 1,
  'bpm': 1,
  'busi': 2,
  'certif': 1,
  'certifi': 3,
  'data': 1,
  'deliveri': 1,
  'deploy': 1,
  'deposit_made': False,
  'develop': 7,
  'email_verified': True,
  'execut': 1,
  'experi': 2,
  'facebook_connected': False,
  'field': 1,
  'hibern': 1,
  'identity_verified': False,
  'implement': 1,
  'integr': 2,
  'java/j2e': 1,
  'languag': 1,
  'main': 1,
  'manag': 1,
  'payment_verified': False,
  'phone_verified': False,
  'platform': 1,
  'post': 1,
  'power': 1,
  'process': 4,
  'product': 3,
  'profile_complete': True,
  'project': 1,
  'server': 3,
  'servic': 2,
  'soa': 2,
  'softwar': 1,
  'solut': 1,
  'sphere': 4,
  'support': 1,
  'test': 1,
  'unit': 1,
  'web': 5,
  'webspher': 3,
  'year': 1},
 731: {"'s": 2,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'h',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'accord': 2,
  'accuraci': 1,
  'achiev': 2,
  'across': 1,
  'allow': 2,
  'alway': 1,
  'applic': 1,
  'approach': 1,
  'apt': 1,
  'bank': 2,
  'benefit': 1,
  'best': 1,
  'bpo': 1,
  'bring': 1,
  'busi': 4,
  'calcul': 1,
  'capit': 1,
  'client': 2,
  'clients.our': 1,
  'collect': 1,
  'compani': 5,
  'competit': 2,
  'comput': 1,
  'consist': 1,
  'consult': 1,
  'content': 1,
  'continu': 1,
  'contract': 1,
  'convert': 4,
  'core': 2,
  'courtesi': 1,
  'creat': 2,
  'custom': 7,
  'daili': 1,
  'data': 1,
  'deliv': 1,
  'deliveri': 2,
  'demand': 1,
  'deposit_made': True,
  'design': 3,
  'develop': 2,
  'digit': 2,
  'distribut': 1,
  'diver': 3,
  'doc': 3,
  'document': 1,
  'drawn': 1,
  'driver': 1,
  'dynam': 1,
  'edg': 1,
  'edit': 1,
  'electron': 1,
  'email_verified': True,
  'emphasi': 1,
  'enabl': 1,
  'ensur': 2,
  'entir': 1,
  'environ': 1,
  'environment.our': 1,
  'excel': 1,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'faith': 1,
  'financ': 1,
  'flexibl': 1,
  'format': 1,
  'fund': 1,
  'gif': 2,
  'global': 2,
  'globe': 1,
  'goal': 1,
  'govern': 2,
  'help': 1,
  'highli': 2,
  'identity_verified': False,
  'imag': 2,
  'implement': 1,
  'improv': 1,
  'includ': 1,
  'industri': 1,
  'inform': 2,
  'innov': 1,
  'insight': 1,
  'insur': 2,
  'integr': 2,
  'intellig': 1,
  'intrins': 1,
  'keen': 1,
  'key': 1,
  'line': 1,
  'log': 4,
  'look': 1,
  'mainten': 1,
  'make': 2,
  'manag': 2,
  'manpow': 1,
  'manufactur': 1,
  'market': 1,
  'meet': 1,
  'member': 1,
  'mind': 1,
  'model': 1,
  'modifi': 1,
  'ms': 1,
  'mutual': 1,
  'need': 1,
  'number': 1,
  'offer': 2,
  'optim': 1,
  'partner': 1,
  'payment': 1,
  'payment_verified': True,
  'pdf': 1,
  'phone_verified': True,
  'pool': 1,
  'pride': 1,
  'pro-act': 1,
  'process': 3,
  'processingw': 1,
  'product': 4,
  'profession': 1,
  'profile_complete': True,
  'provid': 6,
  'qualiti': 2,
  'rang': 1,
  'reflect': 1,
  'relationship': 1,
  'reorgan': 1,
  'resourc': 1,
  'respons': 1,
  'retail': 1,
  'retain': 1,
  'sai': 1,
  'salari': 1,
  'schedul': 2,
  'servic': 8,
  'share': 1,
  'sheet': 1,
  'shop': 1,
  'simpl': 1,
  'skill': 2,
  'softwar': 3,
  'solut': 4,
  'soul': 1,
  'span': 1,
  'spirit': 1,
  'stage': 1,
  'strive': 1,
  'support': 1,
  'sustain': 1,
  'talent': 1,
  'task': 1,
  'team': 2,
  'technolog': 2,
  'technology-bas': 1,
  'time': 2,
  'today': 1,
  'total': 1,
  'track': 1,
  'transform': 1,
  'trend': 1,
  'trust': 1,
  'undertak': 1,
  'us': 1,
  'use': 2,
  'util': 1,
  'valu': 2,
  'variou': 1,
  'vast': 1,
  'vertic': 2,
  'virtualcad': 4,
  'vision': 1,
  'wealth': 1,
  'word': 4,
  'work': 1},
 732: {"'s": 1,
  '...': 1,
  '35': 1,
  '78': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'q',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'articl': 1,
  'banner': 1,
  'better': 1,
  'blog': 1,
  'bring': 2,
  'busi': 3,
  'client': 5,
  'collabor': 1,
  'consist': 1,
  'cricket': 1,
  'daili': 1,
  'deposit_made': False,
  'either': 1,
  'email_verified': True,
  'end': 2,
  'energi': 1,
  'entrepreneur': 1,
  'exactli': 1,
  'facebook_connected': False,
  'faster': 1,
  'find': 1,
  'flyer': 1,
  'freelanc': 1,
  'gone': 1,
  'googl': 1,
  'guarante': 1,
  'help': 1,
  'ideal': 1,
  'identity_verified': False,
  'increas': 1,
  'interest': 1,
  'internet': 1,
  'know': 1,
  'lead': 1,
  'look': 1,
  'make': 2,
  'market': 1,
  'measur': 1,
  'media': 1,
  'money': 1,
  "n't": 1,
  'one': 1,
  'outsid': 1,
  'owner': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pleas': 1,
  'post': 1,
  'press': 1,
  'profile_complete': True,
  'qualifi': 1,
  'releas': 1,
  'remark': 1,
  'result': 2,
  'satisfi': 1,
  'save': 1,
  'search': 2,
  'see': 2,
  'sell': 1,
  'servic': 1,
  'small': 1,
  'social': 1,
  'stori': 1,
  'tell': 1,
  'time': 1,
  'tri': 1,
  'updat': 1,
  'visual': 1,
  'want': 1,
  'websit': 1,
  'work': 3},
 733: {'...': 1,
  '9': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'c',
  'Last': '0',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'ajax': 1,
  'angularj': 2,
  'api': 1,
  'applic': 2,
  'assur': 1,
  'avail': 1,
  'bootstrap': 1,
  'button': 1,
  'code': 1,
  'contact': 1,
  'css3': 2,
  'custom': 1,
  'deliv': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'differ': 1,
  'email_verified': True,
  'end': 1,
  'experi': 2,
  'expertis': 1,
  'facebook_connected': True,
  'fair': 1,
  'fast': 2,
  'framework': 2,
  'front': 1,
  'get': 1,
  'googl': 1,
  'great': 1,
  'high-qual': 1,
  'hire': 1,
  'html5': 1,
  'identity_verified': False,
  'ignitor': 1,
  'integr': 1,
  'interact': 1,
  'javascript': 2,
  'lamp': 1,
  'larg': 1,
  'like': 1,
  'manag': 1,
  'map': 1,
  'media': 1,
  'method': 1,
  'mvc': 2,
  'mysql': 1,
  "n't": 1,
  'node.j': 1,
  'offer': 1,
  'payment': 1,
  'payment_verified': False,
  'perl': 1,
  'phone_verified': True,
  'php': 1,
  'price': 1,
  'profession': 1,
  'profile_complete': True,
  'prompt': 1,
  'qualiti': 1,
  'quick': 1,
  'react': 2,
  'reliabl': 1,
  'respons': 1,
  'robust': 1,
  'senior': 1,
  'server': 1,
  'servic': 1,
  'sever': 1,
  'shell': 1,
  'size': 1,
  'social': 1,
  'solutions-': 1,
  'sql': 1,
  'strong': 1,
  'summari': 1,
  'turnaround': 2,
  'web': 4,
  'wo': 1,
  'wordpress': 2,
  'work': 2,
  'would': 1,
  'xml': 1,
  'year': 1},
 734: {'10': 1,
  '100': 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'r',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'client': 1,
  'deposit_made': False,
  'develop': 1,
  'drive': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'fortun': 1,
  'help': 1,
  'identity_verified': False,
  'implement': 1,
  'mnc': 1,
  'open': 1,
  'passion': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'provid': 1,
  'scale': 1,
  'sme': 2,
  'solut': 1,
  'sourc': 1,
  'succeed': 1,
  'success': 1,
  'technolog': 1,
  'use': 1,
  'variou': 1,
  'year': 1},
 735: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
  'First': 'P',
  'Last': '5',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'academ': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'websit': 1,
  'writer': 1},
 736: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'o',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'believ': 1,
  'clariti': 1,
  'clear': 1,
  'commun': 1,
  'content': 1,
  'custom': 1,
  'deliv': 1,
  'deposit_made': False,
  'email_verified': True,
  'engag': 1,
  'english': 1,
  'everi': 1,
  'expect': 1,
  'facebook_connected': False,
  'feedback': 1,
  'give': 1,
  'goal': 1,
  'grammar': 1,
  'high': 1,
  'highli': 1,
  'identity_verified': False,
  'key': 1,
  'make': 1,
  'nativ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'present': 1,
  'profession': 2,
  'profile_complete': True,
  'project': 2,
  'proper': 1,
  'qualiti': 2,
  'reader': 1,
  'satisfi': 1,
  'speaker': 1,
  'time': 2,
  'us': 1,
  'work': 3,
  'writer': 1},
 737: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'deposit_made': False,
  'direct': 1,
  'easier': 1,
  'email_verified': True,
  'energi': 1,
  'experienc': 1,
  'facebook_connected': False,
  'flow': 1,
  'focu': 1,
  'found': 1,
  'freelanc': 1,
  'identity_verified': False,
  'im': 1,
  'internet': 1,
  'like': 1,
  'market': 3,
  'money': 1,
  'net': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'tradit': 1,
  'year': 2},
 738: {'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'k',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'activ': 1,
  'ad': 1,
  'applic': 1,
  'assembl': 1,
  'authent': 1,
  'author': 1,
  'basic': 1,
  'c/c++': 1,
  'com': 1,
  'compon': 1,
  'consol': 1,
  'cryptographi': 1,
  'dcom': 1,
  'delphi': 1,
  'deposit_made': False,
  'develop': 1,
  'directori': 1,
  'eap': 1,
  'email_verified': True,
  'facebook_connected': False,
  'gdi': 1,
  'gui': 1,
  'identity_verified': False,
  'instrument': 1,
  'interfac': 1,
  'local': 1,
  'manag': 2,
  'microsoft': 1,
  'mmc': 1,
  'netbio': 1,
  'pascal': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'qt': 1,
  'secur': 1,
  'socket': 1,
  'softwar': 1,
  'system': 2,
  'unix/linux': 1,
  'visual': 1,
  'vpn': 1,
  'window': 4,
  'wmi': 1,
  'x': 1},
 739: {"'m": 2,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
  'Digit': None,
  'First': 'C',
  'Last': 'm',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'abl': 1,
  'alreadi': 1,
  'attent': 1,
  'bit': 1,
  'bore': 1,
  'chanc': 1,
  'clean': 1,
  'compani': 1,
  'convinc': 1,
  'custom': 2,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'germani': 1,
  'get': 2,
  'give': 1,
  'given': 1,
  'heavili': 1,
  'identity_verified': False,
  'implement': 1,
  'known': 2,
  'larg': 1,
  'life': 1,
  'littl': 1,
  'mani': 1,
  'pay': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'program': 1,
  'user-friendli': 1,
  'usual': 1,
  'varieti': 1,
  'well': 1},
 740: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'f',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'ad': 1,
  'advantag': 1,
  'assist': 1,
  'base': 1,
  'client': 1,
  'current': 1,
  'deposit_made': False,
  'done': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'get': 1,
  'good': 1,
  'hi': 1,
  'identity_verified': False,
  'industri': 1,
  'job': 1,
  'knowledg': 2,
  'lead': 1,
  'manag': 1,
  'payment_verified': False,
  'peopl': 1,
  'person': 1,
  'phone_verified': True,
  'profil': 1,
  'profile_complete': True,
  'sinc': 1,
  'task': 1,
  'team': 1,
  'us': 1,
  'variou': 1,
  'virtual': 2,
  'work': 3},
 741: {'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'f',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'site': 1,
  'view': 1,
  'work': 1},
 742: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
  'First': 'p',
  'Last': '0',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'access': 2,
  'analyt': 1,
  'applic': 1,
  'area': 1,
  'client': 1,
  'consult': 1,
  'cours': 1,
  'curricula': 1,
  'databas': 2,
  'deposit_made': False,
  'design': 2,
  'detail-ori': 1,
  'develop': 2,
  'educ': 1,
  'email_verified': True,
  'employe': 1,
  'experi': 1,
  'expertis': 1,
  'extens': 1,
  'facebook_connected': False,
  'global': 1,
  'help': 1,
  'highli': 1,
  'identity_verified': False,
  'includ': 1,
  'independ': 1,
  'internet': 1,
  'leader': 1,
  'ms': 3,
  'offic': 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'provid': 2,
  'rang': 1,
  'school': 1,
  'servic': 1,
  'specif': 1,
  'technolog': 1,
  'train': 1,
  'transform': 1,
  'use': 1},
 743: {'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 's',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'b.a': 1,
  'career': 1,
  'continu': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'grand': 1,
  'identity_verified': False,
  'look': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'state': 1,
  'univers': 1,
  'valley': 1,
  'work': 1,
  'write': 2},
 744: {'2.5': 1,
  '2010.': 1,
  '3+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'e',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abl': 1,
  'api': 2,
  'applic': 1,
  'attent': 1,
  'autom': 3,
  'back': 1,
  'basic': 1,
  'blocker': 1,
  'case': 1,
  'choos': 1,
  'come': 1,
  'decemb': 1,
  'deposit_made': True,
  'design': 1,
  'detail': 1,
  'develop': 4,
  'differ': 1,
  'discov': 1,
  'done': 1,
  'email_verified': True,
  'engin': 3,
  'experienc': 1,
  'extens': 1,
  'extrem': 1,
  'facebook_connected': True,
  'find': 1,
  'framework': 3,
  'freelanc': 1,
  'full': 1,
  'get': 1,
  'got': 1,
  'hire': 1,
  'identity_verified': False,
  'implement': 1,
  'java': 1,
  'knowledg': 1,
  'last': 1,
  'linkedin': 1,
  'manual': 1,
  'need': 1,
  'one': 1,
  'organ': 1,
  'passion': 3,
  'payment_verified': False,
  'phone_verified': True,
  'plan': 1,
  'profil': 1,
  'profile_complete': True,
  'protocol': 1,
  'qa': 4,
  'qualiti': 1,
  'real': 2,
  'rest': 1,
  'right': 1,
  'script': 1,
  'selenium': 1,
  'senior': 1,
  'setup': 1,
  'side': 2,
  'soap': 1,
  'softwar': 1,
  'spent': 1,
  'strong': 1,
  'switch': 1,
  'test': 5,
  'tester': 1,
  'thing': 1,
  'variou': 1,
  'web': 3,
  'work': 2,
  'year': 3},
 745: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'c',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'administr': 1,
  'ahm': 1,
  'deposit_made': False,
  'email_verified': True,
  'experienc': 1,
  'facebook_connected': False,
  'hi': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'server': 1,
  'web': 1},
 746: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'a',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'analysi': 1,
  'applic': 2,
  'architect': 1,
  'back-offic': 1,
  'client': 1,
  'compani': 2,
  'connect': 1,
  'custom': 1,
  'deposit_made': True,
  'design': 3,
  'develop': 6,
  'dynam': 1,
  'economi': 1,
  'email_verified': True,
  'engin': 1,
  'experi': 2,
  'extens': 1,
  'facebook_connected': True,
  'gener': 1,
  'horizont': 1,
  'identity_verified': False,
  'implement': 3,
  'integr': 4,
  'internet/intranet': 1,
  'market': 3,
  'new': 1,
  'offer': 2,
  'offshor': 1,
  'optim': 1,
  'part': 1,
  'payment_verified': False,
  'phone_verified': False,
  'product': 4,
  'product.w': 1,
  'profile_complete': True,
  'program': 1,
  'provid': 1,
  'search': 1,
  'sell': 1,
  'seo': 1,
  'servic': 5,
  'services.th': 1,
  'softwar': 3,
  'solut': 4,
  'support': 2,
  'system': 1,
  'take': 1,
  'technic': 1,
  'technolog': 2,
  'test': 1,
  'total': 1,
  'turnkey': 1,
  'user': 1,
  'vertic': 1,
  'web': 1,
  'web-sit': 1,
  'well': 2,
  'work': 1},
 747: {"'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'v',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ajax': 1,
  'compon': 1,
  'deposit_made': False,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'fluent': 1,
  'food': 1,
  'identity_verified': False,
  'joomla': 1,
  'oop': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'russian': 1,
  'speaker': 1,
  'wonderland': 1,
  'work': 1,
  'xml': 1},
 748: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'N',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'account': 1,
  'deposit_made': False,
  'email_verified': True,
  'expert': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'softwar': 1},
 749: {'3.5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(12, 13), match='2'>,
  'First': 'v',
  'Last': '8',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'applic': 1,
  'area': 2,
  'autom': 1,
  'base': 1,
  'deposit_made': False,
  'ecommerc': 1,
  'email_verified': True,
  'experi': 1,
  'exposur': 1,
  'facebook_connected': False,
  'focu': 1,
  'function': 1,
  'identity_verified': False,
  'major': 1,
  'mobil': 1,
  'payment_verified': False,
  'phone_verified': False,
  'process': 1,
  'profile_complete': True,
  'project': 1,
  'selenium': 1,
  'softwar': 1,
  'system': 1,
  'technic': 1,
  'test': 3,
  'toward': 1,
  'use': 1,
  'web': 1,
  'work': 1,
  'year': 1},
 750: {'...': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='0'>,
  'First': 'C',
  'Last': '7',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'adob': 1,
  'bfa': 1,
  'busi': 1,
  'creativ': 2,
  'cut': 1,
  'deposit_made': False,
  'educ': 1,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'final': 1,
  'identity_verified': False,
  'microsoft': 1,
  'new': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': False,
  'press': 1,
  'profile_complete': True,
  'quark': 1,
  'small': 1,
  'solut': 1,
  'studio': 1,
  'suit': 1,
  'univers': 1,
  'writingcont': 1,
  'york': 1},
 751: {'15': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': None,
  'First': 'P',
  'Last': 'R',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'banner': 1,
  'comput': 1,
  'current': 1,
  'degre': 1,
  'deposit_made': False,
  'design': 3,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'graphic': 2,
  'identity_verified': False,
  'master': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'technolog': 1,
  'web': 2,
  'year': 1},
 752: {'15': 1,
  '2009.': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
  'Digit': None,
  'First': 'C',
  'Last': 'x',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'also': 1,
  'back-end': 1,
  'career': 1,
  'comfort': 1,
  'deposit_made': False,
  'develop': 1,
  'drupal': 1,
  'email_verified': True,
  'encod': 1,
  'facebook_connected': False,
  'feel': 1,
  'front-end': 1,
  'identity_verified': False,
  'like': 1,
  'magento': 1,
  'modul': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'respons': 1,
  'sinc': 1,
  'start': 1,
  'succeed': 1,
  'symfony2': 1,
  'task': 1,
  'technolog': 1,
  'wordpress': 1},
 753: {'18th': 1,
  '1985': 1,
  '1993': 1,
  '1999': 2,
  '2005': 2,
  '2006': 5,
  '2007': 3,
  '2008': 2,
  '2009': 1,
  '22': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(11, 12), match='2'>,
  'First': 'b',
  'Last': '0',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  '\\xc3\\u02dc': 32,
  '\\xe2\\u20ac\\u201c': 2,
  'abil': 3,
  'academ': 1,
  'achiev': 1,
  'activ': 1,
  'akinola': 2,
  'akoko': 6,
  'analyt': 1,
  'appreci': 1,
  'architect': 1,
  'architectur': 3,
  'asp': 1,
  'attend': 1,
  'auto': 1,
  'birth': 2,
  'build': 1,
  'cad': 1,
  'career': 1,
  'centr': 1,
  'certif': 3,
  'christian': 1,
  'classic': 1,
  'colleg': 2,
  'command': 1,
  'commun': 1,
  'compet': 1,
  'complex': 1,
  'comput': 4,
  'consist': 1,
  'construct': 2,
  'contribut': 1,
  'correct': 1,
  'curricular': 1,
  'data': 1,
  'date': 1,
  'date\\xc3\\u02dc': 2,
  'deadlin': 1,
  'degre': 1,
  'deposit_made': False,
  'dept': 1,
  'develop': 1,
  'diploma': 1,
  'display': 1,
  'divers': 1,
  'easili': 1,
  'effect': 1,
  'email_verified': True,
  'energi': 1,
  'english': 1,
  'ensur': 1,
  'entrepreneuri': 1,
  'examin': 1,
  'excel': 2,
  'facebook_connected': False,
  'firm': 1,
  'five': 1,
  'form': 1,
  'formerli': 1,
  'giwa': 2,
  'goal': 1,
  'govt': 1,
  'growth': 1,
  'gsm': 1,
  'harmoni': 1,
  'headquart': 1,
  'heritag': 1,
  'high': 1,
  'human': 1,
  'identity_verified': False,
  'immens': 1,
  'institut': 1,
  'interperson': 1,
  'june': 1,
  'lago': 3,
  'land': 1,
  'landscap': 1,
  'languag': 1,
  'layout': 1,
  'learn': 1,
  'lectur': 1,
  'live': 1,
  'local': 1,
  'maintain': 1,
  'mainten': 1,
  'male': 1,
  'manageri': 1,
  'marit': 1,
  'maven': 1,
  'maxim': 1,
  'meet': 1,
  'minimum': 1,
  'nation': 3,
  'nd': 1,
  'neighborhood': 2,
  'nigeria': 8,
  'nigerian': 1,
  'oba': 4,
  'object': 2,
  'offic': 2,
  'ondo': 9,
  'optim': 1,
  'organiz': 1,
  'organization\\xe2\\u20ac\\u2122': 1,
  'origin': 1,
  'osun': 2,
  'owo': 3,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'place': 2,
  'plan': 2,
  'polic': 2,
  'polytechn': 3,
  'pressur': 1,
  'primari': 1,
  'process': 1,
  'product': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 2,
  'prospect': 1,
  'public': 2,
  'qualif': 1,
  'quickli': 1,
  'recreat': 1,
  'relat': 2,
  'relax': 1,
  'religi': 1,
  'research': 1,
  'resourc': 1,
  'road': 1,
  'rufu': 2,
  'school': 3,
  'senior': 2,
  'sex': 1,
  'shop': 1,
  'singl': 1,
  'site': 1,
  'skill': 6,
  'solut': 1,
  'south': 1,
  'space': 1,
  'spirit': 1,
  'sport': 1,
  'star': 1,
  'state': 14,
  'statu': 1,
  'step': 1,
  'suit': 1,
  'supervis': 1,
  'system': 1,
  'take': 1,
  'team': 1,
  'tel': 4,
  'three': 1,
  'time': 1,
  'top': 1,
  'toward': 1,
  'town': 1,
  'travel': 1,
  'twenti': 1,
  'use': 1,
  'util': 1,
  'west': 1,
  'work': 6},
 754: {"'s": 2,
  '2008': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'm',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'analysi': 1,
  'autom': 1,
  'busi': 1,
  'challeng': 1,
  'code': 1,
  'commun': 2,
  'contribut': 1,
  'critic': 1,
  'customers.i': 1,
  'deploy': 1,
  'deposit_made': True,
  'drupal': 5,
  'email_verified': True,
  'enterpris': 1,
  'expert': 1,
  'facebook_connected': False,
  'grow': 2,
  'help': 1,
  'identity_verified': False,
  'involv': 1,
  'issu': 1,
  'lead': 1,
  'lot': 1,
  'mnc': 1,
  'organization.i': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'product': 1,
  'profile_complete': True,
  'provid': 2,
  'sinc': 1,
  'software/web': 1,
  'solut': 2,
  'solv': 1,
  'statist': 1,
  'support': 1,
  'variou': 1,
  'work': 2},
 755: {"'m": 2,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'o',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'activ': 1,
  'ajax': 1,
  'also': 2,
  'applic': 1,
  'base': 1,
  'branch': 1,
  'care': 1,
  'cross-brows': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'framework': 1,
  'freelanc': 1,
  'graphic': 1,
  'identity_verified': False,
  'interact': 1,
  'involv': 1,
  'jqueri': 1,
  'js': 1,
  'like': 1,
  'mani': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'script': 1,
  'server-sid': 1,
  'templat': 1,
  'web': 1,
  'year': 1},
 756: {'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'v',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'acc': 1,
  'deposit_made': False,
  'email_verified': True,
  'excel': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'ms': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'visio': 1,
  'word': 1},
 757: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'P',
  'Last': '3',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'agenda': 1,
  'area': 1,
  'articl': 1,
  'behind': 1,
  'better': 1,
  'busi': 1,
  'challeng': 2,
  'client': 2,
  'compromis': 1,
  'continu': 1,
  'daili': 1,
  'date': 1,
  'deadlin': 1,
  'decid': 1,
  'deliv': 1,
  'deposit_made': True,
  'done': 1,
  'down.thank': 1,
  'email_verified': True,
  'ever': 1,
  'experi': 1,
  'experienc': 1,
  'facebook_connected': False,
  'fail': 1,
  'frame': 1,
  'give': 1,
  'great': 1,
  'handl': 1,
  'height': 1,
  'hi': 1,
  'identity_verified': False,
  'improv': 1,
  'intens': 1,
  'let': 1,
  'look': 1,
  'love': 2,
  'make': 1,
  'mani': 1,
  'moment': 1,
  'never': 1,
  'new': 1,
  'payment_verified': False,
  'phone_verified': True,
  'prime': 1,
  'profile_complete': True,
  'project': 2,
  'provid': 1,
  'qualiti': 2,
  'regard': 1,
  'relat': 1,
  'result': 1,
  'short': 1,
  'sure': 1,
  'take': 1,
  'team': 3,
  'that': 1,
  'tight': 1,
  'till': 1,
  'time': 2,
  'trust': 3,
  'us': 4,
  'well': 1,
  'within': 1,
  'without': 1,
  'work': 4,
  'would': 3,
  'writer': 1,
  'year': 1},
 758: {"'m": 1,
  '3d': 2,
  '9': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='6'>,
  'First': 'r',
  'Last': '5',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'charact': 1,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'etc..': 1,
  'exactli': 1,
  'experi': 1,
  'expertis': 1,
  'exterior': 1,
  'facebook_connected': True,
  'graphic': 1,
  'hi': 1,
  'identity_verified': False,
  'illustr': 1,
  'interior': 1,
  'look': 1,
  'max': 1,
  'maya': 1,
  'model': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'potenti': 1,
  'product': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 1,
  'qualiti': 1,
  'quick': 1,
  'ray': 1,
  'right': 1,
  'skill': 1,
  'start': 1,
  'v': 1,
  'want': 1,
  'well': 1,
  'work': 3,
  'year': 1},
 759: {'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'u',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'look': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'qualiti': 1,
  'serious': 1,
  'work': 2},
 760: {"'re": 1,
  "'s": 2,
  '1,000': 1,
  'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'also': 1,
  'appear': 1,
  'becom': 1,
  'brand': 1,
  'browser': 1,
  'care': 2,
  'code': 1,
  'configur': 1,
  'content': 3,
  'creat': 1,
  'css': 1,
  'deposit_made': True,
  'design': 1,
  'directli': 1,
  'dramat': 1,
  'easili': 1,
  'email_verified': True,
  'engin': 2,
  'enjoy': 1,
  'enough': 1,
  'enter': 1,
  'expert': 1,
  'facebook_connected': False,
  'forward': 1,
  'graphic': 1,
  'hand': 1,
  'help': 3,
  'html': 1,
  'identity_verified': False,
  'import': 1,
  'improv': 1,
  'increas': 2,
  'invis': 1,
  'learn': 1,
  'make': 1,
  'memor': 1,
  'one': 2,
  'onto': 1,
  'optim': 2,
  'payment_verified': True,
  'percent': 1,
  'phone_verified': False,
  'posit': 1,
  'privileg': 1,
  'profile_complete': True,
  'recognit': 1,
  'search': 6,
  'seo': 3,
  'servic': 1,
  'sure': 1,
  'theme': 2,
  'thousand': 1,
  'url': 1,
  'user': 1,
  'visibl': 1,
  'visit': 2,
  'websit': 4,
  'wo': 2,
  'wordpress': 5,
  'work': 1,
  'ye': 1},
 761: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
  'First': 'k',
  'Last': '3',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'bot': 1,
  'deposit_made': True,
  'develop': 2,
  'email_verified': True,
  'expert': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'seo': 2,
  'softwar': 1,
  'work': 1},
 762: {"'ve": 3,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'a',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'alway': 1,
  'analyst': 1,
  'busi': 1,
  'c': 1,
  'c++': 1,
  'client': 1,
  'code': 3,
  'day': 1,
  'demo': 1,
  'deposit_made': False,
  'drupal': 1,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'hobbi': 1,
  'identity_verified': False,
  'includ': 1,
  'job': 1,
  'joomla': 2,
  'like': 1,
  'mambo': 1,
  'mingl': 1,
  'past': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'provid': 1,
  'quit': 1,
  'receiv': 1,
  'run': 1,
  'school': 1,
  'server': 1,
  'site': 1,
  'solut': 1,
  'student': 1,
  'ten': 1,
  'time': 1,
  'undergrad': 1,
  'univers': 1,
  'vb': 1,
  'want': 1,
  'wordpress': 1,
  'year': 2},
 763: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'o',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'account': 1,
  'background': 1,
  'book': 1,
  'deposit_made': True,
  'design': 1,
  'email_verified': True,
  'everyth': 1,
  'facebook_connected': False,
  'financi': 1,
  'forward': 1,
  'identity_verified': False,
  'keep': 1,
  'look': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'statement': 1,
  'thinker': 1,
  'work': 1},
 764: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'y',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'articl': 1,
  'broker': 1,
  'captiv': 1,
  'content': 1,
  'deadlin': 1,
  'deposit_made': False,
  'desk': 1,
  'email_verified': True,
  'facebook_connected': False,
  'goal': 1,
  'grammar': 1,
  'handl': 1,
  'identity_verified': False,
  'keep': 1,
  'last': 1,
  'let': 1,
  'need': 1,
  'payment_verified': False,
  'perfect': 1,
  'phone_verified': True,
  'piec': 1,
  'profile_complete': True,
  'project': 1,
  'punctuat': 1,
  'score': 1,
  'second': 1,
  'style': 1,
  'text': 1,
  'tick': 1,
  'wordsmith': 1,
  'work': 1,
  'write': 1},
 765: {'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'r',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'alway': 1,
  'deposit_made': False,
  'email_verified': True,
  'expertis': 1,
  'facebook_connected': False,
  'hard': 1,
  'identity_verified': False,
  'learn': 1,
  'look': 1,
  'loyal': 1,
  'need': 1,
  'new': 2,
  'one': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'realli': 1,
  'servic': 1,
  'sincer': 1,
  'smart': 1,
  'softwar': 1,
  'technic': 1,
  'thing': 1,
  'want': 1,
  'worker': 1},
 766: {"'m": 1,
  '6': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'o',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'clientel': 1,
  'commerci': 1,
  'deadlin': 1,
  'deposit_made': False,
  'done': 1,
  'effect': 1,
  'email_verified': True,
  'equal': 1,
  'experi': 1,
  'facebook_connected': False,
  'film': 1,
  'grow': 1,
  'hope': 1,
  'identity_verified': False,
  'list': 1,
  'passion': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'task': 1,
  'televis': 1,
  'tight': 1,
  'varieti': 1,
  'visual': 1,
  'year': 1},
 767: {'...': 1,
  'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'o',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'accent': 1,
  'alway': 1,
  'asia': 1,
  'assur': 1,
  'australia': 1,
  'bangladesh': 1,
  'believ': 1,
  'better': 1,
  'bidder': 1,
  'biswa': 2,
  'canada': 1,
  'comfort': 1,
  'custom': 3,
  'deliveri': 1,
  'deposit_made': False,
  'director': 1,
  'durat': 1,
  'email_verified': True,
  'enthusiast': 1,
  'facebook_connected': True,
  'firm': 1,
  'identity_verified': True,
  'inform': 1,
  'keep': 1,
  'long': 1,
  'loop': 1,
  'manag': 1,
  'one': 2,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'progress': 1,
  'project': 4,
  'qualiti': 2,
  'realli': 1,
  'relat': 1,
  'relax': 1,
  'rest': 1,
  'satisfact': 1,
  'seriou': 1,
  'servic': 1,
  'technolog': 1,
  'time': 1,
  'uk': 1,
  'usa': 1,
  'work': 2},
 768: {'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'l',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'api-': 1,
  'api.-': 1,
  'applic': 1,
  'cakephp': 1,
  'css': 1,
  'databas': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook': 1,
  'facebook_connected': False,
  'feed': 1,
  'framework': 1,
  'googl': 1,
  'graph': 1,
  'html': 1,
  'html5': 1,
  'identity_verified': False,
  'integr': 1,
  'javascript': 1,
  'jira': 1,
  'job': 1,
  'jquery/ajax': 1,
  'languag': 1,
  'map': 1,
  'memcach': 1,
  'misc': 1,
  'multi': 1,
  'mvc': 1,
  'mysql.-': 1,
  'netbean': 1,
  'oophp': 1,
  'payment_verified': False,
  'pdo': 1,
  'phone_verified': False,
  'php5': 1,
  'profile_complete': True,
  'rss': 1,
  'search': 1,
  'services.-': 1,
  'svn': 1,
  'web': 3,
  'websites.-': 1,
  'xhtml': 1,
  'xml': 2},
 769: {'..': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'n',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'bpo': 1,
  'busi': 1,
  'deposit_made': False,
  'email_verified': True,
  'exp': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'industri': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'run': 1,
  'tri': 1,
  'work': 1,
  'year': 1},
 770: {'*\\thave': 2,
  '*\\tsound': 2,
  '01': 1,
  '10th': 1,
  '17': 1,
  '17th': 2,
  '200': 2,
  '2003': 1,
  '2006': 2,
  '2007': 2,
  '2009': 1,
  '2d': 1,
  '3': 3,
  '3.0': 1,
  '31st': 1,
  '36': 2,
  '3d': 1,
  '4': 1,
  '5': 1,
  '6': 1,
  '600': 1,
  '8': 2,
  '800': 1,
  '94.3': 4,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
  'Digit': None,
  'First': 'P',
  'Last': 'y',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '\\xe2\\u20ac\\u0153best': 1,
  '\\xe2\\u20ac\\u201c': 6,
  'abl': 1,
  'achiev': 1,
  'act': 1,
  'add': 1,
  'ahead': 1,
  'aid': 1,
  'airllab': 2,
  'also': 1,
  'among': 1,
  'ampl': 1,
  'anim': 1,
  'associ': 1,
  'audio': 3,
  'bardl': 2,
  'bringer': 2,
  'cdj': 3,
  'certifi': 1,
  'challeng': 1,
  'channel': 3,
  'citi': 2,
  'codec': 1,
  'commun': 1,
  'consol': 1,
  'contain': 1,
  'cut': 1,
  'date': 4,
  'day': 2,
  'deposit_made': False,
  'design': 1,
  'digit': 3,
  'digital-mix': 2,
  'dil': 2,
  'dj': 1,
  'done': 2,
  'drama': 1,
  'dub': 1,
  'edit': 2,
  'educ': 1,
  'electron': 1,
  'email_verified': True,
  'end': 3,
  'engin': 3,
  'english': 1,
  'esteem': 1,
  'etc': 2,
  'etc\\xe2\\u20ac\\xa6': 1,
  'expect': 1,
  'experi': 2,
  'explor': 1,
  'facebook_connected': False,
  'final': 1,
  'fl': 1,
  'fm': 5,
  'forg': 1,
  'freelanc': 1,
  'garag': 1,
  'gave': 1,
  'graphic': 1,
  'hindi': 1,
  'human': 1,
  'identity_verified': False,
  'india': 1,
  'internet': 1,
  'j': 1,
  'jan': 1,
  'jiyo': 2,
  'knowledg': 1,
  'known\\t': 1,
  'languag': 1,
  'last': 1,
  'level': 2,
  'live': 1,
  'look': 1,
  'marathi': 1,
  'may': 3,
  'mix': 2,
  'mixer': 2,
  'mk2': 2,
  'modul': 1,
  'month': 4,
  'month\\xe2\\u20ac\\u2122': 1,
  'myfm': 2,
  'nagpur': 5,
  'nation': 2,
  'nuendo': 2,
  'object': 1,
  'oct': 2,
  'onair': 2,
  'opportun': 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pioneer': 3,
  'play': 1,
  'posit': 1,
  'privat': 1,
  'pro': 1,
  'produc': 3,
  'product': 2,
  'profici': 1,
  'profile_complete': True,
  'promo': 4,
  'provid': 1,
  'qualif': 1,
  'r': 2,
  'raipur': 2,
  'rc': 2,
  'record': 1,
  'region': 1,
  'repeat': 1,
  'right': 1,
  'se': 2,
  'servic': 1,
  'show': 1,
  'sinc': 1,
  'softwar': 3,
  'sound': 5,
  'stage': 1,
  'start': 3,
  'station': 1,
  'storm': 1,
  'studio': 2,
  'technic': 1,
  'techniqu': 1,
  'time': 1,
  'transfer': 1,
  'transmiss': 1,
  'tx': 2,
  'upto': 1,
  'use': 2,
  'user': 1,
  'v2': 1,
  'v3': 2,
  'vega': 1,
  'vers': 1,
  'visual': 1,
  'work': 6,
  'yamaha': 2,
  'year': 1},
 771: {'+254': 2,
  '097e-mail': 1,
  '10': 1,
  '10.': 1,
  '100': 2,
  '1986nation': 1,
  '2008-2009': 1,
  '2008/2009': 1,
  '2009': 1,
  '2011': 1,
  '2012': 1,
  '2013.2006-2007': 1,
  '2015.2007-2011': 1,
  '2015\\tmaseno': 1,
  '266': 1,
  '50': 1,
  '595': 1,
  '715': 1,
  '722779914': 1,
  '727': 1,
  '875': 1,
  '9.6': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'r',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '\\t': 1,
  '\\t25th': 1,
  '\\t26457404languag': 1,
  '\\t\\t+254': 1,
  '\\t\\tmaled': 1,
  '\\tacadem': 1,
  '\\tenglish': 1,
  '\\tkenyanid': 1,
  '\\tmaseno': 4,
  '\\tmisori': 1,
  '\\tonyango': 1,
  '\\tresearch': 2,
  '\\tsingletel': 1,
  '\\tst': 1,
  '\\tthe': 2,
  '\\xe2\\u20ac\\u201c': 4,
  'academ': 1,
  'across': 1,
  'address': 1,
  'adult': 1,
  'advanc': 1,
  'africa': 1,
  'african': 3,
  'agenda': 2,
  'ambiti': 1,
  'appetit': 1,
  'appreciation.refereesgeorg': 1,
  'art': 2,
  'articl': 4,
  'articles2012': 1,
  'attend': 2,
  'attract': 1,
  'august': 1,
  'awb': 1,
  'ba': 2,
  'bachelor': 2,
  'background2013': 1,
  'basi': 1,
  'basic': 1,
  'benchmark': 1,
  'big': 1,
  'birth': 1,
  'blog': 3,
  'brief': 2,
  'brought': 1,
  'bureau': 1,
  'busi': 7,
  'career': 3,
  'center': 3,
  'certif': 3,
  'class': 1,
  'colleg': 1,
  'commun': 3,
  'compani': 2,
  'complet': 2,
  'comput': 2,
  'conduct': 3,
  'confer': 1,
  'content': 2,
  'contest': 2,
  'cours': 3,
  'cover': 1,
  'creat': 1,
  'credit.2003-2006': 1,
  'curriculum': 1,
  'custom': 1,
  'deal': 1,
  'defer': 1,
  'department': 1,
  'deposit_made': False,
  'design': 1,
  'detailsful': 1,
  'director': 1,
  'divis': 1,
  'e.a': 1,
  'east': 4,
  'editingachievements2010-2011': 1,
  'editor': 1,
  'educ': 2,
  'email_verified': True,
  'emerg': 1,
  'entri': 1,
  'essay': 1,
  'experi': 1,
  'experience2013': 1,
  'facebook_connected': False,
  'fact': 1,
  'featur': 2,
  'field': 1,
  'finalist': 1,
  'finest': 1,
  'follow': 1,
  'gather': 1,
  'grade.1994-2002': 1,
  'graduat': 2,
  'gruel': 1,
  'guchu': 1,
  'half': 1,
  'high': 2,
  'identity_verified': False,
  'inform': 4,
  'innov': 1,
  'insati': 1,
  'institut': 1,
  'interest': 1,
  'interview': 2,
  'jacob': 1,
  'joonyango2012': 1,
  'journal': 3,
  'journalist': 1,
  'kcpe': 1,
  'kcse': 1,
  'kenya': 4,
  'kiswahilimarit': 1,
  'kombo': 1,
  'lead': 1,
  'left': 1,
  'leonard': 1,
  'ligisa': 1,
  'limit': 2,
  'link': 1,
  'long': 1,
  'magazine.2008': 1,
  'manag': 2,
  'market': 2,
  'media': 5,
  'microsoft': 1,
  'million': 1,
  'mitc': 1,
  'muc': 1,
  'name': 1,
  'new': 2,
  'next': 1,
  'nose': 1,
  'number': 1,
  'object': 1,
  'objectivejacob': 1,
  'offic': 1,
  'one': 1,
  'opportunities.2008-2009': 1,
  'organ': 1,
  'otienogend': 1,
  'overal': 1,
  'paper': 1,
  'part': 1,
  'part-tim': 1,
  'particip': 1,
  'paul\\xe2\\u20ac\\u2122': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photojourn': 1,
  'plu': 3,
  'prefer': 1,
  'present': 2,
  'press': 1,
  'primari': 2,
  'proceed': 1,
  'profile_complete': True,
  'project': 2,
  'publish': 2,
  'purs': 1,
  'pursu': 3,
  'qualiti': 1,
  'rang': 1,
  'rate': 1,
  'readi': 1,
  'region': 1,
  'research': 4,
  'rwc': 2,
  'sale': 1,
  'sampl': 1,
  'sat': 2,
  'scale': 1,
  'school': 2,
  'school.work': 1,
  'scienc': 2,
  'scoop': 1,
  'score': 1,
  'script': 1,
  'second': 1,
  'secondari': 2,
  'set': 1,
  'skill': 2,
  'skills.oth': 1,
  'skillsbas': 1,
  'social': 2,
  'sponsor': 1,
  'statu': 1,
  'still': 1,
  'stori': 1,
  'straightforward': 1,
  'strong': 1,
  'student': 1,
  'studi': 3,
  'submiss': 1,
  'submit': 2,
  'supervis': 2,
  'task.academ': 1,
  'technolog': 5,
  'tel': 2,
  'ten': 1,
  'time': 4,
  'took': 1,
  'train': 3,
  'univers': 5,
  'upper': 1,
  'use': 1,
  'video': 1,
  'vitaeperson': 1,
  'web': 3,
  'websit': 1,
  'win': 1,
  'world': 1,
  'worth': 1,
  'write': 7,
  'writer': 2,
  'written': 2,
  'year': 2,
  'young': 1},
 772: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 't',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'agenc': 1,
  'compani': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 1,
  'digit': 2,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'market': 1,
  'payment_verified': True,
  'philippin': 1,
  'phone_verified': True,
  'profile_complete': True,
  'richard': 1,
  'run': 1,
  'small': 1,
  'web': 2,
  'year': 1},
 773: {'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 's',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'applic': 1,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'experi': 1,
  'experienc': 1,
  'facebook_connected': False,
  'full': 2,
  'identity_verified': False,
  'lifecycl': 1,
  'oper': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'stack': 1,
  'web': 2},
 774: {'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'n',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
  'alway': 1,
  'best': 1,
  'client': 1,
  'deposit_made': True,
  'develop': 2,
  'email_verified': True,
  'facebook_connected': False,
  'fl': 1,
  'give': 1,
  'identity_verified': False,
  'learn': 1,
  'love': 1,
  'newest': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 1,
  'produc': 1,
  'profile_complete': True,
  'receiv': 1,
  'rubi': 1,
  'servic': 1,
  'show': 1,
  'tampa': 1,
  'techniqu': 1,
  'web': 1,
  'work': 1},
 775: {'11:00': 1,
  '40': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'b',
  'Last': 'k',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'avail': 1,
  'deposit_made': False,
  'easili': 1,
  'email_verified': True,
  'facebook_connected': False,
  'gmt': 1,
  'hour': 1,
  'identity_verified': False,
  'mon': 1,
  'onlin': 1,
  'payment_verified': False,
  'per': 1,
  'phone_verified': False,
  'portfolio': 1,
  'profile_complete': True,
  'promin': 1,
  'reach': 1,
  'sat': 1,
  'site': 1,
  'week': 1},
 776: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 's',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'amazon': 1,
  'commerc': 1,
  'deposit_made': True,
  'e': 1,
  'email_verified': True,
  'etc': 1,
  'expert.': 1,
  'facebook_connected': False,
  'financi': 1,
  'flipkart': 1,
  'freelanc': 1,
  'hardwar': 1,
  'identity_verified': False,
  'like': 1,
  'onlin': 1,
  'payment_verified': True,
  'phone_verified': False,
  'product': 1,
  'profession': 1,
  'profile_complete': True,
  'sell': 2,
  'servic': 1,
  'site': 1,
  'snapdeal': 1,
  'variou': 1},
 777: {'30': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(3, 4), match='6'>,
  'First': 'z',
  'Last': '1',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'armi': 2,
  'assur': 1,
  'attent': 1,
  'attitud': 1,
  'award': 1,
  'big': 1,
  'bring': 1,
  'dedic': 1,
  'deposit_made': False,
  'detail': 1,
  'disciplin': 1,
  'email_verified': True,
  'ex': 1,
  'facebook_connected': False,
  'futur': 1,
  'hallmark': 1,
  'identity_verified': False,
  'irrespect': 1,
  'job': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': False,
  'posit': 1,
  'profile_complete': True,
  'provid': 1,
  'regret': 1,
  'servic': 2,
  'small': 1,
  'whether': 1,
  'work': 1,
  'year': 1},
 778: {'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'o',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'alway': 1,
  'assur': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'home': 1,
  'identity_verified': False,
  'job': 1,
  'like': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'prompt': 1,
  'qualiti': 1,
  'remain': 1},
 779: {'2000/2005/2008': 1,
  '5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
  'First': 'h',
  'Last': '7',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'access': 1,
  'activ': 2,
  'ado/': 1,
  'angularj': 2,
  'citi': 1,
  'compon': 1,
  'crystal': 1,
  'data': 1,
  'databas': 1,
  'db': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'dynam': 1,
  'email_verified': True,
  'entiti': 1,
  'excel': 1,
  'facebook_connected': False,
  'file': 1,
  'format': 1,
  'framework': 1,
  'identity_verified': False,
  'ii': 1,
  'imag': 1,
  'javascript': 1,
  'js': 1,
  'kendo': 1,
  'lead': 1,
  'linq': 1,
  'microsoft': 2,
  'ms': 5,
  'mvc': 1,
  'nunit': 1,
  'odbc': 1,
  'offic': 3,
  'one': 1,
  'outlook': 1,
  'pars': 1,
  'pattern': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'program': 2,
  'report': 5,
  'server': 1,
  'servic': 1,
  'sql': 1,
  'summari': 1,
  'technic': 1,
  'technolog': 1,
  'tool': 1,
  'ui-': 1,
  'vba': 1,
  'viewer': 1,
  'wcf': 1},
 780: {'7': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'k',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'around': 1,
  'data': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'entri': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'java': 1,
  'like': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'softwar': 1,
  'technolog': 1,
  'work': 1,
  'would': 1,
  'yr': 1},
 781: {"''": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
  'Digit': None,
  'First': 'B',
  'Last': 'X',
  'Numchar': 3,
  'Vowel': None,
  '``': 1,
  'achiev': 1,
  'adob': 1,
  'among': 1,
  'build': 1,
  'capabl': 1,
  'capac': 1,
  'carrier': 1,
  'commun': 1,
  'comput': 1,
  'coupl': 1,
  'deposit_made': True,
  'design': 1,
  'domain': 1,
  'email_verified': True,
  'engin': 1,
  'excel': 1,
  'experience.i': 1,
  'facebook_connected': False,
  'faculti': 1,
  'field': 1,
  'file': 1,
  'form': 1,
  'graduat': 1,
  'help': 1,
  'identity_verified': False,
  'knowledg': 1,
  'mani': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'realiz': 1,
  'scienc': 1,
  'sinc': 1,
  'special': 1,
  'strong': 2,
  'team': 1,
  'univers': 1,
  'web': 1,
  'wish': 1,
  'work': 1,
  'year': 2},
 782: {'3': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'ajax': 1,
  'also': 1,
  'area': 1,
  'bug': 1,
  'build': 1,
  'busi': 1,
  'compani': 1,
  'compet': 1,
  'complet': 1,
  'core': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'email_verified': True,
  'end-end': 1,
  'experi': 1,
  'facebook_connected': True,
  'fix': 1,
  'follow': 1,
  'framework': 1,
  'ground': 1,
  'hmtl': 1,
  'identity_verified': False,
  'includ': 1,
  'last': 1,
  'lie': 1,
  'manag': 1,
  'mvc': 1,
  'mysql': 1,
  'new': 1,
  'oop': 1,
  'opportun': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'rang': 1,
  'seek': 1,
  'site': 1,
  'softwar': 1,
  'sql': 1,
  'startup': 1,
  'test': 1,
  'use': 1,
  'websit': 3,
  'wide': 1,
  'year': 1},
 783: {"'m": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
  'First': 'S',
  'Last': '1',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'ali': 1,
  'appli': 1,
  'bangladesh': 1,
  'chemic': 1,
  'chemistri': 1,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'leav': 1,
  'name': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'rajshahi': 1,
  'student': 1,
  'univers': 1},
 784: {'.net': 2,
  '1.6': 1,
  '15': 1,
  '2': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'k',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'agil': 1,
  'ajax': 1,
  'analyt': 1,
  'applic': 2,
  'architect': 1,
  'arm': 1,
  'avid': 1,
  'base': 3,
  'believ': 2,
  'busi': 2,
  'c': 1,
  'capabl': 1,
  'capac': 1,
  'client': 1,
  'coder': 1,
  'comfort': 1,
  'command': 1,
  'complet': 1,
  'convers': 1,
  'cycl': 1,
  'deliveri': 1,
  'deposit_made': False,
  'develop': 4,
  'domain': 1,
  'driven': 1,
  'earlier': 1,
  'eclips': 1,
  'email_verified': True,
  'embed': 1,
  'english': 1,
  'entrepreneur': 1,
  'etc': 1,
  'etc..': 1,
  'experienc': 1,
  'expos': 1,
  'facebook_connected': False,
  'fast': 1,
  'feedback': 1,
  'focu': 1,
  'gui': 1,
  'hand': 1,
  'identity_verified': False,
  'industri': 1,
  'input': 1,
  'iter': 1,
  'java': 3,
  'junit': 1,
  'launch': 1,
  'lead': 3,
  'learner': 1,
  'manufactur': 1,
  'market': 1,
  'mechan': 1,
  'meet': 1,
  'mortgag': 1,
  'open': 1,
  'particip': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': True,
  'primarili': 1,
  'profile_complete': True,
  'project': 6,
  'python': 1,
  'requir': 1,
  'sampl': 1,
  'schedul': 2,
  'server': 1,
  'short': 1,
  'skill': 1,
  'skype': 1,
  'softwar': 2,
  'sourc': 1,
  'specif': 1,
  'stakehold': 1,
  'strong': 2,
  'success': 1,
  'team': 3,
  'technolog': 1,
  'test': 1,
  'tool': 1,
  'translat': 1,
  'turnkey': 1,
  'understand': 1,
  'us': 1,
  'use': 1,
  'varieti': 1,
  'version': 1,
  'voip': 1,
  'web': 2,
  'wide': 1,
  'work': 1,
  'workflow': 1,
  'world': 1,
  'year': 1},
 785: {'18': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'Digit': None,
  'First': 'E',
  'Last': 'x',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'agenc': 1,
  'audienc': 1,
  'busi': 1,
  'compani': 1,
  'deposit_made': True,
  'design': 2,
  'email_verified': True,
  'everyth': 1,
  'experi': 1,
  'extens': 1,
  'facebook_connected': True,
  'forward': 1,
  'govern': 1,
  'graphic': 2,
  'identity_verified': False,
  'individu': 1,
  'kind': 1,
  'look': 1,
  'organ': 1,
  'payment_verified': True,
  'phone_verified': True,
  'product': 2,
  'profile_complete': True,
  'provid': 1,
  'purpos': 1,
  'sens': 1,
  'year': 1},
 786: {'.experienc': 1,
  '2012': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'k',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'aspect': 1,
  'avaya': 1,
  'ccna': 2,
  'ccnp': 2,
  'collabor': 1,
  'comfort': 1,
  'complet': 1,
  'configur': 1,
  'consult': 1,
  'deep': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'ethernet': 1,
  'experi': 1,
  'facebook_connected': True,
  'hold': 1,
  'identity_verified': False,
  'implement': 1,
  'instal': 1,
  'ip': 1,
  'junip': 1,
  'knowledg': 1,
  'level': 1,
  'mcse': 1,
  'network': 1,
  'optic': 1,
  'payment_verified': False,
  'phone_verified': True,
  'practic': 1,
  'profile_complete': True,
  'r': 1,
  'secur': 1,
  'sopho': 1,
  'support': 1,
  'technic': 1,
  'telecommun': 1,
  'theoret': 1,
  'train': 2,
  'transmiss': 2,
  'voic': 1,
  'wireless': 1,
  'year': 1},
 787: {"''": 1,
  "'ve": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='1'>,
  'First': 'm',
  'Last': '3',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  '``': 1,
  'abl': 1,
  'absolut': 1,
  'account': 3,
  'also': 1,
  'award': 1,
  'collect': 1,
  'convinc': 2,
  'copyright': 1,
  'countri': 1,
  'deposit_made': False,
  'discuss': 1,
  'easili': 1,
  'editor': 3,
  'email_verified': True,
  'english': 1,
  'enough': 1,
  'except': 1,
  'experi': 1,
  'experienc': 1,
  'facebook_connected': False,
  'fake': 1,
  'feedback': 1,
  'find': 2,
  'freelanc': 5,
  'freelancer.com': 1,
  'genuin': 1,
  'googl': 2,
  'identity_verified': False,
  'inexperienc': 2,
  'inform': 1,
  'intellectu': 1,
  'investig': 1,
  'job': 1,
  'leav': 2,
  'lie': 1,
  'like': 1,
  'line': 1,
  'linguist': 1,
  'live': 1,
  'mani': 2,
  'martin': 1,
  'nativ': 1,
  'often': 1,
  'open': 1,
  'origin': 1,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': True,
  'place': 1,
  'pleas': 1,
  'posit': 1,
  'preserv': 1,
  'profession': 2,
  'profil': 2,
  'profile_complete': True,
  'project': 2,
  'properti': 1,
  'qualif': 1,
  'rare': 1,
  'regard': 1,
  'requir': 1,
  'sell': 1,
  'side': 1,
  'site': 1,
  'skill': 1,
  'speak': 1,
  'steal': 1,
  'subcontract': 1,
  'translat': 1,
  'tri': 1,
  'unskil': 2,
  'use': 2,
  'user': 1,
  'websit': 1,
  'without': 2,
  'work': 1,
  'would': 2,
  'writer': 3,
  'year': 1},
 788: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'z',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'background': 1,
  'c': 1,
  'communications*': 1,
  'deposit_made': False,
  'development*': 1,
  'digit': 1,
  'email_verified': True,
  'engin': 1,
  'experi': 1,
  'facebook_connected': True,
  'firmwar': 1,
  'identity_verified': False,
  'javascript': 1,
  'languag': 1,
  'machin': 1,
  'payment_verified': False,
  'phone_verified': True,
  'processing*': 1,
  'profile_complete': True,
  'python*': 1,
  'senior': 1,
  'signal': 1,
  'strong': 1,
  'system': 1,
  'technolog': 1,
  'visual': 1,
  'web': 1},
 789: {"''": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'R',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='E'>,
  '\\xd0\\xb2': 2,
  '\\xd0\\xb8': 2,
  '\\xd1\\x81\\xd0\\xbe\\xd1\\u201e\\xd1\\u201a': 2,
  '``': 1,
  'basic': 1,
  'delphi': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'visual': 1},
 790: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'e',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'advertis': 1,
  'alway': 1,
  'artist': 1,
  'come': 1,
  'dental': 1,
  'deposit_made': False,
  'draw': 2,
  'email_verified': True,
  'face': 1,
  'facebook_connected': False,
  'find': 1,
  'idea': 2,
  'identity_verified': False,
  'like': 1,
  'moonlight': 1,
  'observ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'process': 1,
  'profile_complete': True,
  'stimul': 1,
  'surgeon': 1,
  'white': 1,
  'write': 1},
 791: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'applic': 2,
  'architectur': 1,
  'automat': 1,
  'best': 1,
  'bot': 1,
  'client/serv': 1,
  'crawl': 1,
  'creat': 1,
  'css': 1,
  'custom': 1,
  'data': 1,
  'deliv': 1,
  'delphi': 1,
  'deposit_made': False,
  'develop': 1,
  'effici': 1,
  'email_verified': True,
  'estat': 1,
  'experi': 3,
  'extract': 1,
  'facebook_connected': False,
  'fast': 1,
  'freelanc': 1,
  'hr': 1,
  'identity_verified': False,
  'industri': 1,
  'javascript': 1,
  'latest': 1,
  'multi-thread': 1,
  'mysql': 1,
  'nativ': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'post': 1,
  'profile_complete': True,
  'program': 2,
  'provid': 1,
  'qualiti': 1,
  'scratch': 1,
  'seo': 1,
  'server': 1,
  'servic': 1,
  'small': 1,
  'soap': 1,
  'softwar': 2,
  'team': 1,
  'technolog': 1,
  'templat': 1,
  'train': 1,
  'use': 2,
  'valid': 1,
  'vision': 1,
  'w3c': 1,
  'web': 2,
  'websit': 2,
  'win32': 2,
  'work': 2,
  'xhtml': 1},
 792: {'9': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'y',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'account': 1,
  'advertis': 4,
  'agenc': 1,
  'begin': 1,
  'believ': 1,
  'brows': 1,
  'busi': 1,
  'compani': 1,
  'comprehens': 1,
  'concept': 1,
  'creat': 1,
  'creativ': 3,
  'current': 1,
  'day-to-day': 1,
  'deposit_made': True,
  'design': 1,
  'digit': 1,
  'email_verified': True,
  'engag': 1,
  'entertain': 1,
  'exist': 1,
  'expand': 1,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'good': 1,
  'hands-on': 1,
  'identity_verified': True,
  'includ': 1,
  'insur': 1,
  'intern': 1,
  'kind': 1,
  'look': 1,
  'lot': 1,
  'mainstream': 1,
  'mani': 1,
  'medic': 1,
  'memor': 1,
  'more.if': 1,
  'nation': 1,
  'need': 1,
  'new': 1,
  'payment_verified': True,
  'phone_verified': True,
  'pitch': 2,
  'possess': 1,
  'profile_complete': True,
  'relev': 1,
  'sampl': 1,
  'sell': 1,
  'servic': 1,
  'set': 1,
  'sever': 1,
  'simpli': 1,
  'skill': 1,
  'start': 1,
  'stuff': 1,
  'success': 1,
  'that\\xe2\\u20ac\\u2122': 1,
  'understand': 1,
  'upon': 1,
  'win': 1,
  'work': 1,
  'year': 1,
  'you\\xe2\\u20ac\\u2122r': 1},
 793: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'e',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'access': 1,
  'arab': 1,
  'busi': 1,
  'corel': 1,
  'cut': 1,
  'databas': 1,
  'deposit_made': False,
  'draw': 1,
  'email_verified': True,
  'etc': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'laser': 1,
  'line': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profici': 1,
  'profile_complete': True,
  'run': 1,
  'type': 1,
  'urdu': 1,
  'work': 1},
 794: {'.net': 4,
  '/2008': 1,
  '2000': 1,
  '2003': 1,
  '4.0': 1,
  '5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='1'>,
  'First': 's',
  'Last': '3',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'abstract': 2,
  'ajax': 1,
  'analysi': 2,
  'appli': 1,
  'applic': 1,
  'applications.\\xe2\\u20ac\\xa2\\tveri': 1,
  'asp.net': 2,
  'c': 1,
  'client-serv': 1,
  'command': 1,
  'concept': 1,
  'control': 2,
  'creat': 1,
  'custom': 1,
  'cycl': 2,
  'deposit_made': False,
  'design': 4,
  'develop': 6,
  'dhtml': 1,
  'email_verified': True,
  'experi': 2,
  'exposur': 1,
  'facebook_connected': False,
  'factori': 1,
  'form': 2,
  'framework': 1,
  'full': 1,
  'good': 2,
  'html': 2,
  'identity_verified': False,
  'implement': 1,
  'input': 1,
  'java': 1,
  'knowledg': 1,
  'life': 2,
  'like': 4,
  'mvc': 1,
  'object': 1,
  'ooad': 1,
  'oracl': 1,
  'orient': 1,
  'pattern': 2,
  'payment_verified': False,
  'phase': 1,
  'phone_verified': False,
  'profile_complete': True,
  'requir': 1,
  'script': 1,
  'server': 1,
  'servic': 1,
  'singleton': 1,
  'skin': 1,
  'softwar': 1,
  'sql': 1,
  'studio': 1,
  'technolog': 1,
  'test': 1,
  'theme': 1,
  'unit': 1,
  'use': 2,
  'user': 2,
  'valid': 2,
  'vb.net': 1,
  'visual': 1,
  'web': 2,
  'web-bas': 1,
  'win': 1,
  'work': 1,
  'wpf': 1,
  'xml': 1,
  'xpath': 1,
  'xslt': 1,
  'year': 1},
 795: {'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'd',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'work': 1},
 796: {'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'r',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'angularj': 1,
  'cake': 1,
  'codeign': 1,
  'css': 1,
  'databas': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'differ': 1,
  'email_verified': True,
  'end': 1,
  'experi': 1,
  'extj': 1,
  'facebook_connected': False,
  'framework': 1,
  'front': 1,
  'good': 1,
  'identity_verified': False,
  'java': 2,
  'jqueri': 1,
  'jsp': 1,
  'laravel': 1,
  'last': 1,
  'librari': 1,
  'like': 2,
  'oracl': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 2,
  'platform': 1,
  'profile_complete': True,
  'script': 1,
  'seven': 1,
  'softwar': 1,
  'use': 1,
  'work': 1,
  'year': 1,
  'zend': 1},
 797: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'i',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'android': 1,
  'angularj': 1,
  'backbon': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'expertis': 1,
  'facebook_connected': False,
  'framework': 1,
  'identity_verified': False,
  'java': 1,
  'javascript': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'ui': 1},
 798: {"'m": 1,
  "'ve": 1,
  '3': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'n',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'accord': 1,
  'also': 1,
  'and/or': 1,
  'avid': 1,
  'color': 1,
  'deposit_made': True,
  'edit': 1,
  'effici': 1,
  'email_verified': True,
  'equip': 1,
  'facebook_connected': False,
  'fast': 1,
  'give': 1,
  'grade': 1,
  'identity_verified': False,
  'industri': 1,
  'long': 1,
  'look': 1,
  'need': 2,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': True,
  'premier': 1,
  'pro': 1,
  'profile_complete': True,
  'project': 2,
  'time': 1,
  'use': 1,
  'video': 1,
  'work': 3,
  'year': 1},
 799: {'4': 1,
  '6': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'j',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'blog': 1,
  'blogger': 1,
  'build': 1,
  'cant': 1,
  'choic': 1,
  'credibl': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'help': 1,
  'identity_verified': False,
  'industri': 1,
  'last': 2,
  'mani': 1,
  'one': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'say': 1,
  'seo': 1,
  'start': 1,
  'ultim': 1,
  'well': 1,
  'work': 1,
  'write': 1,
  'year': 2},
 800: {'3d': 1,
  '8+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'r',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  'access': 1,
  'allow': 1,
  'applic': 1,
  'arcgi': 1,
  'asp.net': 1,
  'back': 1,
  'base': 1,
  'central': 1,
  'cluster': 1,
  'css': 1,
  'data': 1,
  'databas': 1,
  'degre': 1,
  'deploy': 1,
  'deposit_made': False,
  'develop': 2,
  'effici': 1,
  'email_verified': True,
  'engin': 3,
  'environ': 1,
  'excel': 2,
  'experi': 1,
  'facebook_connected': True,
  'field': 1,
  'geoserv': 2,
  'gi': 3,
  'globe': 1,
  'gp': 1,
  'horizont': 1,
  'html5': 1,
  'identity_verified': False,
  'involv': 1,
  'javascript': 1,
  'languag': 1,
  'leaflet': 1,
  'manag': 2,
  'ms': 1,
  'mysql': 1,
  'navig': 1,
  'offic': 1,
  'open': 1,
  'openlay': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'powerpoint': 1,
  'profile_complete': True,
  'project': 3,
  'sector': 2,
  'servic': 1,
  'sever': 1,
  'skill': 1,
  'softwar': 1,
  'sourc': 1,
  'spatial': 1,
  'use': 1,
  'vector': 1,
  'vertic': 1,
  'web': 1,
  'wf': 1,
  'wm': 1,
  'word': 1,
  'work': 1,
  'year': 1},
 801: {"''": 1,
  '6+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'r',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  '``': 1,
  'also': 2,
  'angularjs*': 1,
  'bootstrap': 1,
  'client': 1,
  'compani': 1,
  'creat': 2,
  'deposit_made': True,
  'develop': 4,
  'development*': 1,
  'editor': 1,
  'email': 1,
  'email_verified': True,
  'enhancement*': 1,
  'ensur': 1,
  'enterpris': 1,
  'etc.skil': 1,
  'experi': 1,
  'expert': 2,
  'extens': 2,
  'facebook_connected': True,
  'feel': 1,
  'free': 1,
  'full': 1,
  'gold': 1,
  'great': 1,
  'hire': 1,
  'html5': 1,
  'hubspot': 2,
  'identity_verified': True,
  'javascript': 1,
  'jqueri': 1,
  'laravel': 1,
  'larg': 1,
  'like': 3,
  'magento': 1,
  'mainten': 1,
  'manag': 1,
  'mani': 1,
  'modif': 1,
  'partner': 1,
  'payment_verified': True,
  'phone_verified': True,
  'plugin': 3,
  'profile_complete': True,
  'project': 2,
  'provid': 2,
  'qualiti': 1,
  'rang': 1,
  'servic': 1,
  'sm': 1,
  'small': 1,
  'startup': 1,
  'support*': 1,
  'web': 1,
  'websit': 1,
  'wordpress': 2,
  'work': 2,
  'world': 1,
  'year': 1},
 802: {'5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
  'First': 'v',
  'Last': '0',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'exp': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'manag': 1,
  'market': 2,
  'onlin': 2,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'qualiti': 1,
  'sem': 2,
  'seo': 2,
  'smm': 1,
  'smo': 1,
  'team': 1,
  'work': 1,
  'year': 1},
 803: {'1997': 1,
  '1st': 1,
  '24': 1,
  '25': 2,
  '4': 1,
  '5.3': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 's',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'a2bil': 2,
  'access': 1,
  'ad': 1,
  'admin': 1,
  'age': 1,
  'allow': 2,
  'apach': 1,
  'applic': 1,
  'area': 1,
  'around': 2,
  'asterisk': 1,
  'bbb': 1,
  'begin': 1,
  'better': 1,
  'bulk': 1,
  'bureau': 1,
  'busi': 3,
  'call': 4,
  'card': 2,
  'cent': 2,
  'cento': 1,
  'charg': 1,
  'client': 2,
  'code': 1,
  'comcard': 4,
  'compani': 5,
  'compet': 1,
  'complain': 1,
  'complaint': 1,
  'complet': 1,
  'contact': 1,
  'convers': 1,
  'custom': 1,
  'data': 2,
  'delet': 1,
  'deposit_made': True,
  'detail': 1,
  'develop': 1,
  'email_verified': True,
  'entri': 1,
  'expand': 1,
  'facebook_connected': False,
  'find': 1,
  'flat': 1,
  'forc': 1,
  'form': 1,
  'freepbx': 1,
  'give': 1,
  'good': 2,
  'happi': 1,
  'howev': 1,
  'hundr': 1,
  'identity_verified': False,
  'indiana': 2,
  'integr': 1,
  'intern': 1,
  'issu': 1,
  'januari': 1,
  'kentucki': 1,
  'line': 1,
  'littl': 1,
  'llc': 1,
  'local': 6,
  'look': 1,
  'loos': 1,
  'louisvil': 1,
  'mail': 1,
  'meet': 1,
  'member': 1,
  'microsoft': 1,
  'month': 1,
  'mysql': 1,
  'need': 1,
  'numer': 1,
  'offer': 2,
  'one': 1,
  'openvz': 1,
  'opportun': 1,
  'payment_verified': False,
  'pend': 1,
  'per': 1,
  'permiss': 1,
  'phone': 3,
  'phone_verified': False,
  'php-': 1,
  'platform': 1,
  'primari': 2,
  'profile_complete': True,
  'proud': 1,
  'provid': 1,
  'qmail': 1,
  'rate': 1,
  'regist': 1,
  'regular': 1,
  'reliabl': 1,
  'renam': 1,
  'report': 1,
  'request': 1,
  'retail': 1,
  'rout': 1,
  'seamlessli': 1,
  'seen': 1,
  'sent': 1,
  'shop': 1,
  'short': 1,
  'shut': 2,
  'softwar': 1,
  'solut': 1,
  'start': 1,
  'state': 3,
  'su': 1,
  'switch': 1,
  'telephoni': 1,
  'termin': 2,
  'time': 3,
  'updat': 1,
  'use': 2,
  'voip': 2,
  'webmin': 1,
  'wholesal': 1,
  'within': 1,
  'word': 1,
  'work': 2,
  'zero': 1,
  'zip': 1},
 804: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'o',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'cloud': 1,
  'compani': 1,
  'deposit_made': False,
  'develop': 2,
  'django': 1,
  'email_verified': True,
  'facebook_connected': False,
  'familiar': 1,
  'identity_verified': False,
  'openstack': 1,
  'payment_verified': False,
  'phone_verified': False,
  'platform': 1,
  'profile_complete': True,
  'python': 1,
  'tornado': 1,
  'work': 1},
 805: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='1'>,
  'First': 'd',
  'Last': '3',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'abil': 1,
  'automot': 1,
  'bachelor': 1,
  'compani': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'home': 1,
  'identity_verified': False,
  'job': 1,
  'look': 1,
  'managementwork': 1,
  'market': 1,
  'minimum': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'right': 1,
  'skill': 1,
  'suit': 1,
  'supervis': 1,
  'work': 1},
 806: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
  'Digit': None,
  'First': 'R',
  'Last': 'n',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='i'>,
  'bangalor': 1,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'softwar': 1,
  'technolog': 1,
  'woke': 1},
 807: {'7': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 's',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'academ': 1,
  'advanc': 1,
  'background': 1,
  'brazil': 1,
  'corpor': 1,
  'depart': 1,
  'deposit_made': False,
  'develop': 2,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'gi': 1,
  'govern': 1,
  'identity_verified': False,
  'inform': 1,
  'internet': 2,
  'payment_verified': False,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'system': 2,
  'technolog': 1,
  'work': 1,
  'year': 1},
 808: {'...': 3,
  '2006': 1,
  'Caps': None,
  'Digit': None,
  'First': 'z',
  'Last': 'h',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'also': 1,
  'back': 1,
  'bought': 1,
  'came': 1,
  'cheap': 1,
  'chief': 1,
  'compani': 1,
  'day': 1,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'etc': 1,
  'everybodi': 1,
  'execut': 1,
  'facebook_connected': False,
  'go': 1,
  'googl': 1,
  'group': 1,
  'identity_verified': False,
  'import': 2,
  'later': 1,
  'like': 1,
  'major': 1,
  'moscow': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'russian': 1,
  'senior': 2,
  'site': 1,
  'skill': 1,
  'split': 1,
  'studio': 1,
  'team': 1,
  'url': 1,
  'work': 2},
 809: {"'s": 2,
  '.our': 1,
  '10': 1,
  '11': 1,
  '12': 1,
  '2': 1,
  '3': 1,
  '4': 1,
  '5': 2,
  '6': 1,
  '7': 1,
  '8': 1,
  '9': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='3'>,
  'First': 'i',
  'Last': 'd',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'abstract': 1,
  'access': 1,
  'accomplish': 1,
  'account': 1,
  'achiev': 3,
  'activ': 1,
  'afford': 1,
  'aim': 2,
  'also': 1,
  'approach': 2,
  'attitud': 1,
  'balancing-': 1,
  'banner-': 1,
  'batter': 3,
  'believ': 1,
  'best': 2,
  'blog': 1,
  'bottom': 1,
  'brain': 1,
  'built': 1,
  'busi': 4,
  'card': 2,
  'cards-': 1,
  'challeng': 1,
  'chang': 1,
  'choic': 1,
  'client': 3,
  'collabor': 2,
  'collect': 2,
  'color': 1,
  'combin': 1,
  'commit': 2,
  'commun': 2,
  'compani': 3,
  'concept': 1,
  'consist': 1,
  'constantli': 1,
  'consult': 4,
  'consum': 1,
  'contact': 1,
  'control': 2,
  'convert': 1,
  'cost': 2,
  'creat': 1,
  'creation': 1,
  'current': 1,
  'custom': 4,
  'cut': 1,
  'daili': 1,
  'data': 2,
  'deal': 1,
  'defin': 1,
  'deliveri': 1,
  'depend': 1,
  'deposit_made': True,
  'design': 3,
  'design-': 2,
  'develop': 2,
  'differ': 1,
  'directori': 1,
  'dn': 1,
  'domain': 6,
  'done': 1,
  'dvr': 2,
  'dynam': 2,
  'economi': 1,
  'edit': 1,
  'editing/proofread': 1,
  'effect': 1,
  'effici': 1,
  'email': 3,
  'email_verified': True,
  'enabl': 1,
  'ensur': 2,
  'entri': 1,
  'environ': 1,
  'even': 1,
  'everi': 1,
  'excel-': 1,
  'expertis': 1,
  'express': 1,
  'facebook_connected': False,
  'file': 1,
  'find': 1,
  'fit': 1,
  'ftp': 1,
  'fundament': 1,
  'futur': 1,
  'gener': 1,
  'get': 2,
  'give': 1,
  'global': 2,
  'gmail': 1,
  'goal': 3,
  'growth': 1,
  'help': 2,
  'high': 2,
  'highest': 1,
  'highli': 1,
  'icon': 1,
  'idea': 1,
  'identity_verified': False,
  'imag': 1,
  'individu': 1,
  'inform': 1,
  'initi': 1,
  'innov': 2,
  'instal': 3,
  'intern': 1,
  'job': 1,
  'kind': 1,
  'king': 1,
  'knowledg': 1,
  'last': 1,
  'leader': 1,
  'leadership': 3,
  'level': 3,
  'limit': 1,
  'line': 1,
  'link': 1,
  'list': 1,
  'listen': 1,
  'local': 1,
  'logo': 1,
  'low': 1,
  'mail': 1,
  'make': 3,
  'making-': 1,
  'manag': 2,
  'mani': 1,
  'market': 4,
  'matter': 1,
  'me.i': 1,
  'media': 1,
  'meet': 1,
  'menu': 1,
  'min': 1,
  'mind': 1,
  'modern': 1,
  'money': 1,
  'monitor': 4,
  'must': 1,
  'network': 1,
  'never': 1,
  'offlin': 1,
  'option': 1,
  'organ': 3,
  'outstand': 1,
  'payment_verified': False,
  'paypal': 2,
  'peopl': 1,
  'phone_verified': False,
  'platon': 1,
  'polici': 2,
  'pr': 1,
  'practic': 2,
  'premis': 1,
  'price': 1,
  'prime': 1,
  'principl': 1,
  'process': 2,
  'processing-': 1,
  'produc': 2,
  'product': 2,
  'profil': 1,
  'profile_complete': True,
  'project': 2,
  'promot': 1,
  'provid': 7,
  'purchas': 3,
  'qm': 1,
  'qualiti': 3,
  'remot': 1,
  'requir': 2,
  'research-': 1,
  'result': 1,
  'results-driven': 1,
  'retouch': 1,
  'right': 2,
  'run': 1,
  'sale': 1,
  'sampl': 1,
  'satisfact': 2,
  'schedul': 1,
  'search-': 1,
  'secur': 2,
  'see': 1,
  'self': 1,
  'servic': 8,
  'shortag': 1,
  'show': 1,
  'signific': 1,
  'sinc': 1,
  'skill': 1,
  'sky': 1,
  'sm': 1,
  'smaller': 2,
  'social': 1,
  'softwar': 1,
  'solut': 3,
  'special': 1,
  'specif': 2,
  'startup': 1,
  'strateg': 2,
  'strategi': 2,
  'strive': 1,
  'sub': 1,
  'surveil': 1,
  'system': 2,
  'talent': 1,
  'task': 2,
  'te': 1,
  'team': 2,
  'teamwork': 2,
  'technic': 1,
  'technolog': 1,
  'templat': 1,
  'think': 3,
  'though': 1,
  'thought': 1,
  'time': 1,
  'tip': 1,
  'today': 1,
  'togeth': 1,
  'tool': 1,
  'transfer': 1,
  'tutori': 1,
  'uniqu': 1,
  'updat': 1,
  'upload': 1,
  'us': 2,
  'use': 1,
  'verif': 1,
  'versatil': 1,
  'video': 3,
  'vision': 3,
  'way': 1,
  'web': 4,
  'websit': 1,
  'work': 6,
  'world-class': 1,
  'would': 1},
 810: {'.i': 1,
  '5': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='5'>,
  'First': 'M',
  'Last': 'D',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'check': 1,
  'compani': 1,
  'css': 1,
  'deposit_made': False,
  'email_verified': True,
  'employ': 1,
  'experi': 1,
  'facebook_connected': False,
  'finish': 1,
  'freelanc': 1,
  'html': 1,
  'identity_verified': False,
  'interest': 1,
  'javascript': 1,
  'like': 1,
  'master': 1,
  'me.you': 1,
  'mysql': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'php': 1,
  'portfolio': 1,
  'profile_complete': True,
  'satisfi': 1,
  'sure': 1,
  'technic': 1,
  'univers': 1,
  'work': 2,
  'year': 1},
 811: {'2': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(15, 16), match='1'>,
  'First': 'b',
  'Last': '1',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'also': 4,
  'applic': 1,
  'articl': 1,
  'blog': 1,
  'comput': 1,
  'data': 1,
  'databas': 2,
  'degre': 1,
  'deposit_made': False,
  'develop': 1,
  'diploma': 1,
  'econom': 2,
  'effici': 1,
  'email_verified': True,
  'enter': 1,
  'facebook_connected': False,
  'financ': 1,
  'given': 1,
  'graduat': 1,
  'identity_verified': False,
  'internet': 1,
  'larg': 1,
  'maintain': 3,
  'manag': 1,
  'payment_verified': False,
  'perform': 1,
  'phone_verified': False,
  'post': 1,
  'product': 1,
  'profile_complete': True,
  'program': 1,
  'research': 1,
  'review': 1,
  'static': 1,
  'topic': 1,
  'websit': 1,
  'write': 1,
  'year': 1},
 812: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='7'>,
  'First': 'm',
  'Last': '3',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'abl': 1,
  'academi': 1,
  'advertis': 1,
  'also': 2,
  'analyt': 1,
  'art': 3,
  'assign': 1,
  'book': 1,
  'broaden': 1,
  'build': 1,
  'busi': 1,
  'cartoon': 1,
  'charact': 1,
  'comic': 1,
  'commun': 1,
  'concept': 1,
  'creativ': 1,
  'degre': 1,
  'deposit_made': False,
  'design': 1,
  'editori': 1,
  'effect': 1,
  'email_verified': True,
  'endeavor': 1,
  'exhibit': 1,
  'facebook_connected': True,
  'final': 1,
  'futur': 1,
  'good': 1,
  'graduat': 2,
  'graphic': 1,
  'houston': 1,
  'identity_verified': False,
  'illustr': 2,
  'initi': 1,
  'institut': 1,
  'level': 1,
  'logo': 1,
  'mauric': 1,
  'network': 1,
  'object': 1,
  'payment_verified': False,
  'phone_verified': True,
  'press': 1,
  'problem': 1,
  'profile_complete': True,
  'provid': 1,
  'relat': 1,
  'show': 1,
  'skill': 1,
  'solid': 1,
  'solv': 1,
  'special': 1,
  'stellar': 1,
  'studi': 1,
  'system': 1,
  't-shirt': 1,
  'texa': 1,
  'trade': 1,
  'univers': 2,
  'use': 1,
  'view': 1},
 813: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'z',
  'Last': 'h',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abl': 1,
  'across': 1,
  'analysi': 1,
  'analyst': 1,
  'bank': 1,
  'big': 1,
  'busi': 4,
  'challeng': 1,
  'current': 1,
  'deliv': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'domain': 2,
  'email_verified': True,
  'environ': 1,
  'facebook_connected': False,
  'function': 1,
  'identity_verified': False,
  'intern': 1,
  'job': 1,
  'last': 1,
  'major': 1,
  'manag': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'role': 3,
  'sem': 1,
  'skill': 1,
  'strategi': 2,
  'variou': 1,
  'web': 1,
  'work': 6,
  'year': 1},
 814: {'.net': 1,
  '3+': 1,
  '7': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'k',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'apex': 1,
  'c': 1,
  'combin': 1,
  'deposit_made': True,
  'email_verified': True,
  'experi': 1,
  'experienc': 1,
  'facebook_connected': False,
  'head': 1,
  'highli': 1,
  'identity_verified': False,
  'includ': 1,
  'javascript': 1,
  'jqueri': 1,
  'mysql': 1,
  'oracl': 2,
  'payment_verified': False,
  'per': 1,
  'perl': 1,
  'phone_verified': False,
  'php': 1,
  'pl/sql': 1,
  'profile_complete': True,
  'programm': 1,
  'set': 1,
  'skill': 2,
  'team': 1,
  'unix': 1,
  'year': 2},
 815: {'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'i',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'advisor': 1,
  'app': 1,
  'deposit_made': False,
  'design': 1,
  'edit': 1,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'insur': 1,
  'keep': 1,
  'like': 1,
  'make': 1,
  'market': 1,
  'movi': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'softwar': 1,
  'web': 1},
 816: {"''": 1,
  "'m": 2,
  "'ve": 4,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'i',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  '``': 1,
  'account': 3,
  'acquir': 1,
  'alway': 3,
  'anoth': 1,
  'answer': 1,
  'ask': 1,
  'assign': 1,
  'buyer': 2,
  'capabl': 1,
  'cours': 1,
  'creation': 1,
  'data': 2,
  'deposit_made': False,
  'differ': 1,
  'effort': 1,
  'email': 1,
  'email_verified': True,
  'entri': 1,
  'etc': 1,
  'execut': 1,
  'experi': 2,
  'facebook_connected': False,
  'familiar': 1,
  'far': 1,
  'field': 1,
  'flexibl': 1,
  'freelanc': 1,
  'give': 1,
  'go': 1,
  'hand': 1,
  'identity_verified': False,
  'includ': 1,
  'indic': 1,
  'learn': 2,
  'like': 1,
  'long': 1,
  'love': 1,
  'make': 1,
  'mani': 1,
  'much': 1,
  "n't": 1,
  'narrat': 1,
  'network': 1,
  'object': 1,
  'often': 1,
  'one': 1,
  'onlin': 1,
  'payment_verified': True,
  'phone_verified': True,
  'previou': 1,
  'primari': 1,
  'probabl': 1,
  'profession': 1,
  'profile_complete': True,
  'proof': 1,
  'relat': 1,
  'relationship': 1,
  'respons': 1,
  'role': 1,
  'similar': 1,
  'skill': 2,
  'social': 1,
  'task': 1,
  'thing': 2,
  'thu': 1,
  'titl': 1,
  'wit': 1,
  'wo': 1,
  'work': 3,
  'would': 1},
 817: {'7': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
  'First': 't',
  'Last': '0',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'achiev': 1,
  'adob': 1,
  'ajax': 1,
  'android': 3,
  'angular': 1,
  'apach': 1,
  'applic': 3,
  'back-end': 1,
  'best': 1,
  'bootstrap': 1,
  'build': 1,
  'businesses.mi': 1,
  'client': 1,
  'core': 1,
  'creativ': 1,
  'css3': 1,
  'deposit_made': True,
  'design': 2,
  'develop': 2,
  'eclips': 1,
  'email_verified': True,
  'experi': 1,
  'expertis': 1,
  'extens': 1,
  'facebook_connected': True,
  'forward': 1,
  'front-end': 1,
  'glassfish': 1,
  'ground': 1,
  'hi': 1,
  'html5': 1,
  'identity_verified': False,
  'io': 2,
  'java': 2,
  'javascript': 1,
  'jqueri': 1,
  'js': 1,
  'jsp': 1,
  'knowledg': 1,
  'look': 1,
  'mobil': 3,
  'mysql': 1,
  'netbean': 1,
  'onpag': 1,
  'opportun': 1,
  'oracl': 1,
  'output': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 2,
  'possibl': 1,
  'profile_complete': True,
  'seek': 1,
  'seo': 1,
  'skill': 2,
  'spring': 2,
  'sql': 1,
  'sqlite': 1,
  'strut': 1,
  'studio': 1,
  'suit': 1,
  'suite.i': 1,
  'swift': 2,
  'technic': 1,
  'tomcat': 1,
  'tool': 1,
  'uml': 1,
  'use': 1,
  'web': 3,
  'wordpress': 2,
  'xcode': 1,
  'xml': 1,
  'year': 1},
 818: {'13': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'v',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'administr': 1,
  'data': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'entri': 1,
  'etc': 1,
  'experi': 1,
  'facebook_connected': False,
  'firm': 1,
  'identity_verified': False,
  'larg': 1,
  'offic': 1,
  'payment_verified': False,
  'philippin': 1,
  'phone_verified': False,
  'profile_complete': True,
  'skill': 1,
  'work': 1,
  'year': 1},
 819: {'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'artist': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'musician': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'web': 1,
  'writer': 1},
 820: {'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'g',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'deposit_made': False,
  'edit': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'ihav': 1,
  'network': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photo': 1,
  'profile_complete': True},
 821: {'6': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'n',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'angularj': 1,
  'asp': 1,
  'c': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'languag': 1,
  'like': 1,
  'mssql': 1,
  'mvc': 1,
  'mysql': 1,
  'nodej': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'postgresql': 1,
  'profile_complete': True,
  'program': 1,
  'variou': 1,
  'year': 1},
 822: {'...': 3,
  'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'r',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'complet': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'hi': 1,
  'identity_verified': False,
  'im': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'u': 1,
  'ur': 1},
 823: {'15': 1,
  '6': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': None,
  'First': 'M',
  'Last': 'G',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'advertis': 1,
  'appli': 1,
  'aspect': 1,
  'colleg': 1,
  'content': 1,
  'copywrit': 1,
  'cover': 1,
  'day': 2,
  'deposit_made': False,
  'develop': 1,
  'digit': 1,
  'email_verified': True,
  'embrac': 1,
  'experi': 1,
  'extens': 1,
  'facebook_connected': False,
  'graduat': 1,
  'identity_verified': False,
  'includ': 2,
  'industri': 1,
  'internet': 1,
  'knowledg': 1,
  'last': 1,
  'lifestyl': 1,
  'london': 1,
  'market': 2,
  'payment_verified': False,
  'phone_verified': False,
  'print': 1,
  'profile_complete': True,
  'publish': 2,
  'run': 1,
  'scratch': 1,
  'seo': 2,
  'solut': 2,
  'specialis': 1,
  'spent': 1,
  'trade': 1,
  'travel': 2,
  'web': 1,
  'websit': 2,
  'well': 1,
  'world': 1,
  'year': 2},
 824: {"'m": 1,
  "'ve": 2,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(11, 12), match='8'>,
  'First': 'r',
  'Last': '5',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abl': 1,
  'addit': 1,
  'advertis': 2,
  'also': 2,
  'career': 1,
  'challeng': 1,
  'client': 2,
  'creativ': 1,
  'deposit_made': False,
  'email_verified': True,
  'english': 1,
  'english-spanish': 1,
  'facebook_connected': False,
  'fast': 1,
  'fun': 1,
  'identity_verified': False,
  'mainli': 1,
  'mani': 1,
  'market': 1,
  'mexico': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pressur': 1,
  'profile_complete': True,
  'realli': 1,
  'relax': 1,
  'spanish': 1,
  'thank': 1,
  'translat': 1,
  'u.s.': 1,
  'work': 3,
  'world': 1,
  'write': 2},
 825: {'11': 1,
  '2': 1,
  '35.': 1,
  '6': 2,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 't',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'ad': 1,
  'also': 1,
  'analysi': 1,
  'app': 1,
  'aspect': 1,
  'believ': 1,
  'bid': 2,
  'ci': 1,
  'cm': 1,
  'complet': 1,
  'complex': 1,
  'confid': 1,
  'cover': 1,
  'deposit_made': True,
  'develop': 2,
  'differ': 1,
  'drupal': 1,
  'email_verified': True,
  'estat': 1,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'high': 1,
  'i.e': 1,
  'identity_verified': False,
  'increas': 1,
  'joomla': 1,
  'kind': 1,
  'laravel': 3,
  'last': 2,
  'like': 1,
  'magento': 2,
  'main': 1,
  'mani': 1,
  'mobil': 2,
  'motto': 1,
  'mysql': 1,
  "n't": 1,
  'nativ': 1,
  'network': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 1,
  'platform': 1,
  'profile_complete': True,
  'project': 5,
  'rate': 1,
  'real': 1,
  'requir': 1,
  'seo': 1,
  'size': 1,
  'social': 1,
  'team': 2,
  'technolog': 1,
  'websit': 3,
  'well': 1,
  'wordpress': 1,
  'work': 2,
  'year': 4},
 826: {'8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'r',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'applic': 1,
  'area': 1,
  'deposit_made': False,
  'desktop': 1,
  'development.w': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'inc': 1,
  'mobil': 1,
  'payment_verified': True,
  'phone_verified': True,
  'pioneer': 1,
  'profile_complete': True,
  'web': 1,
  'work': 1,
  'year': 1},
 827: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='3'>,
  'First': 'a',
  'Last': 'a',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'consult': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'list': 1,
  'offici': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'wordpress': 1},
 828: {'100': 1,
  '20': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'u',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'analys': 1,
  'analysis.i': 1,
  'articl': 3,
  'believ': 1,
  'comment': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'five': 1,
  'gener': 1,
  'good': 1,
  'govern': 1,
  'identity_verified': False,
  'imag': 2,
  'includ': 1,
  'interest': 1,
  'like': 2,
  'make': 1,
  "n't": 1,
  'natur': 1,
  'need': 1,
  'organ': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': False,
  'possess': 1,
  'profession': 2,
  'profile_complete': True,
  'provid': 1,
  'qualifi': 1,
  'qualiti': 1,
  'quantiti': 1,
  'rather': 1,
  'report': 1,
  'review': 1,
  'satellit': 1,
  'sens': 1,
  'skill': 1,
  'softwar': 1,
  'topic': 1,
  'work': 2,
  'would': 1,
  'write': 5,
  'written': 1,
  'year': 1},
 829: {'6': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'p',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
  'access': 1,
  'administr': 2,
  'ajax': 1,
  'also': 3,
  'area': 1,
  'asterisk': 1,
  'auto': 1,
  'basic': 1,
  'boonex': 1,
  'build': 1,
  'busi': 1,
  'call': 6,
  'cart': 5,
  'center': 3,
  'cento': 1,
  'clipshar': 1,
  'cm': 2,
  'compani': 1,
  'compet': 1,
  'complet': 1,
  'configur': 1,
  'core': 1,
  'cpanel': 1,
  'crm': 2,
  'css': 2,
  'deposit_made': False,
  'design': 2,
  'develop': 3,
  'dial': 1,
  'dialer': 3,
  'dolphin': 1,
  'domain': 1,
  'e-commerc': 1,
  'ecommerc': 2,
  'elastix': 2,
  'email_verified': True,
  'end-end': 1,
  'engin': 2,
  'etc': 3,
  'experi': 2,
  'facebook_connected': False,
  'ffmpeg': 1,
  'flash': 1,
  'follow': 1,
  'gateway': 1,
  'ground': 1,
  'host': 1,
  'hour': 1,
  'html': 1,
  'identity_verified': False,
  'implement': 1,
  'inbound': 1,
  'includ': 2,
  'instal': 1,
  'integr': 1,
  'interspir': 1,
  'issu': 1,
  'java': 2,
  'javascript': 1,
  'joomla': 2,
  'jsp': 1,
  'kind': 2,
  'last': 1,
  'lie': 1,
  'linux': 2,
  'list': 1,
  'lot': 1,
  'magento': 2,
  'maintain': 3,
  'make': 2,
  'mambo': 1,
  'manag': 3,
  'market': 1,
  'media': 2,
  'migrat': 2,
  'minut': 1,
  'multimedia': 1,
  'mysql': 2,
  'name': 1,
  'network': 3,
  'new': 1,
  'offic': 1,
  'oop': 1,
  'open': 1,
  'opencart': 1,
  'opportun': 1,
  'optim': 1,
  'oscommerc': 2,
  'outbound': 1,
  'payment': 1,
  'payment_verified': False,
  'per': 1,
  'phone_verified': False,
  'php': 2,
  'phpbb': 1,
  'phpfox': 1,
  'plan': 1,
  'plesk': 1,
  'portal': 1,
  'predict': 2,
  'prestashop': 1,
  'problem': 1,
  'profile_complete': True,
  'program': 1,
  'project': 1,
  'rang': 2,
  'red5': 1,
  'relat': 1,
  'script': 3,
  'search': 1,
  'second': 1,
  'seek': 1,
  'server': 10,
  'setup': 3,
  'share': 1,
  'shop': 2,
  'site': 1,
  'small': 1,
  'social': 2,
  'softwar': 2,
  'special': 1,
  'speed': 1,
  'sql': 1,
  'start': 1,
  'support': 1,
  'system': 1,
  'technic': 1,
  'test': 1,
  'tomcat': 1,
  'transfer': 1,
  'troubleshoot': 3,
  'upload': 1,
  'use': 1,
  'vbulletin': 1,
  'video': 1,
  'visual': 1,
  'voip': 1,
  'web': 1,
  'websit': 6,
  'whmc': 1,
  'wide': 2,
  'wordpress': 2,
  'year': 1,
  'zen': 2},
 830: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'Digit': None,
  'First': 'E',
  'Last': 'a',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
  'complet': 1,
  'deposit_made': True,
  'design': 2,
  'done': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'govern': 1,
  'graphic': 2,
  'identity_verified': False,
  'india': 1,
  'mani': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 2,
  'recent': 1,
  'web': 2},
 831: {'25': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'n',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'affair': 1,
  'current': 1,
  'deposit_made': True,
  'email_verified': True,
  'entertain': 1,
  'experienc': 1,
  'facebook_connected': True,
  'fleet': 1,
  'identity_verified': False,
  'journal': 1,
  'much': 1,
  'news': 1,
  'payment_verified': False,
  'phone_verified': True,
  'polit': 1,
  'profile_complete': True,
  'report': 2,
  'specialis': 1,
  'sport': 1,
  'street': 1,
  'write': 1,
  'year': 1},
 832: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
  'First': 'D',
  'Last': '4',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'admin': 1,
  'background': 1,
  'broadcast': 1,
  'collect': 1,
  'commun': 1,
  'compani': 1,
  'convers': 1,
  'crop': 1,
  'data': 3,
  'deposit_made': True,
  'document': 1,
  'edit': 1,
  'email_verified': True,
  'enjoy': 1,
  'entri': 1,
  'excel': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'full-tim': 1,
  'gmail': 1,
  'identity_verified': False,
  'im': 1,
  'info': 1,
  'internet': 1,
  'job': 1,
  'known': 1,
  'limit': 1,
  'msn': 1,
  'organ': 1,
  'part-tim': 1,
  'passion': 1,
  'payment_verified': True,
  'pdf': 1,
  'peopl': 1,
  'phone_verified': True,
  'photo': 1,
  'photoshop': 1,
  'product': 1,
  'profile_complete': True,
  'provid': 3,
  'remov': 1,
  'satisfi': 1,
  'servic': 1,
  'skype': 1,
  'submit': 1,
  'upload': 1,
  'websiteso': 2,
  'well': 1,
  'word': 1,
  'work': 1,
  'work.i': 1,
  'yahoo': 1},
 833: {'*develop': 2,
  '.net': 1,
  '2008.': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'v',
  'Last': '0',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'applic': 4,
  'base': 1,
  'c': 1,
  'cart': 1,
  'deposit_made': True,
  'develop': 1,
  'differ': 1,
  'durat': 1,
  'email_verified': True,
  'experi': 2,
  'facebook': 1,
  'facebook_connected': False,
  'field': 1,
  'good': 1,
  'identity_verified': False,
  'joomla': 1,
  'languag': 1,
  'like': 1,
  'mani': 3,
  'media': 2,
  'open': 2,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php/mysql': 1,
  'platform': 1,
  'profile_complete': True,
  'profound': 1,
  'program': 2,
  'sinc': 1,
  'social': 2,
  'sourc': 1,
  'use': 2,
  'websit': 2,
  'window': 1,
  'wordpress': 1,
  'work': 2},
 834: {'10': 1,
  '25': 1,
  '7': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
  'First': 'b',
  'Last': '8',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  '\\xe2\\u20ac\\xa2\\t': 1,
  'also': 2,
  'certifi': 1,
  'commit': 1,
  'constantli': 1,
  'coordin': 1,
  'cours': 1,
  'day': 1,
  'deadlin': 2,
  'depend': 1,
  'deposit_made': True,
  'edit': 1,
  'email_verified': True,
  'en': 2,
  'enabl': 1,
  'english': 1,
  'facebook_connected': True,
  'fast': 1,
  'field': 1,
  'freelanc': 1,
  'fulli': 1,
  'given': 1,
  'hard': 1,
  'identity_verified': False,
  'ie': 1,
  'languag': 2,
  'latest': 1,
  'like': 1,
  'load': 1,
  'nativ': 1,
  'nuanc': 1,
  'opportun': 1,
  'payment_verified': True,
  'person': 1,
  'phone_verified': False,
  'pressur': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'proofread': 1,
  'skill': 1,
  'spanish': 2,
  'teacher': 1,
  'team': 1,
  'text': 1,
  'tight': 1,
  'translat': 2,
  'trend': 1,
  'updat': 1,
  'usual': 1,
  'week': 1,
  'well': 1,
  'work': 4,
  'written': 1,
  'year': 2},
 835: {'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'n',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'alway': 1,
  'creativ': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'improv': 1,
  'look': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 2,
  'skill': 1,
  'type': 1,
  'variou': 1,
  'work': 2},
 836: {"'m": 2,
  "'s": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
  'First': 'd',
  'Last': '2',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'accept': 1,
  'access': 1,
  'actual': 1,
  'analysi': 1,
  'architect': 1,
  'around': 1,
  'australia': 2,
  'base': 1,
  'beat': 1,
  'best': 2,
  'busi': 2,
  'canada': 2,
  'citi': 1,
  'compani': 1,
  'competitor': 2,
  'construct': 1,
  'contain': 1,
  'demo': 1,
  'deposit_made': True,
  'design': 1,
  'detail': 1,
  'email_verified': True,
  'europ': 2,
  'exactli': 1,
  'facebook_connected': False,
  'googl': 3,
  'group': 1,
  'gun': 1,
  'identity_verified': False,
  'industri': 1,
  'interior': 1,
  'internet': 2,
  'know': 1,
  'latest': 1,
  'leav': 1,
  'limit': 1,
  'local': 1,
  'market': 3,
  'me.i': 1,
  'money': 1,
  'one': 1,
  'part': 1,
  'payment_verified': False,
  'phone_verified': True,
  'place': 1,
  'profile_complete': True,
  'project': 1,
  'proof': 1,
  'provid': 1,
  'reach': 1,
  'remodel': 1,
  'right': 1,
  'search': 1,
  'see': 1,
  'send': 1,
  'seo': 3,
  'show': 1,
  'small': 1,
  'special': 1,
  'state': 1,
  'surgeon': 1,
  'tabl': 1,
  'target': 1,
  'technolog': 1,
  'top': 1,
  'u.': 2,
  'video': 2,
  'want': 1,
  'websit': 1,
  'work': 1,
  'world': 1},
 837: {"'s": 1,
  '...': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 't',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'algorithm': 1,
  'alway': 2,
  'ampl': 1,
  'articl': 2,
  'bs': 1,
  'client': 3,
  'comput': 1,
  'copi': 1,
  'data': 1,
  'deposit_made': True,
  'differ': 1,
  'domain': 1,
  'done': 1,
  'electr': 2,
  'email_verified': True,
  'engin': 2,
  'entri': 1,
  'facebook_connected': False,
  'field': 1,
  'first': 1,
  'follow': 1,
  'get': 1,
  'guy': 1,
  'happi': 1,
  'hard': 1,
  'help': 1,
  'identity_verified': False,
  'latex': 1,
  'limit': 1,
  'linear': 2,
  'make': 1,
  'mathemat': 1,
  'matlab': 1,
  'ms': 1,
  'much': 1,
  'network': 1,
  'non': 1,
  'optim': 1,
  'payment_verified': False,
  'phone_verified': True,
  'present': 1,
  'prioriti': 1,
  'profile_complete': True,
  'program': 1,
  'project': 1,
  'proofread': 1,
  'push': 1,
  'rewrit': 1,
  'satisfact': 1,
  'sever': 1,
  'telecommun': 2,
  'transcript': 1,
  'type': 1,
  'variou': 1,
  'want': 1,
  'work': 2,
  'write': 1},
 838: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'k',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'android': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'identity_verified': False,
  'io': 1,
  'look': 1,
  'mac': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'someth': 1,
  'start': 1,
  'year': 1},
 839: {'15': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'y',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'assign': 1,
  'broadband': 1,
  'comput': 1,
  'connect': 1,
  'deposit_made': True,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'fast': 1,
  'given': 1,
  'home': 1,
  'identity_verified': False,
  'internet': 1,
  'neat': 1,
  'new': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'time': 1,
  'work': 2,
  'year': 1},
 840: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'd',
  'Last': '4',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'alter': 1,
  'contest': 1,
  'creat': 1,
  'deposit_made': True,
  'ear': 1,
  'email_verified': True,
  'facebook_connected': True,
  'idea': 1,
  'identity_verified': False,
  'individu': 2,
  'manifest': 1,
  'mention': 1,
  'nation': 1,
  'new': 1,
  'payment_verified': True,
  'phone_verified': True,
  'power': 2,
  'profile_complete': True,
  'right': 2,
  'societi': 1,
  'someth': 1,
  'spoken': 1,
  'total': 1,
  'word': 3,
  'write': 1},
 841: {'9': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
  'First': 'a',
  'Last': '9',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'advertis': 1,
  'also': 1,
  'analyt': 4,
  'analyz': 1,
  'around': 1,
  'behavior': 1,
  'busi': 2,
  'businesses.i': 1,
  'categori': 1,
  'client': 1,
  'code': 1,
  'countri': 1,
  'deposit_made': True,
  'differ': 3,
  'email_verified': True,
  'engin': 1,
  'experi': 2,
  'expert': 1,
  'facebook_connected': False,
  'goal': 1,
  'help': 1,
  'identity_verified': False,
  'implement': 1,
  'improv': 2,
  'insight': 1,
  'market': 1,
  'paid': 1,
  'payment_verified': True,
  'perform': 2,
  'phone_verified': True,
  'profile_complete': True,
  'provid': 1,
  'reach': 1,
  'report': 1,
  'search': 2,
  'use': 1,
  'web': 3,
  'websit': 2,
  'work': 3,
  'year': 1},
 842: {"''": 1,
  "'m": 1,
  '--': 1,
  '100': 1,
  '2003': 1,
  '2004.': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 's',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  '``': 1,
  'abstract': 1,
  'academ': 1,
  'accur': 1,
  'along': 1,
  'amazon': 1,
  'approach': 1,
  'audienc': 1,
  'author': 1,
  'background': 1,
  'broke': 1,
  'busi': 1,
  'commun': 1,
  'concept': 1,
  'consist': 1,
  'critic': 1,
  'current': 1,
  'degre': 1,
  'deposit_made': False,
  'develop': 1,
  'document': 1,
  'easi': 1,
  'email_verified': True,
  'english': 1,
  'enrol': 1,
  'essenti': 2,
  'establish': 1,
  'facebook_connected': False,
  'focus': 1,
  'found': 1,
  'fun': 1,
  'goal': 1,
  'ground': 1,
  'guid': 2,
  'highli': 1,
  'identity_verified': False,
  'inform': 1,
  'intellectu': 1,
  'languag': 1,
  'lay': 1,
  'learn': 1,
  'level': 1,
  'lifelong': 1,
  'logic': 1,
  'look': 1,
  'make': 1,
  'master': 1,
  'materi': 1,
  'move': 1,
  'need': 1,
  'new': 1,
  'novemb': 1,
  'one': 1,
  'payment_verified': False,
  'perfectli': 1,
  'person': 1,
  'philosophi': 3,
  'phone_verified': False,
  'pitch': 1,
  'prais': 1,
  'present': 1,
  'product': 1,
  'profile_complete': True,
  'project': 1,
  'publish': 1,
  'pursu': 1,
  'quest': 1,
  'reach': 1,
  'review': 3,
  'said': 1,
  'scienc': 1,
  'serious': 1,
  'sinc': 1,
  'subject': 1,
  'subsequ': 1,
  'success': 1,
  'take': 1,
  'teach': 1,
  'teacher': 1,
  'technic': 2,
  'think': 1,
  'thinker': 2,
  'understand': 1,
  'univers': 2,
  'user': 1,
  'well': 1,
  'work': 1,
  'write': 3,
  'yet': 1},
 843: {'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'dedic': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'hardwork': 1,
  'identity_verified': False,
  'payment_verified': False,
  'person': 1,
  'phone_verified': True,
  'profile_complete': True},
 844: {"'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'z',
  'Last': 'k',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'busi': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'let': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True},
 845: {"'m": 1,
  '.net': 1,
  '10': 1,
  '2012': 1,
  '700': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='7'>,
  'First': 'd',
  'Last': '9',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'administr': 1,
  'also': 1,
  'applic': 1,
  'asp.net': 1,
  'build': 1,
  'c': 1,
  'center': 1,
  'cm': 1,
  'compani': 2,
  'configur': 1,
  'creat': 1,
  'daili': 1,
  'deposit_made': True,
  'dhcp': 1,
  'directori': 1,
  'dn': 1,
  'drupal': 1,
  'email_verified': True,
  'engin': 1,
  'etc': 1,
  'etc.': 1,
  'expert': 1,
  'facebook_connected': True,
  'gpo': 1,
  'hr': 1,
  'identity_verified': True,
  'ii': 1,
  'inventori': 1,
  'job': 2,
  'joomla': 1,
  'manag': 1,
  'mani': 1,
  'payment_verified': True,
  'phone_verified': True,
  'platform': 1,
  'profile_complete': True,
  'seo': 1,
  'server': 1,
  'site': 1,
  'system': 2,
  'use': 1,
  'web': 1,
  'wide': 1,
  'window': 4,
  'wordpress': 1,
  'work': 2,
  'workstat': 1,
  'world': 1,
  'year': 1,
  'years.i': 1},
 846: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
  'First': 'a',
  'Last': '5',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'chanc': 1,
  'dazzl': 1,
  'deposit_made': False,
  'email_verified': True,
  'end': 1,
  'excel.i': 1,
  'facebook_connected': True,
  'give': 1,
  'identity_verified': False,
  'lowest': 1,
  'payment_verified': False,
  'phone_verified': True,
  'price': 1,
  'profile_complete': True,
  'short': 1,
  'start': 1,
  'thing': 1,
  'time': 1,
  'work': 1},
 847: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'n',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'clean': 1,
  'creat': 1,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'facebook_connected': False,
  'georg': 1,
  'i`m': 1,
  'identity_verified': False,
  'last': 1,
  'love': 1,
  'modern': 1,
  'name': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'technolog': 1,
  'theme': 1,
  'use': 1,
  'web': 1},
 848: {'/html5': 1,
  '20': 1,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'e',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'art': 1,
  'certifi': 1,
  'cluj-napoca': 1,
  'concept': 1,
  'css3': 1,
  'deposit_made': True,
  'design': 3,
  'develop': 1,
  'email_verified': True,
  'eu': 1,
  'experi': 1,
  'facebook_connected': True,
  'graphic': 2,
  'guarante': 1,
  'high': 1,
  'host': 1,
  'identity_verified': False,
  'locat': 1,
  'multimedia': 1,
  'offer': 1,
  'payment_verified': False,
  'phone_verified': True,
  'print': 1,
  'profession': 2,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'region': 1,
  'respons': 1,
  'romania': 1,
  'servic': 1,
  'technolog': 1,
  'transylvania': 1,
  'web': 2,
  'webdesign': 1,
  'websit': 1,
  'year': 1},
 849: {'14': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(15, 16), match='1'>,
  'First': 'w',
  'Last': '1',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'abil': 1,
  'adult': 1,
  'blog': 1,
  'bottom': 1,
  'ca': 1,
  'content': 1,
  'creat': 3,
  'deposit_made': True,
  'design': 1,
  'develop': 1,
  'ecommerc': 1,
  'edit': 1,
  'email_verified': True,
  'everi': 1,
  'exist': 2,
  'facebook_connected': False,
  'graphic': 1,
  'identity_verified': False,
  'imagin': 2,
  'includ': 1,
  'limit': 1,
  'match': 1,
  "n't": 1,
  'noth': 1,
  'payment_verified': False,
  'phone_verified': False,
  'pleas': 1,
  'power': 1,
  'profile_complete': True,
  'program': 1,
  'site': 3,
  'special': 1,
  'top': 1,
  'turn': 1,
  'type': 1,
  'video': 1,
  'web': 1,
  'websit': 3,
  'wordpress': 2,
  'year': 1},
 850: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'a',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'articl': 1,
  'deposit_made': False,
  'editor': 1,
  'email_verified': True,
  'english': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'job': 1,
  'languag': 1,
  'mani': 1,
  'origin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'proofread': 1,
  'seo': 1,
  'site': 1,
  'specialist': 1,
  'teacher': 1,
  'translat': 1,
  'work': 1,
  'writer': 1},
 851: {'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'basi': 1,
  'deposit_made': False,
  'done': 1,
  'email_verified': True,
  'facebook_connected': False,
  'get': 1,
  'group': 1,
  'identity_verified': False,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': False,
  'profile_complete': True,
  'project': 3,
  'talent': 1,
  'work': 1},
 852: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'k',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  'bootstrap': 1,
  'css': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'joomla': 1,
  'less': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'profile_complete': True,
  'sass': 1,
  'wordpress': 1},
 853: {'5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
  'First': 'r',
  'Last': '8',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'also': 1,
  'bi': 1,
  'creat': 1,
  'data': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'engin': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'hand': 1,
  'identity_verified': False,
  'informatica': 1,
  'macro': 1,
  'ms': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'softwar': 1,
  'technolog': 1,
  'tool': 1,
  'warehous': 1,
  'work': 2,
  'year': 1},
 854: {"'s": 1,
  '10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'd',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'advertis': 1,
  'client': 2,
  'commerci': 1,
  'deposit_made': True,
  'director': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'film': 1,
  'group': 1,
  'identity_verified': False,
  'intern': 1,
  'local': 1,
  'mani': 1,
  'market': 2,
  'nation': 1,
  'offer': 2,
  'one': 2,
  'payment_verified': False,
  'phone_verified': False,
  'pleasur': 1,
  'produc': 1,
  'product': 3,
  'profile_complete': True,
  'qualiti': 1,
  'radio': 2,
  'seen': 1,
  'servic': 1,
  'skill': 1,
  'success': 1,
  'televis': 1,
  'thousand': 1,
  'use': 1,
  'web': 1,
  'work': 1,
  'year': 1},
 855: {"''": 1,
  '3': 1,
  '7': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(2, 3), match='3'>,
  'First': 'a',
  'Last': 'x',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  '``': 1,
  'adeel': 2,
  'ahm': 1,
  'base': 1,
  'compani': 2,
  'complex': 1,
  'databas': 1,
  'deposit_made': True,
  'develop': 2,
  'differ': 1,
  'dubai': 1,
  'email_verified': True,
  'facebook_connected': True,
  'give': 1,
  'hi': 1,
  'huge': 1,
  'idea': 1,
  'identity_verified': False,
  'kingdom': 1,
  'last': 2,
  'life': 1,
  'link': 1,
  'mysql': 1,
  'name': 1,
  'offshor': 1,
  'pakistan': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'project': 2,
  'sinc': 2,
  'think': 1,
  'unit': 1,
  'websit': 2,
  'work': 3,
  'year': 2},
 856: {'.net': 1,
  '7': 1,
  '9': 2,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'k',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'good': 1,
  'html5': 1,
  'identity_verified': False,
  'jqueri': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'reactj': 1,
  'redux': 1,
  'usa': 1,
  'work': 1,
  'year': 3},
 857: {"''": 1,
  '4.5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'd',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '``': 1,
  'afford': 1,
  'bangladesh.i': 1,
  'believ': 1,
  'click': 1,
  'data': 1,
  'depart': 1,
  'deposit_made': False,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': False,
  'hire': 1,
  'identity_verified': False,
  'job': 2,
  'last': 1,
  'make': 1,
  'manag': 1,
  'onlin': 1,
  'payment_verified': False,
  'pharmacist': 1,
  'phone_verified': True,
  'prefer': 1,
  'price': 1,
  'product': 1,
  'profile.i': 1,
  'profile_complete': True,
  'qualiti': 1,
  'readi': 1,
  'thank': 1,
  'time': 1,
  'visit': 1,
  'work': 2,
  'year': 1},
 858: {'...': 1,
  '10': 1,
  '15': 2,
  '20': 1,
  '3d': 1,
  '5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'y',
  'Last': 'm',
  'Numchar': 3,
  'Vowel': None,
  'app': 1,
  'build': 1,
  'c/c++': 1,
  'canada': 1,
  'china': 1,
  'compani': 1,
  'complet': 1,
  'consist': 1,
  'deposit_made': False,
  'design': 1,
  'desktop': 1,
  'detail': 1,
  'develop': 1,
  'email_verified': True,
  'engin': 1,
  'experienc': 1,
  'facebook_connected': False,
  'finish': 1,
  'flash/flex': 1,
  'follow': 1,
  'french': 1,
  'give': 1,
  'identity_verified': False,
  'japan': 1,
  'java': 1,
  'korea': 1,
  'lot': 1,
  'mobil': 1,
  'new': 1,
  'ocr': 1,
  'order': 1,
  'payment_verified': False,
  'person': 2,
  'phone_verified': False,
  'profile_complete': True,
  'project': 2,
  'revers': 1,
  'team': 2,
  'translat': 1,
  'u.s.': 1,
  'web': 1,
  'websit': 1,
  'year': 1},
 859: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'i',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'addit': 1,
  'base': 1,
  'basic': 2,
  'best': 1,
  'code': 1,
  'content': 1,
  'corpor': 1,
  'deposit_made': False,
  'design': 7,
  'develop': 2,
  'drupal': 1,
  'e-commerc': 1,
  'email_verified': True,
  'expert': 1,
  'facebook_connected': False,
  'famili': 1,
  'flash': 1,
  'freelanc': 2,
  'friend': 1,
  'graphic': 2,
  'handl': 1,
  'home': 1,
  'html/css': 1,
  'ident': 1,
  'identity_verified': False,
  'joomla': 1,
  'manag': 1,
  'offer': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'php': 1,
  'portfolio': 1,
  'profile_complete': True,
  'relat': 1,
  'servic': 2,
  'small': 1,
  'stationari': 1,
  'team': 3,
  'technolog': 1,
  'view': 1,
  'web': 1,
  'websit': 4,
  'wordpress': 1,
  'work': 1},
 860: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'also': 1,
  'applic': 1,
  'base': 1,
  'code': 1,
  'css': 1,
  'data': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'framework': 1,
  'freelanc': 1,
  'fulltim': 1,
  'gimp': 1,
  'identity_verified': False,
  'ignit': 1,
  'includ': 1,
  'indonesia': 1,
  'jakarta': 1,
  'java': 1,
  'know': 1,
  'learn': 1,
  'machin': 1,
  'mine': 1,
  'name': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'progress': 1,
  'projects.i': 1,
  'script': 1,
  'skill': 1,
  'web': 3,
  'xhtml': 1},
 861: {'15+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'y',
  'Last': 'l',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ad': 1,
  'ajax': 1,
  'appropri': 1,
  'asp': 1,
  'asp.net': 1,
  'averag': 1,
  'backend': 1,
  'base': 1,
  'busi': 1,
  'c': 1,
  'client': 1,
  'css': 1,
  'custom': 1,
  'deliveri': 1,
  'deposit_made': False,
  'dhtml': 1,
  'email_verified': True,
  'expand': 1,
  'experi': 1,
  'expert': 1,
  'expertis': 1,
  'facebook_connected': False,
  'full': 1,
  'give': 1,
  'group': 1,
  'help': 1,
  'high': 3,
  'html': 1,
  'identity_verified': False,
  'includ': 1,
  'industri': 3,
  'innov': 1,
  'javascript': 1,
  'like': 2,
  'local': 1,
  'mainli': 1,
  'make': 1,
  'mani': 1,
  'microsoft': 1,
  'money': 1,
  'motto': 1,
  'mysql': 1,
  'need': 1,
  'offer': 2,
  'payment_verified': False,
  'phone_verified': True,
  'primari': 1,
  'profile_complete': True,
  'program': 1,
  'proof': 1,
  'qualiti': 3,
  'reput': 1,
  'requir': 1,
  'satisfi': 1,
  'scope': 1,
  'server': 1,
  'servic': 1,
  'skill': 1,
  'solut': 2,
  'sql': 1,
  'support': 1,
  'technic': 1,
  'technolog': 2,
  'time': 1,
  'use': 1,
  'valu': 1,
  'vb': 1,
  'vb.net': 1,
  'vba': 1,
  'vbscript': 1,
  'within': 2,
  'worth': 1,
  'xml': 1,
  'year': 1},
 862: {'.net': 1,
  '4': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
  'Digit': None,
  'First': 'S',
  'Last': 'i',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'deposit_made': False,
  'differ': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'freelanc': 1,
  'home': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'prefer': 1,
  'profile_complete': True,
  'synchron': 1,
  'web': 1,
  'work': 2,
  'year': 1},
 863: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 's',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'android': 1,
  'applic': 3,
  'bank': 1,
  'base': 3,
  'biggest': 1,
  'central': 1,
  'databas': 1,
  'deposit_made': False,
  'develop': 2,
  'dm': 1,
  'documentum': 1,
  'email_verified': True,
  'europ': 1,
  'facebook_connected': False,
  'flex': 1,
  'framework': 1,
  'howev': 1,
  'identity_verified': False,
  'job': 1,
  'look': 1,
  'one': 1,
  'oracl': 1,
  'past': 1,
  'payment_verified': False,
  'phone_verified': False,
  'posit': 2,
  'profile_complete': True,
  'senior': 1,
  'server': 1,
  'specialist': 1,
  'system': 1,
  'use': 1,
  'weblog': 1,
  'websit': 1,
  'well': 1,
  'work': 1},
 864: {'6': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'Digit': None,
  'First': 'I',
  'Last': 'y',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'compani': 1,
  'corpor': 1,
  'creation': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'style': 1,
  'uniqu': 1,
  'year': 1},
 865: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
  'First': 'm',
  'Last': 't',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'call': 1,
  'creation': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'firm': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'see': 1,
  'work': 1},
 866: {'10': 1,
  '2.0': 4,
  '6': 1,
  '7': 1,
  '8': 1,
  '9': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
  'First': 'v',
  'Last': '3',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  '\\xc2\\xbb': 2,
  'action': 4,
  'adob': 4,
  'cs3': 4,
  'deposit_made': False,
  'domain': 4,
  'email_verified': True,
  'facebook_connected': False,
  'flash': 12,
  'html/dhtml': 4,
  'http': 4,
  'identity_verified': False,
  'javascript': 4,
  'ms-dot': 4,
  'net': 4,
  'payment_verified': False,
  'phone_verified': False,
  'player': 4,
  'profile_complete': True,
  'script': 4,
  'server\\xc2\\xbbtechnolog': 3,
  'sql': 4,
  'technolog': 4,
  'use': 4,
  'xml': 4},
 867: {'+6': 1,
  '100': 1,
  '3rd': 2,
  '4': 1,
  '5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'j',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  '\\ti': 1,
  'along': 1,
  'alway': 1,
  'aptitud': 1,
  'articl': 1,
  'asian': 1,
  'assur': 1,
  'bangladesh': 1,
  'batch': 1,
  'bba': 1,
  'best': 1,
  'boast': 1,
  'capabl': 1,
  'career': 1,
  'cgpa': 2,
  'choos': 1,
  'client': 1,
  'command': 1,
  'complet': 1,
  'countri': 1,
  'dead': 1,
  'deposit_made': False,
  'driven': 1,
  'email_verified': True,
  'enough': 1,
  'ensur': 1,
  'excel': 1,
  'experi': 1,
  'experienc': 1,
  'express': 1,
  'facebook_connected': False,
  'financ': 1,
  'glanc': 1,
  'identity_verified': False,
  'import': 1,
  'in-tim': 1,
  'includ': 1,
  'line': 1,
  'lowest': 1,
  'made': 1,
  'major': 1,
  'mba': 3,
  'mohammad': 1,
  'much': 1,
  'name': 1,
  'never': 1,
  'new': 1,
  'obtain': 1,
  'payment_verified': False,
  'phone_verified': False,
  'place': 2,
  'price': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 3,
  'reason': 1,
  'scienc': 1,
  'seriou': 1,
  'servic': 1,
  'show': 1,
  'skill': 2,
  'south': 1,
  'submiss': 2,
  'talent': 1,
  'technic': 1,
  'technolog': 1,
  'uniqu': 1,
  'univers': 1,
  'verbal': 1,
  'want': 1,
  'work': 1,
  'write': 3,
  'written': 1,
  'zone': 1},
 868: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
  'First': 'a',
  'Last': '8',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'best': 1,
  'come': 1,
  'deposit_made': False,
  'detail': 1,
  'done': 1,
  'easi': 1,
  'effici': 1,
  'email_verified': True,
  'english': 1,
  'excel': 1,
  'facebook_connected': False,
  'fast': 2,
  'good': 1,
  'grammar': 1,
  'honest': 1,
  'identity_verified': False,
  'improv': 1,
  'initi': 1,
  'keen': 1,
  'much': 1,
  'new': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': True,
  'possibl': 1,
  'profile_complete': True,
  'project': 2,
  'reason': 1,
  'sens': 1,
  'skill': 1,
  'softwar': 1,
  'solut': 1,
  'take': 1,
  'want': 1,
  'way': 1,
  'work': 1,
  'worker': 1,
  'yet': 1},
 869: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'a',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'client': 1,
  'css': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'done': 1,
  'email_verified': True,
  'facebook_connected': False,
  'familiar': 1,
  'html': 2,
  'identity_verified': False,
  'joomla': 1,
  'mani': 1,
  'name': 1,
  'past': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'psd': 1,
  'raj': 1,
  'ravi': 1,
  'sharma': 1,
  'two': 1,
  'web': 1,
  'wordpress': 1,
  'xhtml': 1,
  'year': 1},
 870: {"'s": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': None,
  'First': 'M',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'link': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'resum': 1},
 871: {'30': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'v',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'administr': 1,
  'also': 2,
  'artist': 1,
  'beka': 1,
  'bibl': 1,
  'book': 1,
  'card': 1,
  'cashless': 1,
  'certain': 1,
  'children': 2,
  'combin': 1,
  'compani': 1,
  'conflict': 1,
  'deposit_made': True,
  'develop': 2,
  'doman': 1,
  'earn': 1,
  'educ': 2,
  'email_verified': True,
  'english': 1,
  'experi': 2,
  'extract': 1,
  'facebook_connected': False,
  'featur': 1,
  'field': 1,
  'glen': 1,
  'government': 1,
  'health': 1,
  'help': 1,
  'herbal': 1,
  'hospit': 1,
  'identity_verified': False,
  'illustr': 1,
  'immedi': 1,
  'includ': 2,
  'india': 1,
  'indian': 1,
  'indigen': 1,
  'individu': 1,
  'insur': 1,
  'involv': 1,
  'latter': 1,
  'level': 1,
  'may': 1,
  'medic': 4,
  'medium': 1,
  'method': 1,
  'missionari': 1,
  'modern': 1,
  'montessori': 1,
  'name': 1,
  'network': 2,
  'newslett': 1,
  'non': 1,
  'organ': 2,
  'organizations.at': 1,
  'parti': 1,
  'payment_verified': True,
  'phone_verified': False,
  'photographi': 1,
  'present': 1,
  'profession': 1,
  'professor': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 2,
  'research': 1,
  'retir': 1,
  'rule': 1,
  'sale': 1,
  'school': 1,
  'slum': 1,
  'sponsor': 1,
  'studi': 1,
  'teach': 1,
  'team': 1,
  'third': 1,
  'three': 1,
  'transcript': 1,
  'treatment': 1,
  'univers': 1,
  'use': 2,
  'variou': 2,
  'visit': 1,
  'way': 1,
  'work': 5,
  'write': 1,
  'written': 1,
  'year': 1},
 872: {"''": 1,
  "'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'a',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  '``': 1,
  'alway': 2,
  'best': 2,
  'carri': 1,
  'deposit_made': False,
  'email_verified': True,
  'everi': 2,
  'facebook_connected': False,
  'give': 3,
  'identity_verified': False,
  'impact': 1,
  'job': 3,
  'last': 1,
  'payment_verified': False,
  'phone_verified': False,
  'posit': 1,
  'profile_complete': True,
  'realli': 1,
  'shot': 1,
  'take': 1,
  'think': 1,
  'want': 1},
 873: {'--': 14,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'i',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'aim': 1,
  'art': 1,
  'background': 1,
  'best': 1,
  'blog': 1,
  'creativ': 1,
  'deposit_made': False,
  'design': 3,
  'dreami': 1,
  'effect': 1,
  'email_verified': True,
  'facebook_connected': False,
  'graphic': 1,
  'high': 2,
  'identity_verified': False,
  'imag': 1,
  'inspir': 1,
  'logo': 1,
  'manipul': 1,
  'object': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photo': 2,
  'photoshop': 1,
  'poster': 1,
  'profession': 1,
  'profile_complete': True,
  'provid': 2,
  'qualiti': 2,
  'remov': 1,
  'resourc': 1,
  'retouch': 1,
  'servic': 1,
  'stock': 1,
  'tutori': 2,
  'writer': 1},
 874: {'4': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'Digit': None,
  'First': 'I',
  'Last': 'S',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'academ': 1,
  'accept': 1,
  'articles\\xc2\\xb7': 1,
  'blogs\\xc2\\xb7': 1,
  'complet': 1,
  'content': 4,
  'copyscap': 1,
  'deliv': 1,
  'deposit_made': False,
  'differ': 1,
  'email_verified': True,
  'enhanc': 1,
  'facebook_connected': False,
  'fast': 1,
  'field': 1,
  'follow': 1,
  'freelanc': 1,
  'genuin': 1,
  'get': 1,
  'goal': 1,
  'graduat': 1,
  'group': 1,
  'high': 1,
  'hire': 1,
  'huge': 1,
  'identity_verified': False,
  'industri': 1,
  'last': 1,
  'main': 1,
  'mani': 1,
  'moneybook': 1,
  'offer': 1,
  'origin': 1,
  'pass': 1,
  'payment': 1,
  'payment_verified': False,
  'paypal': 1,
  'phone_verified': False,
  'privileg': 1,
  'profession': 1,
  'profile_complete': True,
  'qualiti': 2,
  'quantiti': 1,
  'review': 1,
  'seo': 1,
  'servic': 1,
  'special': 1,
  'strive': 1,
  'studi': 1,
  'subject': 1,
  'time': 1,
  'turnaround': 1,
  'us': 1,
  'variou': 1,
  'via': 1,
  'work': 1,
  'writer': 3,
  'year': 1},
 875: {'2008': 1,
  '2012': 1,
  '7': 1,
  'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'i',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'angularj': 1,
  'api': 1,
  'applic': 1,
  'asp.net': 2,
  'c': 1,
  'crm': 1,
  'deposit_made': False,
  'develop': 2,
  'domain': 1,
  'email_verified': True,
  'entiti': 1,
  'erp': 1,
  'experi': 1,
  'experience.i': 1,
  'expertis': 1,
  'facebook_connected': False,
  'hello': 1,
  'identity_verified': False,
  'includ': 1,
  'inventori': 1,
  'javascript': 1,
  'jqueri': 1,
  'larg': 1,
  'like': 1,
  'ms-sql': 1,
  'mvc': 2,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'server': 1,
  'ssr': 1,
  'technolog': 2,
  'variou': 1,
  'web': 1,
  'year': 1},
 876: {'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'k',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'deposit_made': True,
  'email_verified': True,
  'expert': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'lamp': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True},
 877: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'y',
  'Last': '2',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'java': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profile_complete': True,
  'programm': 1,
  'web': 1},
 878: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'Digit': None,
  'First': 'I',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'adob': 1,
  'also': 2,
  'area': 1,
  'articl': 1,
  'blog': 1,
  'bookmark': 1,
  'code': 1,
  'comment': 1,
  'corel': 1,
  'deposit_made': False,
  'design': 1,
  'directori': 1,
  'draw': 1,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'facebook': 1,
  'facebook_connected': False,
  'follow': 1,
  'forum': 1,
  'good': 1,
  'great': 1,
  'identity_verified': False,
  'like': 1,
  'microsoft': 3,
  'network': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'post': 1,
  'powerpoint': 1,
  'profile_complete': True,
  'site': 1,
  'social': 2,
  'speed': 1,
  'submiss': 2,
  'test': 1,
  'twitter': 1,
  'type': 1,
  'word': 1,
  'wpm': 1},
 879: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
  'First': 'a',
  'Last': '0',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'afford': 1,
  'also': 1,
  'app': 1,
  'awar': 1,
  'best': 2,
  'brand': 1,
  'busi': 1,
  'clear': 1,
  'client': 1,
  'commun': 1,
  'creat': 1,
  'deliv': 1,
  'deliveri': 1,
  'deposit_made': True,
  'email_verified': True,
  'ensur': 1,
  'everi': 2,
  'excel': 1,
  'facebook_connected': True,
  'firm': 1,
  'fit': 1,
  'focu': 1,
  'follow': 1,
  'gener': 1,
  'guarante': 1,
  'hire': 1,
  'identity_verified': True,
  'includ': 1,
  'individu': 1,
  'innov': 1,
  'know': 1,
  'lead': 1,
  'make': 1,
  'market': 1,
  'onsit': 1,
  'orient': 1,
  'outstand': 1,
  'payment_verified': True,
  'phone_verified': True,
  'prefer': 1,
  'pride': 1,
  'profile_complete': True,
  'propos': 1,
  'receiv': 1,
  'requir': 1,
  'sale': 1,
  'softwar': 1,
  'staff': 1,
  'strive': 1,
  'support': 1,
  'take': 1,
  'technic': 1,
  'time': 2,
  'train': 1,
  'uniqu': 1,
  'within': 1},
 880: {'9': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='8'>,
  'First': 's',
  'Last': '6',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'anim': 1,
  'corpor': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'explain': 1,
  'facebook_connected': True,
  'graphic': 1,
  'identity_verified': False,
  'medic': 1,
  'motion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'video': 1,
  'year': 1},
 881: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 't',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'analyst': 1,
  'busi': 1,
  'current': 1,
  'deliveri': 1,
  'deposit_made': True,
  'e2e': 1,
  'email_verified': True,
  'facebook_connected': False,
  'good': 1,
  'identity_verified': False,
  'indian': 1,
  'interperson': 1,
  'mnc': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'respons': 1,
  'skill': 1,
  'sr.': 1,
  'technic': 1,
  'well': 1,
  'work': 1},
 882: {"'m": 1,
  '100': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'i',
  'Last': 'q',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
  'build': 1,
  'busi': 1,
  'client': 1,
  'current': 1,
  'deposit_made': False,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'i\\\\': 1,
  'identity_verified': False,
  'knowledg': 1,
  'last': 1,
  'opportun': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'provid': 1,
  'satisfact': 1,
  'seek': 1,
  'servic': 1,
  'year': 1},
 883: {'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'm',
  'Numchar': 5,
  'Vowel': None,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'high': 1,
  'identity_verified': False,
  'math': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'school': 1,
  'teacher': 1},
 884: {'2.0': 1,
  '2003': 1,
  '30': 1,
  '5': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
  'Digit': None,
  'First': 'V',
  'Last': 'G',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'abil': 1,
  'abl': 1,
  'actionscript': 1,
  'almost': 1,
  'alway': 1,
  'ambiti': 1,
  'as3.0': 2,
  'base': 2,
  'big': 1,
  'biggest': 1,
  'chat': 1,
  'code': 1,
  'commun': 1,
  'compani': 1,
  'constant': 1,
  'contract': 1,
  'deposit_made': True,
  'design': 1,
  'develop': 2,
  'either': 1,
  'email_verified': True,
  'facebook': 1,
  'facebook_connected': True,
  'firm': 1,
  'flash': 2,
  'flash/flex': 1,
  'freelanc': 1,
  'get': 1,
  'good': 1,
  'hi': 1,
  'identity_verified': False,
  'independ': 1,
  'job': 1,
  'know': 1,
  'look': 1,
  'mail': 1,
  'may': 1,
  'min': 2,
  'passion': 2,
  'payment_verified': True,
  'phone_verified': True,
  'photoshop': 1,
  'port': 1,
  'profil': 1,
  'profile_complete': True,
  'program': 1,
  'programm': 1,
  'project': 2,
  'provid': 1,
  'rate': 1,
  'repli': 1,
  'requir': 1,
  'robotleg': 1,
  'sens': 1,
  'servic': 1,
  'sinc': 1,
  'small': 1,
  'smartfox': 1,
  'start': 1,
  'strength': 1,
  'suffici': 1,
  'take': 1,
  'use': 1,
  'via': 1,
  'within': 1,
  'work': 2},
 885: {"'m": 2,
  "'s": 2,
  '.i': 1,
  '2': 1,
  '2009': 1,
  '3': 2,
  '5': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
  'Digit': None,
  'First': 'L',
  'Last': 'i',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'actual': 1,
  'address': 1,
  'art': 1,
  'background': 1,
  'base': 1,
  'best': 1,
  'blog': 1,
  'broken': 1,
  'challeng': 1,
  'christoph': 2,
  'client': 1,
  'code': 2,
  'commun': 1,
  'concept': 1,
  'contribut': 1,
  'creativ': 1,
  'css': 1,
  'css2': 1,
  'current': 1,
  'day': 1,
  'degrad': 1,
  'deposit_made': False,
  'design': 2,
  'director': 1,
  'domain': 1,
  'email_verified': True,
  'facebook_connected': False,
  'feedback': 1,
  'follow': 1,
  'forum': 1,
  'franc': 1,
  'freelanc': 1,
  'geek': 1,
  'grace': 1,
  'hello': 1,
  'html': 1,
  'identity_verified': False,
  'jacob': 1,
  'launch': 1,
  'lectur': 1,
  'link': 1,
  'love': 1,
  'market': 3,
  'meet': 1,
  'miss': 1,
  'name': 2,
  'new': 1,
  'onlin': 1,
  'pari': 2,
  'payment_verified': False,
  'peer': 1,
  'phone_verified': False,
  'portfolio': 2,
  'profile_complete': True,
  'rank': 1,
  'read': 1,
  'recent': 1,
  'recogn': 1,
  'regard': 1,
  'renew': 1,
  'resum': 1,
  'revers': 1,
  'sinc': 1,
  'skill': 1,
  'special': 1,
  'url': 1,
  'usabl': 1,
  'view': 1,
  'visual': 1,
  'watch': 1,
  'web': 2,
  'webdesign': 2,
  'websit': 1,
  'zlobinski-furmaniak': 2},
 886: {'5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='3'>,
  'First': 'd',
  'Last': 's',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
  'bargain': 1,
  'becom': 1,
  'bs': 1,
  'coe': 1,
  'compani': 1,
  'consult': 1,
  'decid': 1,
  'deposit_made': False,
  'email_verified': True,
  'employe': 1,
  'everi': 1,
  'facebook_connected': False,
  'go': 1,
  'graduat': 1,
  'identity_verified': False,
  'independ': 1,
  'individu': 1,
  'knowledg': 1,
  'need': 1,
  'never': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'servic': 1,
  'skill': 1,
  'time': 1,
  'want': 1,
  'webmast': 1,
  'work': 1,
  'wrong': 1,
  'yr': 1},
 887: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
  'First': 'v',
  'Last': '2',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'articl': 2,
  'client': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'give': 1,
  'identity_verified': False,
  'intend': 1,
  'meet': 1,
  'need': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'qualiti': 1,
  'readi': 1,
  'requir': 1,
  'serv': 1,
  'subject': 1,
  'varieti': 1,
  'wide': 1},
 888: {'5': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
  'First': 'c',
  'Last': '0',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'area': 1,
  'cm': 1,
  'codeignit': 1,
  'compani': 1,
  'creat': 1,
  'css': 1,
  'deposit_made': False,
  'develop': 1,
  'differ': 1,
  'email_verified': True,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': True,
  'framework': 2,
  'ground': 1,
  'html': 1,
  'identity_verified': False,
  'joomla': 1,
  'lamp': 1,
  'medium': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'program': 1,
  'project': 1,
  'side': 1,
  'small': 1,
  'work': 2,
  'year': 1,
  'yii': 1,
  'zend': 1},
 889: {"'ll": 2,
  '1.': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
  'Digit': None,
  'First': 'H',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'account': 1,
  'achiev': 2,
  'ad': 1,
  'afford': 1,
  'analysi': 2,
  'announc': 1,
  'attract': 1,
  'b2b': 1,
  'banner': 1,
  'blog': 4,
  'book': 1,
  'brochur': 1,
  'build': 2,
  'built': 1,
  'busi': 1,
  'cm': 1,
  'competit': 2,
  'competitor': 1,
  'consum': 1,
  'cover': 1,
  'creat': 2,
  'custom': 1,
  'defin': 1,
  'deposit_made': False,
  'design': 3,
  'develop': 1,
  'email_verified': True,
  'exist': 1,
  'experi': 1,
  'facebook_connected': False,
  'ghost': 1,
  'help': 3,
  'identity_verified': False,
  'industri': 1,
  'inform': 1,
  'joomla': 1,
  'leader': 1,
  'link': 2,
  'manag': 2,
  'market': 2,
  'match': 1,
  'media': 1,
  'monitor': 2,
  'need': 1,
  'network': 1,
  'offer': 1,
  'ongo': 1,
  'page': 1,
  'payment_verified': False,
  'phone_verified': False,
  'player': 1,
  'press': 1,
  'product': 1,
  'profil': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 2,
  'report': 1,
  'simpl': 1,
  'skill': 1,
  'social': 1,
  'strategi': 3,
  'system': 1,
  'target': 1,
  'thought': 1,
  'time': 1,
  'trend': 1,
  'twitter': 3,
  'util': 1,
  'vertic': 1,
  'web': 1,
  'websit': 3,
  'whether': 2,
  'wordpress': 1,
  'write': 1},
 890: {'100+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'n',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
  'alam': 1,
  'almost': 1,
  'applic': 1,
  'beauti': 1,
  'codeignit': 1,
  'deposit_made': False,
  'design': 2,
  'develop': 3,
  'dhaka': 1,
  'dynam': 1,
  'email_verified': True,
  'facebook_connected': False,
  'framework': 1,
  'hi': 1,
  'identity_verified': False,
  'khan': 1,
  'live': 1,
  'md': 1,
  'open': 1,
  'past': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'portfolio': 1,
  'prefer': 1,
  'profile_complete': True,
  'sourc': 1,
  'uniqu': 1,
  'use': 1,
  'valid': 1,
  'w3c': 1,
  'web': 1,
  'websit': 4,
  'welcom': 1,
  'work': 1,
  'year': 1},
 891: {'.net': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
  'Digit': None,
  'First': 'D',
  'Last': 'd',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>,
  'also': 1,
  'applic': 1,
  'around': 1,
  'base': 1,
  'client': 1,
  'compani': 1,
  'deploy': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'exampl': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'intern': 1,
  'like': 1,
  'mani': 1,
  'opportun': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pleas': 1,
  'profile_complete': True,
  'request': 1,
  'see': 1,
  'servic': 1,
  'site': 1,
  'small': 1,
  'softwar': 1,
  'technolog': 1,
  'vers': 1,
  'visit': 1,
  'web': 2,
  'welcom': 1,
  'well': 1,
  'window': 1,
  'work': 2,
  'world': 1,
  'write': 1},
 892: {'...': 1,
  '4': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='5'>,
  'First': 'p',
  'Last': '5',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'build': 1,
  'comput': 1,
  'convers': 1,
  'data': 4,
  'deposit_made': True,
  'email_verified': True,
  'entri': 1,
  'etc': 1,
  'experi': 1,
  'facebook_connected': False,
  'format': 1,
  'graduat': 1,
  'identity_verified': False,
  'internet': 2,
  'link': 1,
  'market': 1,
  'payment_verified': False,
  'phone_verified': False,
  'post': 1,
  'process': 1,
  'profile_complete': True,
  'research': 1,
  'scienc': 1,
  'seo': 1,
  'year': 1},
 893: {'2014.': 1,
  '28': 1,
  '5': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
  'Digit': None,
  'First': 'W',
  'Last': 'l',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'call': 1,
  'canada': 1,
  'center': 1,
  'contractor': 1,
  'custom': 1,
  'deposit_made': False,
  'email_verified': True,
  'expand': 1,
  'experi': 1,
  'facebook_connected': False,
  'flexibl': 1,
  'hi': 1,
  'identity_verified': False,
  'includ': 1,
  'independ': 1,
  'look': 1,
  'name': 1,
  'old': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'retail': 1,
  'schedul': 1,
  'septemb': 1,
  'servic': 1,
  'sinc': 1,
  'variou': 1,
  'work': 1,
  'year': 2},
 894: {"'s": 1,
  "'ve": 1,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'o',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'back': 1,
  'best': 1,
  'busi': 1,
  'care': 1,
  'choic': 1,
  'configur': 1,
  'cost-effect': 1,
  'deposit_made': True,
  'design': 1,
  'detail': 1,
  'eight': 1,
  'email_verified': True,
  'facebook_connected': True,
  'get': 1,
  'identity_verified': False,
  'joomla': 1,
  'mainten': 2,
  'one-stop': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'run': 1,
  'site': 1,
  'specialis': 1,
  'staff': 1,
  'take': 1,
  'web': 1,
  'websit': 1,
  'year': 1},
 895: {'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'a',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'applic': 1,
  'busi': 2,
  'compani': 1,
  'cost': 1,
  'deposit_made': True,
  'design': 1,
  'designing-': 1,
  'develop': 1,
  'dynam': 1,
  'email_verified': True,
  'etc': 1,
  'evolv': 1,
  'facebook_connected': False,
  'galaxi': 1,
  'help': 1,
  'hosting-': 1,
  'identity_verified': False,
  'info': 1,
  'low': 1,
  'payment_verified': False,
  'phone_verified': True,
  'process': 1,
  'profile_complete': True,
  'programming-': 1,
  'provid': 1,
  'qualiti': 1,
  'rang': 1,
  'servic': 4,
  'software-': 1,
  'solut': 1,
  'special': 1,
  'strateg': 1,
  'system': 1,
  'web': 5,
  'web-bas': 1},
 896: {'14': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'd',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'afford': 1,
  'agenc': 1,
  'aim': 1,
  'art': 1,
  'attent': 1,
  'attract': 1,
  'bid': 1,
  'busi': 1,
  'clear': 1,
  'commun': 2,
  'compet': 1,
  'core': 1,
  'creativ': 1,
  'crisp': 1,
  'cultur': 1,
  'custom': 2,
  'deposit_made': True,
  'design': 3,
  'detail': 1,
  'director': 1,
  'effici': 1,
  'email_verified': True,
  'facebook_connected': True,
  'favor': 1,
  'freelanc': 1,
  'futur': 1,
  'go': 1,
  'highest': 1,
  'hire': 1,
  'ident': 1,
  'identity_verified': False,
  'industry-standard': 1,
  'interfac': 1,
  'intern': 1,
  'job': 1,
  'last': 1,
  'layout': 1,
  'level': 1,
  'lie': 1,
  'local': 1,
  'logo': 1,
  'look': 1,
  'loyalti': 1,
  'market': 2,
  'master': 1,
  'maximum': 2,
  'may': 1,
  'payment_verified': False,
  'perfect': 1,
  'perform': 1,
  'phone_verified': True,
  'portfolio': 1,
  'possibl': 2,
  'print': 1,
  'prior': 1,
  'produc': 1,
  'profile_complete': True,
  'prove': 1,
  'qualiti': 1,
  'save': 1,
  'section': 1,
  'servic': 1,
  'smallest': 1,
  'start': 1,
  'sure': 1,
  'task': 1,
  'technic': 1,
  'think': 1,
  'tool': 1,
  'use': 1,
  'vibrant': 1,
  'web': 1,
  'year': 1},
 897: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
  'Digit': None,
  'First': 'M',
  'Last': 'o',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'articl': 1,
  'blog': 1,
  'bulk': 1,
  'competit': 2,
  'content': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': False,
  'highli': 1,
  'identity_verified': False,
  'notch': 1,
  'offer': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'rate': 2,
  'reason': 1,
  'time': 1,
  'top': 1,
  'turnaround': 1,
  'web': 1,
  'work': 1},
 898: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'o',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'abil': 1,
  'abl': 1,
  'also': 1,
  'analysi': 1,
  'applic': 1,
  'assist': 1,
  'b2b': 1,
  'busi': 2,
  'cm': 1,
  'commerci': 1,
  'common': 1,
  'data': 2,
  'databas': 1,
  'decis': 1,
  'dedic': 1,
  'deposit_made': False,
  'depth': 1,
  'dn': 1,
  'drupal': 1,
  'email_verified': True,
  'emerg': 1,
  'environ': 1,
  'excel': 1,
  'facebook_connected': False,
  'flexibl': 1,
  'ftp': 1,
  'hard': 1,
  'hardwar': 1,
  'henc': 1,
  'host': 1,
  'identity_verified': False,
  'individu': 1,
  'instal': 1,
  'joomla': 1,
  'knowledg': 1,
  'make': 1,
  'manag': 2,
  'market': 2,
  'ms': 1,
  'mysql': 1,
  'network': 1,
  'offic': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 1,
  'press': 1,
  'profici': 1,
  'profile_complete': True,
  'relat': 1,
  'resel': 1,
  'resourc': 1,
  'self-motiv': 1,
  'sens': 1,
  'server': 1,
  'share': 1,
  'social': 1,
  'softwar': 1,
  'sql': 1,
  'support': 1,
  'technic': 1,
  'technolog': 1,
  'understand': 1,
  'virtual': 1,
  'vp': 1,
  'whm/cpanel': 1,
  'word': 1,
  'work': 2},
 899: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 's',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'area': 1,
  'bring': 1,
  'complex': 1,
  'continu': 1,
  'creativ': 1,
  'databas': 1,
  'degre': 1,
  'deposit_made': False,
  'design': 1,
  'desir': 1,
  'develop': 1,
  'differ': 1,
  'effect': 1,
  'email_verified': True,
  'engin': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'growth': 1,
  'high': 1,
  'identity_verified': False,
  'ingenu': 1,
  'market': 1,
  'medium': 1,
  'payment_verified': False,
  'perform': 1,
  'person': 1,
  'phone_verified': False,
  'proactiv': 1,
  'profession': 3,
  'profile_complete': True,
  'project': 1,
  'provid': 1,
  'qualiti': 1,
  'relat': 1,
  'requir': 1,
  'research': 1,
  'sector': 1,
  'six': 1,
  'small': 1,
  'softwar': 2,
  'solut': 1,
  'spirit': 1,
  'system': 1,
  'work': 2,
  'year': 1},
 900: {'2013': 1,
  '7': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 'n',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'acrobat': 1,
  'apps.i': 1,
  'clean': 1,
  'convers': 1,
  'creat': 2,
  'creation': 1,
  'cycl': 1,
  'data': 2,
  'deal': 1,
  'deposit_made': True,
  'email_verified': True,
  'excel': 2,
  'facebook_connected': False,
  'form': 2,
  'freelanc': 1,
  'full': 1,
  'hundr': 1,
  'identity_verified': False,
  'includ': 1,
  'issu': 1,
  'job': 1,
  'last': 1,
  'live': 1,
  'mani': 1,
  'offic': 1,
  'payment_verified': False,
  'pdf': 3,
  'perform': 2,
  'phone_verified': True,
  'pro': 1,
  'profile_complete': True,
  'research': 1,
  'setup': 1,
  'skill': 1,
  'solut': 1,
  'spreadsheet': 1,
  'technic': 1,
  'xi': 1,
  'year': 1},
 901: {'6+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'r',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'accord': 1,
  'complex': 1,
  'custom': 2,
  'deposit_made': False,
  'design': 1,
  'develop': 2,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'fulli': 1,
  'hard': 1,
  'identity_verified': False,
  'number': 1,
  'paid': 1,
  'payment_verified': False,
  'phone_verified': False,
  'plugin': 1,
  'profile_complete': True,
  'project': 1,
  'requir': 1,
  'set': 1,
  'skill': 1,
  'theme': 2,
  'web': 1,
  'work': 1,
  'year': 1},
 902: {'15': 1,
  'Caps': None,
  'Digit': None,
  'First': 'j',
  'Last': 's',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'access': 1,
  'basic': 1,
  'deposit_made': True,
  'develop': 2,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'ms': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'special': 1,
  'sql': 1,
  'visual': 1,
  'year': 1},
 903: {'...': 1,
  '25': 1,
  'Caps': None,
  'Digit': None,
  'First': 'k',
  'Last': 'n',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'deposit_made': False,
  'email_verified': True,
  'english': 1,
  'experi': 3,
  'facebook_connected': False,
  'graphic': 1,
  'identity_verified': False,
  'level': 1,
  'need': 1,
  'outdoor': 1,
  'payment_verified': False,
  'phone_verified': False,
  'portugues': 1,
  'profession': 1,
  'profile_complete': True,
  'romanc': 1,
  'tell': 1,
  'translat': 1,
  'variou': 1,
  'word': 1,
  'year': 3},
 904: {'Caps': None,
  'Digit': None,
  'First': 'h',
  'Last': 'a',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'cool': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'like': 2,
  'manual': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': True,
  'profile_complete': True,
  'similar': 1,
  'test': 1,
  'tester': 1,
  'websit': 1,
  'work': 3,
  'would': 1},
 905: {"''": 2,
  "'m": 1,
  "'ve": 1,
  '10+': 1,
  '2.0': 2,
  'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 'h',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  '``': 2,
  'ajax': 1,
  'app': 1,
  'applic': 1,
  'around': 1,
  'avail': 1,
  'back-end': 1,
  'basi': 1,
  'check': 1,
  'chrome': 1,
  'curl': 1,
  'current': 1,
  'daili': 1,
  'deposit_made': True,
  'desktop': 1,
  'detail': 1,
  'done': 1,
  'email_verified': True,
  'experi': 1,
  'extens': 1,
  'facebook_connected': True,
  'fast': 1,
  'filipino': 1,
  'freelanc': 2,
  'front-end': 1,
  'go': 1,
  'guarante': 1,
  'high': 1,
  'identity_verified': False,
  'internet': 1,
  'jqueri': 1,
  'known': 1,
  'lot': 1,
  'love': 1,
  'one': 1,
  'payment_verified': False,
  'phone_verified': True,
  'phonegap': 1,
  'php': 1,
  'previou': 1,
  'profile_complete': True,
  'qualiti': 1,
  'request': 1,
  'review': 1,
  'stay': 1,
  'super': 2,
  'sure': 1,
  'tri': 1,
  'use': 1,
  'web': 2,
  'websit': 1,
  'work': 4,
  'year': 1},
 906: {'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'n',
  'Numchar': 4,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'admin': 1,
  'avail': 1,
  'busi': 2,
  'cleric': 1,
  'creativ': 1,
  'data': 1,
  'deposit_made': True,
  'email_verified': True,
  'entri': 1,
  'experi': 1,
  'extens': 1,
  'extra': 1,
  'facebook_connected': False,
  'gener': 1,
  'identity_verified': False,
  'immedi': 1,
  'incom': 1,
  'new': 1,
  'offic': 1,
  'owner': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'project': 2,
  'provid': 1,
  'seek': 1,
  'short': 1,
  'small': 1,
  'take': 1,
  'term': 1,
  'write': 1},
 907: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'j',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'accuraci': 1,
  'achiev': 1,
  'also': 1,
  'correct': 1,
  'deposit_made': False,
  'electron': 1,
  'email_verified': True,
  'enthusiast': 1,
  'facebook_connected': False,
  'fast': 1,
  'freelanc': 1,
  'goal': 1,
  'good': 1,
  'grammar': 1,
  'help': 1,
  'hour': 1,
  'identity_verified': False,
  'keep': 1,
  'latest': 1,
  'lest': 1,
  'like': 1,
  'look': 1,
  'new': 1,
  'opportun': 1,
  'part': 1,
  'payment_verified': False,
  'per': 1,
  'phone_verified': True,
  'plan': 1,
  'profile_complete': True,
  'tech': 1,
  'technolog': 1,
  'time': 1,
  'transcript': 1,
  'type': 1,
  'updat': 1,
  'week': 1,
  'work': 2},
 908: {'4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'articl': 1,
  'assess': 1,
  'basic': 1,
  'blog': 1,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'glad': 1,
  'help': 1,
  'identity_verified': False,
  'passion': 1,
  'past': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 2,
  'sever': 1,
  'structur': 1,
  'take': 1,
  'websit': 1,
  'work': 1,
  'write': 1,
  'written': 1,
  'year': 1},
 909: {'1.': 1,
  '2.': 1,
  'Caps': None,
  'Digit': None,
  'First': 'u',
  'Last': 'n',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
  'area4': 1,
  'art': 1,
  'careful': 1,
  'chines': 1,
  'command': 1,
  'deposit_made': False,
  'editor': 1,
  'educ': 1,
  'email_verified': True,
  'english': 1,
  'english3': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'good': 1,
  'half': 1,
  'honest': 1,
  'identity_verified': False,
  'languages-english': 1,
  'major': 1,
  'master': 1,
  'one': 1,
  'patient': 1,
  'payment_verified': False,
  'perfom': 1,
  'person': 1,
  'phone_verified': False,
  'profile_complete': True,
  'respons': 1,
  'trait': 1,
  'two': 1,
  'work': 1,
  'year': 1},
 910: {"'m": 1,
  "'ve": 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='3'>,
  'First': 'r',
  'Last': '7',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'abl': 1,
  'academ': 1,
  'avail': 1,
  'background': 1,
  'bring': 1,
  'cheer': 1,
  'choos': 1,
  'clariti': 1,
  'commun': 1,
  'consider': 1,
  'craft': 1,
  'dedic': 1,
  'deliveri': 1,
  'deposit_made': False,
  'email_verified': True,
  'esoter': 1,
  'excel': 1,
  'expect': 1,
  'extens': 1,
  'facebook_connected': False,
  'fierc': 1,
  'fresh': 2,
  'friendli': 1,
  'greet': 1,
  'health': 1,
  'identity_verified': False,
  'interest': 1,
  'involv': 1,
  'maintain': 1,
  'mechan': 1,
  'meet': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': False,
  'piec': 1,
  'pm': 1,
  'profession': 1,
  'profile_complete': True,
  'prompt': 1,
  'qualiti': 1,
  'reader': 1,
  'resum': 1,
  'review': 1,
  'sampl': 1,
  'season': 1,
  'specif': 1,
  'strong': 1,
  'swift': 1,
  'thank': 1,
  'time': 1,
  'turnaround': 1,
  'via': 1,
  'voic': 1,
  'well': 1,
  'work': 1,
  'write': 1,
  'writer': 1,
  'written': 1},
 911: {"'m": 3,
  "'s": 1,
  '.net': 2,
  '2004': 1,
  '2005': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'd',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  'administr': 1,
  'adob': 1,
  'alon': 1,
  'analys': 1,
  'applic': 2,
  'architect': 1,
  'architectur': 1,
  'asp': 2,
  'attract': 1,
  'c': 1,
  'certifi': 1,
  'classic': 1,
  'code': 1,
  'comput': 1,
  'css': 1,
  'custom': 1,
  'databas': 1,
  'degre': 1,
  'deposit_made': True,
  'design': 2,
  'develop': 3,
  'dream': 1,
  'e-commerc': 1,
  'email_verified': True,
  'experi': 1,
  'experienc': 1,
  'express': 1,
  'facebook_connected': True,
  'focus': 1,
  'form': 1,
  'got': 1,
  'hello': 1,
  'high': 1,
  'html': 1,
  'identity_verified': False,
  'inform': 1,
  'interfac': 1,
  'level': 1,
  'make': 1,
  'manag': 2,
  'microsoft': 4,
  'moham': 1,
  'orient': 1,
  'payment_verified': True,
  'phone_verified': True,
  'produc': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'recent': 1,
  'relat': 2,
  'rich': 1,
  'say': 1,
  'scienc': 1,
  'senior': 1,
  'servic': 2,
  'sever': 1,
  'sinc': 1,
  'skill': 1,
  'softwar': 1,
  'special': 1,
  'specialist': 1,
  'studio': 1,
  'system': 2,
  'talent': 1,
  'technolog': 2,
  'usabl': 1,
  'use': 2,
  'user': 2,
  'visual': 1,
  'weaver': 1,
  'web': 5,
  'window': 1,
  'xml': 1,
  'year': 2},
 912: {"'ll": 1,
  "'m": 1,
  '8+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'n',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'aleksandar': 1,
  'applic': 1,
  'contact': 1,
  'deposit_made': False,
  'design': 2,
  'devic': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'gladli': 1,
  'graphic': 1,
  'hello': 1,
  'identity_verified': True,
  'mobil': 1,
  'name': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'project': 1,
  'special': 1,
  'web': 1,
  'well': 1,
  'work': 1,
  'year': 1},
 913: {"'m": 4,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'account': 1,
  'adob': 1,
  'also': 2,
  'anyth': 1,
  'bath': 1,
  'behind': 1,
  'class': 1,
  'comput': 1,
  'coupl': 1,
  'creativ': 1,
  'deposit_made': False,
  'design': 2,
  'ebay': 1,
  'email_verified': True,
  'facebook': 1,
  'facebook_connected': False,
  'feedback': 1,
  'flexibl': 1,
  'great': 1,
  'hardwork': 1,
  'help': 1,
  'identity_verified': False,
  'kitchen': 1,
  'like': 1,
  'lot': 1,
  'mainli': 1,
  'myspac': 1,
  'new': 1,
  'past': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'process': 1,
  'profile_complete': True,
  'project': 1,
  'prove': 1,
  'skill': 2,
  'student': 1,
  'suit': 1,
  'take': 1,
  'thrown': 1,
  'twitter': 1,
  'valid': 1,
  'way': 1,
  'websit': 1,
  'would': 1,
  'year': 1},
 914: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(11, 12), match='1'>,
  'First': 's',
  'Last': '8',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'achiev': 1,
  'deposit_made': False,
  'effort': 1,
  'email_verified': True,
  'everi': 1,
  'facebook_connected': False,
  'grate': 1,
  'identity_verified': False,
  'make': 1,
  'opportun': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'take': 1,
  'wish': 1},
 915: {'17': 1,
  '4th': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 'a',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'address': 1,
  'birth': 1,
  'deposit_made': False,
  'email_verified': True,
  'estat': 1,
  'facebook_connected': False,
  'feder': 1,
  'hous': 1,
  'identity_verified': False,
  'imo': 2,
  'malenation': 1,
  'new': 1,
  'origin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'road': 1,
  'sept': 1,
  'state': 1},
 916: {'50': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
  'Digit': None,
  'First': 'T',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'assist': 2,
  'automot': 1,
  'consult': 1,
  'corpor': 1,
  'deposit_made': True,
  'dmv': 1,
  'email_verified': True,
  'everi': 1,
  'except': 1,
  'facebook_connected': False,
  'firm': 2,
  'gener': 1,
  'goal': 1,
  'harder': 1,
  'identity_verified': False,
  'industri': 1,
  'larger': 1,
  'mantra': 1,
  'offer': 1,
  'oper': 1,
  'outsourc': 1,
  'payment_verified': False,
  'person': 1,
  'phone_verified': True,
  'process': 1,
  'profile_complete': True,
  'project': 1,
  'result': 1,
  'servic': 1,
  'set': 1,
  'skill': 1,
  'smarter': 1,
  'state': 1,
  'take': 1,
  'us': 1,
  'view': 1,
  'virtual': 1,
  'work': 1},
 917: {'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'e',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'dedic': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'hard': 1,
  'identity_verified': False,
  'output': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'satisfi': 1,
  'undergradu': 1,
  'worker': 1},
 918: {"'m": 3,
  '14': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 's',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'access': 1,
  'administration.i': 1,
  'also': 1,
  'arab': 1,
  'c': 1,
  'c/c++': 1,
  'databas': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 1,
  'document': 1,
  'email_verified': True,
  'engin': 1,
  'english': 1,
  'experi': 1,
  'experience.i': 1,
  'expert': 1,
  'facebook_connected': False,
  'follow': 1,
  'french': 1,
  'hello': 1,
  'identity_verified': False,
  'java/j2e': 1,
  'languag': 1,
  'ms': 1,
  'mysql': 1,
  'non-techn': 1,
  'oracl': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pl/sql': 1,
  'profile_complete': True,
  'senior': 1,
  'server': 1,
  'softwar': 1,
  'sql': 2,
  'stock': 1,
  'technic': 1,
  'translat': 2,
  'year': 1},
 919: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
  'Digit': None,
  'First': 'T',
  'Last': 'w',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'academ': 1,
  'agenc': 1,
  'american': 1,
  'degre': 1,
  'deposit_made': True,
  'edit': 1,
  'email_verified': True,
  'english': 2,
  'excel': 1,
  'experi': 2,
  'extens': 1,
  'facebook_connected': True,
  'foreign': 1,
  'hello': 1,
  'identity_verified': False,
  'includ': 2,
  'intern': 1,
  'interpret': 1,
  'job': 1,
  'knowledg': 1,
  'limit': 1,
  'linguist': 1,
  'name': 1,
  'obtain': 1,
  'oral': 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'proofread': 1,
  'russian': 2,
  'sinc': 1,
  'special': 1,
  'state': 1,
  'translat': 1,
  'univers': 3,
  'write': 2,
  'written': 1},
 920: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 'e',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'afford': 1,
  'attract': 1,
  'compliant': 1,
  'databas': 1,
  'deposit_made': True,
  'design': 2,
  'develop': 3,
  'driven': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': True,
  'freelanc': 1,
  'friendly.i': 1,
  'front-end': 1,
  'graphic': 1,
  'html/css': 1,
  'identity_verified': False,
  'larger': 1,
  'love': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'site': 1,
  'special': 1,
  'standard': 1,
  'tackl': 1,
  'user': 1,
  'web': 2,
  'year': 1},
 921: {'Caps': None,
  'Digit': None,
  'First': 'v',
  'Last': 'o',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'accord': 1,
  'blog': 1,
  'complet': 1,
  'custom': 1,
  'deposit_made': True,
  'designbann': 1,
  'designcr': 1,
  'email_verified': True,
  'exist': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'integr': 1,
  'offer': 1,
  'payment_verified': False,
  'phone_verified': False,
  'power': 2,
  'profile_complete': True,
  'servic': 1,
  'theme': 2,
  'websit': 1,
  'websitewordpress': 1,
  'wordpress': 3},
 922: {'8': 1,
  '90': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
  'First': 'd',
  'Last': '7',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'account': 1,
  'assist': 1,
  'background': 1,
  'call': 1,
  'center': 1,
  'custom': 1,
  'data': 1,
  'deadlin': 1,
  'deliv': 1,
  'deposit_made': True,
  'email_verified': True,
  'english': 1,
  'entry.i': 1,
  'experi': 1,
  'facebook_connected': True,
  'fast': 1,
  'given': 1,
  'handl': 1,
  'identity_verified': False,
  'industri': 1,
  'minut': 1,
  'outcom': 1,
  'payment_verified': True,
  'per': 1,
  'phone_verified': True,
  'possibl': 1,
  'proactiv': 1,
  'profile_complete': True,
  'project': 1,
  'servic': 1,
  'solid': 1,
  'support': 1,
  'task': 1,
  'technic': 1,
  'time': 1,
  'type': 1,
  'virtual': 1,
  'word': 1,
  'year': 1},
 923: {"'m": 1,
  '...': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'y',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'also': 1,
  'back': 1,
  'basic': 1,
  'c++': 1,
  'cours': 1,
  'css': 1,
  'deposit_made': False,
  'discov': 1,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'fairli': 1,
  'flavor': 1,
  'forward': 1,
  'gain': 1,
  'get': 1,
  'go': 1,
  'hat': 1,
  'html': 1,
  'identity_verified': False,
  'involv': 1,
  'issu': 1,
  'javascript': 1,
  'legal': 1,
  'move': 1,
  'much': 1,
  'mysql': 1,
  'page': 1,
  'payment_verified': False,
  'perl': 1,
  'phone_verified': False,
  'php': 1,
  'pretti': 1,
  'profici': 1,
  'profile_complete': True,
  'seo': 1,
  'simpler': 1,
  'skill': 1,
  'start': 2,
  'straight': 1,
  'techniqu': 1,
  'thing': 1,
  'tri': 1,
  'variou': 1,
  'way': 1,
  'white': 1,
  'work': 1,
  'year': 1},
 924: {'.\\xe2\\u20ac\\xa2\\tdesign': 1,
  '1': 1,
  '10': 2,
  '10+': 1,
  '15': 2,
  '2': 2,
  '2000': 4,
  '2001': 2,
  '2002': 4,
  '2002-': 2,
  '2003': 1,
  '2004': 2,
  '2005': 2,
  '2007': 2,
  '2008': 2,
  '3': 3,
  '3-tier': 2,
  '30': 1,
  '36': 1,
  '4': 2,
  '5': 1,
  '5.0': 1,
  '6': 3,
  '6.x': 1,
  '7': 1,
  '8+': 1,
  '8.1': 1,
  '9+': 1,
  '90': 1,
  '93': 2,
  '94': 1,
  '95/nt': 3,
  '98': 3,
  '9i/10g': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'c',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  '\\teyelit': 2,
  '\\tjava': 1,
  '\\tlanguag': 2,
  '\\toctob': 1,
  '\\ttechnic': 1,
  '\\xe2\\u20ac\\u201c': 7,
  '\\xe2\\u20ac\\xa2\\tanalysi': 1,
  '\\xe2\\u20ac\\xa2\\tarchitect': 2,
  '\\xe2\\u20ac\\xa2\\tcod': 2,
  '\\xe2\\u20ac\\xa2\\tdesign': 5,
  '\\xe2\\u20ac\\xa2\\tdevelop': 2,
  '\\xe2\\u20ac\\xa2\\tprovid': 1,
  'abil': 1,
  'access': 4,
  'accomplish': 1,
  'account': 1,
  'accur': 1,
  'achiev': 3,
  'across': 2,
  'act': 1,
  'action': 1,
  'activ': 1,
  'ad': 1,
  'adapt': 1,
  'address': 1,
  'administr': 1,
  'advis': 1,
  'agent': 1,
  'aggreg': 1,
  'agil': 5,
  'aka': 1,
  'analysi': 6,
  'angel': 1,
  'ant': 1,
  'apach': 1,
  'applic': 15,
  'approxim': 1,
  'april': 4,
  'architect': 12,
  'architectur': 9,
  'around': 1,
  'assign': 1,
  'audienc': 2,
  'autom': 2,
  'award': 1,
  'b2b': 3,
  'b2c': 3,
  'back': 2,
  'balanc': 1,
  'banner': 1,
  'base': 9,
  'basic': 2,
  'bea': 3,
  'behavior': 3,
  'best': 1,
  'bid': 1,
  'blueprint': 1,
  'bom': 1,
  'bonu': 1,
  'borland': 2,
  'bu': 2,
  'build': 1,
  'busi': 7,
  'c': 1,
  'c++': 2,
  'c/c++': 8,
  'calcul': 1,
  'campaign': 5,
  'capabl': 6,
  'captur': 1,
  'care': 1,
  'case': 4,
  'central': 1,
  'chairman': 1,
  'chang': 1,
  'chief': 1,
  'chosen': 1,
  'claim': 1,
  'class': 3,
  'client': 7,
  'client\\xe2\\u20ac\\u2122': 1,
  'clipper': 2,
  'cluster': 2,
  'coach': 2,
  'code': 10,
  'codebas': 4,
  'coher': 2,
  'collect': 1,
  'collector': 8,
  'command': 4,
  'commun': 3,
  'compani': 3,
  'complet': 1,
  'complic': 1,
  'compon': 9,
  'composit': 1,
  'concept': 2,
  'condit': 1,
  'configur': 1,
  'connect': 2,
  'consist': 2,
  'construct': 3,
  'consult': 2,
  'contact': 1,
  'contain': 1,
  'continu': 1,
  'contract': 18,
  'control': 1,
  'corba': 2,
  'core': 1,
  'corpor': 2,
  'cost': 2,
  'creat': 2,
  'critic': 1,
  'crm': 1,
  'current': 3,
  'custom': 9,
  'customiz': 1,
  'd.o.o.softwar': 2,
  'dao': 1,
  'data': 11,
  'databas': 7,
  'date': 1,
  'day': 1,
  'db2': 1,
  'dbase': 1,
  'dbm': 1,
  'dbms\\xe2\\u20ac\\xa2\\tdesign': 2,
  'dec': 1,
  'decemb': 1,
  'deep': 1,
  'defin': 1,
  'deliv': 4,
  'deliver': 1,
  'deliveri': 1,
  'deploy': 2,
  'deposit_made': False,
  'describ': 1,
  'design': 20,
  'detail': 4,
  'develop': 23,
  'diagram': 3,
  'differ': 1,
  'disloc': 2,
  'distribut': 3,
  'divis': 4,
  'do': 1,
  'document': 6,
  'dom': 1,
  'domain': 2,
  'done': 2,
  'driven': 2,
  'driver': 1,
  'dtd': 1,
  'dynam': 1,
  'e-commerc': 2,
  'ejb': 9,
  'email_verified': True,
  'enabl': 2,
  'end': 4,
  'enforc': 1,
  'engin': 6,
  'enterpris': 3,
  'entiti': 1,
  'entri': 1,
  'environ': 2,
  'equip': 6,
  'erwin': 1,
  'event': 3,
  'excel': 1,
  'execut': 2,
  'experi': 1,
  'express': 1,
  'fab': 1,
  'facebook_connected': True,
  'facil': 2,
  'factori': 2,
  'financi': 2,
  'first': 1,
  'flavor': 1,
  'flex': 1,
  'flexibl': 4,
  'flow': 1,
  'follow': 1,
  'form': 2,
  'formula': 1,
  'framework': 7,
  'front': 2,
  'futur': 1,
  'ga': 1,
  'game': 2,
  'gather': 1,
  'gener': 3,
  'goal': 1,
  'gof': 2,
  'gold': 1,
  'graph': 1,
  'greatest': 1,
  'grid': 3,
  'ground': 2,
  'group': 1,
  'group\\tsenior': 2,
  'group\\ttechn': 3,
  'gui': 4,
  'handheld': 1,
  'handler': 1,
  'hardwar': 1,
  'health': 1,
  'help': 1,
  'high': 3,
  'high-level': 1,
  'highli': 2,
  'hoc': 1,
  'horizont': 1,
  'hour': 1,
  'hp-ux': 2,
  'html': 1,
  'http': 1,
  'ibm': 1,
  'identity_verified': False,
  'ii': 1,
  'ilog/jrul': 2,
  'implement': 7,
  'ina': 1,
  'inc.': 3,
  'includ': 1,
  'inform': 1,
  'initi': 1,
  'instal': 2,
  'integr': 6,
  'interact': 2,
  'interfac': 4,
  'internet': 4,
  'introduc': 1,
  'invest': 1,
  'involv': 1,
  'issu': 3,
  'j2ee': 5,
  'januari': 1,
  'java': 21,
  'jm': 4,
  'jsp': 2,
  'juli': 2,
  'june': 3,
  'junit': 1,
  'knowledg': 1,
  'lan': 2,
  'languag': 7,
  'lantast': 3,
  'layer': 2,
  'lead': 2,
  'leader': 2,
  'legaci': 6,
  'light': 1,
  'line': 2,
  'linux': 3,
  'lo': 1,
  'logic': 2,
  'loyalti': 5,
  'mainfram': 2,
  'manag': 7,
  'manufactur': 1,
  'map': 1,
  'march': 1,
  'market': 4,
  'materi': 1,
  'maven': 1,
  'maxim': 1,
  'maximum': 1,
  'may': 2,
  'me': 2,
  'member': 1,
  'mentor': 2,
  'messag': 8,
  'meta': 1,
  'methodolog': 5,
  'middl': 1,
  'middlewar': 1,
  'migrat': 2,
  'million': 4,
  'mine': 1,
  'mission': 1,
  'mississauga': 2,
  'mmo': 1,
  'mo': 2,
  'model': 7,
  'modem': 1,
  'modul': 1,
  'modular': 1,
  'monitor': 1,
  'mq': 2,
  'multi': 2,
  'multilingu': 1,
  'multipl': 1,
  'mvc': 2,
  'mysql': 1,
  'nation': 1,
  'new': 3,
  'no': 1,
  'non': 1,
  'novel': 1,
  'object': 3,
  'octob': 2,
  'oil': 3,
  'omniorb': 2,
  'onlin': 1,
  'oo': 1,
  'oper': 3,
  'oracl': 4,
  'order': 4,
  'owner': 1,
  'p2p': 2,
  'page': 2,
  'pair': 2,
  'pars': 1,
  'part': 5,
  'partner': 1,
  'path': 1,
  'pattern': 4,
  'payment_verified': False,
  'per': 3,
  'perform': 2,
  'perman': 1,
  'phase': 2,
  'phone_verified': False,
  'pilot': 1,
  'plan': 2,
  'plotter': 2,
  'plug-in': 2,
  'po': 1,
  'possibl': 1,
  'practic': 1,
  'prefer': 1,
  'prepar': 1,
  'present': 5,
  'previou': 1,
  'pri': 2,
  'primari': 1,
  'process': 5,
  'product': 11,
  'profil': 1,
  'profile_complete': True,
  'program': 3,
  'progress': 3,
  'project': 7,
  'promot': 1,
  'proper': 3,
  'protocol': 3,
  'provid': 6,
  'proxi': 4,
  'publish': 1,
  'ration': 10,
  'real': 1,
  'record': 1,
  'red': 1,
  'refineri': 1,
  'regard': 1,
  'relev': 1,
  'rendezv': 6,
  'report': 1,
  'repres': 1,
  'requir': 6,
  'resourc': 1,
  'respons': 2,
  'rest': 1,
  'reus': 1,
  'reusabl': 1,
  'review': 2,
  'reward': 4,
  'right': 1,
  'rmi': 1,
  'roi': 1,
  'role': 1,
  'rose': 9,
  'rule': 1,
  'run': 1,
  'rup': 1,
  'rv': 1,
  'scalabl': 3,
  'schedul': 1,
  'scope': 1,
  'score': 1,
  'script': 1,
  'scrum': 1,
  'sdk': 1,
  'sdlc': 1,
  'search': 1,
  'secur': 1,
  'segment': 1,
  'self': 1,
  'semiconductor': 4,
  'send': 1,
  'septemb': 1,
  'sequenc': 2,
  'serv': 1,
  'server': 11,
  'servic': 4,
  'servlet': 2,
  'session': 1,
  'set': 1,
  'shorten': 1,
  'side': 3,
  'site': 2,
  'soa': 7,
  'socket': 2,
  'softwar': 9,
  'solut': 18,
  'sophist': 1,
  'sourc': 1,
  'specif': 2,
  'spi': 1,
  'spring': 2,
  'stage': 1,
  'standard': 1,
  'starteam': 1,
  'state': 3,
  'statement': 2,
  'static': 1,
  'station': 2,
  'statu': 1,
  'stori': 2,
  'strateg': 1,
  'structur': 3,
  'strut': 3,
  'studio': 2,
  'subject': 1,
  'subscrib': 1,
  'success': 2,
  'suffici': 1,
  'support': 2,
  'swing': 1,
  'synchron': 1,
  'system': 15,
  'tactic': 1,
  'talk': 1,
  'target': 2,
  'task': 2,
  'tcp/ip': 4,
  'tdd': 3,
  'teach': 1,
  'team': 5,
  'technic': 2,
  'technolog': 4,
  'telecommut': 1,
  'thin': 2,
  'tibco': 4,
  'tie': 1,
  'tier': 7,
  'tight': 1,
  'time': 4,
  'tomcat': 1,
  'tool': 1,
  'topic': 1,
  'track': 2,
  'tracker': 1,
  'traffic': 2,
  'transact': 2,
  'transfer': 2,
  'transit': 1,
  'translat': 1,
  'transport': 2,
  'two': 1,
  'tx': 1,
  'uml': 7,
  'underli': 1,
  'unit': 2,
  'unix': 1,
  'upgrad': 1,
  'upper': 1,
  'us': 1,
  'usag': 1,
  'usd': 1,
  'use': 21,
  'user': 4,
  'util': 3,
  'variou': 3,
  'vendor': 1,
  'version': 1,
  'vertic': 1,
  'via': 4,
  'visual': 4,
  'vm': 2,
  'warehous': 1,
  'web': 2,
  'weblog': 5,
  'webmethod': 3,
  'webspher': 1,
  'week': 1,
  'window': 3,
  'winner': 1,
  'without': 1,
  'work': 1,
  'workflow': 4,
  'write': 1,
  'www': 1,
  'xml': 12,
  'xp': 1,
  'xsd': 2,
  'xsl': 3,
  'xslt': 1,
  'year': 2,
  'yr.': 14},
 925: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'l',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'also': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'identity_verified': False,
  'job': 1,
  'last': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photograph': 1,
  'profile_complete': True,
  'sincer': 1,
  'still': 1,
  'work': 1,
  'year': 1},
 926: {'30': 1,
  '8-10': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'also': 1,
  'approv': 1,
  'around': 1,
  'asset': 1,
  'australia': 1,
  'case': 1,
  'chang': 1,
  'client': 3,
  'cliental': 1,
  'commerci': 3,
  'compani': 1,
  'deliver': 1,
  'depend': 1,
  'deposit_made': False,
  'dvd': 2,
  'either': 1,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'file': 2,
  'ftp': 1,
  'hour': 1,
  'identity_verified': False,
  'kept': 1,
  'loop': 1,
  'may': 1,
  'music': 1,
  'outsourc': 1,
  'oversea': 1,
  'payment_verified': False,
  'phone_verified': False,
  'prepar': 1,
  'product': 1,
  'profile_complete': True,
  'project': 1,
  'receiv': 1,
  'requir': 1,
  'script': 1,
  'sec': 1,
  'send': 1,
  'sent': 1,
  'short': 1,
  'skype': 1,
  'specialis': 1,
  'tape': 1,
  'televis': 1,
  'throughout': 1,
  'turn': 1,
  'upload': 1,
  'use': 1,
  'variou': 1,
  'view': 1,
  'vo': 1,
  'whole': 1,
  'work': 1},
 927: {'13': 1,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 'u',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'also': 2,
  'armi': 1,
  'art': 2,
  'b.f.a': 1,
  'background': 1,
  'banner': 1,
  'brochur': 1,
  'busi': 1,
  'card': 1,
  'combat': 1,
  'craft': 1,
  'current': 1,
  'data': 1,
  'deposit_made': True,
  'design': 3,
  'digit': 1,
  'earn': 1,
  'ebay': 1,
  'edit': 1,
  'email_verified': True,
  'enhanc': 1,
  'entri': 1,
  'etc..': 2,
  'extra': 1,
  'facebook_connected': False,
  'fine': 1,
  'full': 1,
  'graphic': 1,
  'i.e': 1,
  'identity_verified': False,
  'includ': 1,
  'inform': 1,
  'logo': 1,
  'manipul': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photo': 2,
  'photographi': 2,
  'poster': 1,
  'profile_complete': True,
  'remov': 1,
  'sale': 1,
  'skill': 2,
  'spare': 1,
  'special': 1,
  'specialist': 1,
  'take': 1,
  'time': 2,
  'type': 1,
  'veteran': 1,
  'visual': 1,
  'web': 1,
  'will': 1,
  'work': 2,
  'year': 1},
 928: {"''": 2,
  "'s": 2,
  '-creat': 1,
  '-email': 2,
  '-familiar': 2,
  '-manag': 1,
  '1.': 2,
  '2.': 3,
  '3.': 2,
  '4.': 1,
  '5': 1,
  '6.': 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 's',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
  '\\\\': 1,
  'account': 2,
  'achiev': 1,
  'also': 2,
  'alway': 2,
  'assist': 1,
  'attempt': 1,
  'award': 1,
  'ba': 1,
  'basic': 1,
  'behalf': 1,
  'best': 1,
  'blood': 1,
  'bpo': 1,
  'busi': 2,
  'cabl': 1,
  'card': 1,
  'chat': 1,
  'chess': 1,
  'chimp': 1,
  'client': 2,
  'comcast': 1,
  'compani': 1,
  'contact': 1,
  'continu': 1,
  'cover': 1,
  'creation': 2,
  'custom': 4,
  'data': 2,
  'decid': 1,
  'deposit_made': True,
  'doc': 1,
  'document': 1,
  'dsl': 1,
  'ebay': 1,
  'ebook': 1,
  'email': 7,
  'email_verified': True,
  'employ': 2,
  'engin': 1,
  'english': 1,
  'etc': 1,
  'excel': 3,
  'experi': 1,
  'express': 1,
  'facebook_connected': False,
  'fast': 1,
  'feedback': 1,
  'folder': 1,
  'follow': 1,
  'forward': 1,
  'found': 1,
  'gather': 1,
  'give': 1,
  'goal': 1,
  'googl': 1,
  'graciela': 2,
  'great': 2,
  'handl': 1,
  'happi': 1,
  'hard': 1,
  'help': 1,
  'identity_verified': False,
  'igor': 1,
  'import': 1,
  'inbox': 1,
  'industri': 1,
  'inform': 1,
  'infus': 1,
  'internet': 2,
  'ipad': 1,
  'live': 2,
  'look': 1,
  'mac': 1,
  'mail': 1,
  'mailchimp': 1,
  'make': 1,
  'manag': 1,
  'manila': 1,
  'market': 1,
  'materi': 1,
  'maxworkout': 2,
  'may': 1,
  'microsoft': 1,
  'month': 1,
  'offer': 1,
  'offic': 1,
  'one': 1,
  'opportun': 1,
  'payment_verified': True,
  'paypal': 1,
  'pdf': 1,
  'phone_verified': False,
  'pleas': 1,
  'powerpoint': 1,
  'process': 2,
  'profession': 1,
  'profile_complete': True,
  'project': 1,
  'prospect': 1,
  'qualif': 1,
  'recommend': 1,
  'remark': 1,
  'repres': 1,
  'research': 3,
  'respons': 1,
  'review': 1,
  'scan': 1,
  'see': 1,
  'servic': 4,
  'smirnov': 1,
  'social': 1,
  'sociolog': 1,
  'softwar': 1,
  'sort': 1,
  'spreadsheet': 1,
  'stream': 1,
  'strive': 1,
  'strongli': 1,
  'suit': 1,
  'support': 11,
  'susan': 1,
  'technic': 1,
  'thunderbird': 1,
  'top': 1,
  'troubleshoot': 1,
  'truli': 1,
  'uk': 1,
  'univers': 1,
  'unwant': 1,
  'verizon': 1,
  'virtual': 1,
  'web': 1,
  'word': 1,
  'work': 5,
  'world': 1,
  'written': 1,
  'year': 1,
  'youtub': 1},
 929: {"'m": 1,
  "'ve": 1,
  '--': 1,
  '1984.': 1,
  '2005': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'n',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'activ': 1,
  'also': 1,
  'anticip': 1,
  'applic': 1,
  'bank': 1,
  'bill': 1,
  'busi': 2,
  'came': 1,
  'client': 3,
  'convers': 1,
  'data': 1,
  'databas': 1,
  'db': 1,
  'dbm': 1,
  'deposit_made': False,
  'develop': 2,
  'donat': 1,
  'educ': 1,
  'email_verified': True,
  'engin': 1,
  'estat': 1,
  'even': 1,
  'event': 1,
  'exist': 1,
  'experi': 1,
  'facebook_connected': False,
  'filemak': 2,
  'food': 1,
  'full': 1,
  'go': 1,
  'good': 1,
  'health': 1,
  'host': 1,
  'human': 1,
  'identity_verified': False,
  'includ': 1,
  'inform': 1,
  'insur': 1,
  'ipad': 1,
  'iphon': 1,
  'link': 1,
  'manag': 2,
  'market': 1,
  'migrat': 1,
  'need': 1,
  'network': 1,
  'new': 1,
  'odbc': 1,
  'payment_verified': False,
  'phone_verified': False,
  'plu': 1,
  'pretti': 1,
  'profile_complete': True,
  'rang': 1,
  'real': 1,
  'redesign': 1,
  'remot': 1,
  'repair': 1,
  'resourc': 1,
  'scratch': 1,
  'self-mad': 1,
  'sinc': 2,
  'small': 1,
  'sql': 1,
  'stand-alon': 1,
  'student': 1,
  'system': 3,
  'thing': 1,
  'thought': 1,
  'time': 1,
  'track': 1,
  'troubleshoot': 1,
  'upgrad': 2,
  'work': 2,
  'world': 1},
 930: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
  'Digit': None,
  'First': 'H',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'apach': 1,
  'bind': 1,
  'build': 1,
  'cisco': 2,
  'cpanel': 1,
  'deposit_made': False,
  'dhcp': 2,
  'email_verified': True,
  'environ': 1,
  'equip': 1,
  'exim': 1,
  'experi': 1,
  'facebook_connected': True,
  'firewal': 1,
  'hewlett-packard': 1,
  'hp': 1,
  'ibm': 1,
  'identity_verified': False,
  'iproute2': 1,
  'iptabl': 1,
  'kernel': 1,
  'linux': 1,
  'mainten': 1,
  'mysql': 1,
  'network': 1,
  'offic': 1,
  'oop': 1,
  'open': 1,
  'openvpn': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pix': 1,
  'plesk': 1,
  'postfix': 1,
  'ppp': 1,
  'pptp': 1,
  'procurv': 1,
  'profile_complete': True,
  'raid': 2,
  'samba': 1,
  'sendmail': 1,
  'soft': 1,
  'ssh': 1,
  'switch': 1,
  'technolog': 1,
  'vlan': 1,
  'vpn': 1,
  'webspher': 1,
  'whm': 1,
  'wifi': 1},
 931: {"''": 2,
  '.now': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'm',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  '``': 2,
  'assur': 1,
  'base': 1,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'inform': 1,
  'largest': 1,
  'master': 1,
  'multin': 1,
  'name': 1,
  'norway': 1,
  'organ': 1,
  'pakistan': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'punjab': 1,
  'qualiti': 1,
  'softwar': 1,
  'technolog': 1,
  'univers': 2,
  'work': 1},
 932: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
  'First': 'A',
  'Last': '0',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'apart': 1,
  'attest': 1,
  'collabor': 1,
  'commun': 1,
  'cooper': 1,
  'deposit_made': True,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'graphic': 1,
  'great': 1,
  'high': 1,
  'identity_verified': False,
  'payment_verified': False,
  'person': 1,
  'phone_verified': True,
  'pride': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'rang': 1,
  'review': 1,
  'servic': 1,
  'set': 1,
  'skill': 1,
  'take': 1,
  'transcript': 1,
  'work': 1,
  'write': 1},
 933: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
  'First': 't',
  'Last': '2',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'carrier': 1,
  'case': 1,
  'comput': 1,
  'consid': 1,
  'debug': 1,
  'deposit_made': True,
  'email_verified': True,
  'explor': 1,
  'facebook_connected': False,
  'flow': 1,
  'give': 1,
  'help': 1,
  'identity_verified': False,
  'inspir': 1,
  'interest': 1,
  'knowledg': 1,
  'network': 1,
  'new': 1,
  'optim': 1,
  'payment_verified': True,
  'phone_verified': False,
  'possibl': 1,
  'process': 1,
  'profile_complete': True,
  'program': 1,
  'skill': 1},
 934: {'6': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='Y'>,
  'Digit': None,
  'First': 'Y',
  'Last': 'a',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'brochur': 1,
  'busi': 1,
  'calendar': 1,
  'card': 1,
  'dealt': 1,
  'deposit_made': False,
  'design': 2,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'graphic': 1,
  'identity_verified': False,
  'includ': 1,
  'logo': 1,
  'menu': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'variou': 1,
  'work': 1,
  'year': 1},
 935: {"'m": 3,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'Digit': None,
  'First': 'A',
  'Last': 'x',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
  'advanc': 1,
  'aim': 1,
  'attent': 1,
  'attitud': 1,
  'comfort': 1,
  'creation': 1,
  'cross': 1,
  'css': 1,
  'deposit_made': True,
  'design': 2,
  'desir': 1,
  'detail': 1,
  'develop': 1,
  'developer.i': 1,
  'developmenti': 1,
  'dive': 1,
  'email_verified': True,
  'exist': 1,
  'experienc': 1,
  'eye': 1,
  'facebook_connected': True,
  'featur': 1,
  'focu': 2,
  'freelanc': 3,
  'front-end': 2,
  'grow': 1,
  'highli': 1,
  'html': 1,
  'identity_verified': False,
  'implement': 1,
  'interfac': 1,
  'javascript': 1,
  'keen': 1,
  'latest': 1,
  'learn': 1,
  'locat': 1,
  'look': 2,
  'new': 1,
  'onlin': 1,
  'opportun': 1,
  'part': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': True,
  'platform': 1,
  'posit': 1,
  'profici': 1,
  'profile_complete': True,
  'respons': 1,
  'scss': 1,
  'special': 1,
  'stack': 1,
  'sweden': 1,
  'team-play': 1,
  'technolog': 2,
  'ui': 1,
  'ui-': 1,
  'user': 2,
  'web': 3,
  'work': 3},
 936: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
  'Digit': None,
  'First': 'R',
  'Last': 'T',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'lot': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'time': 1,
  'work': 1},
 937: {'30-40': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 's',
  'Numchar': 16,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'data': 1,
  'deposit_made': True,
  'email_verified': True,
  'entri': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'job': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'speed': 1,
  'two': 1,
  'wpm.i': 1,
  'year': 1},
 938: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
  'First': 'm',
  'Last': '2',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'alway': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': True,
  'field': 1,
  'handl': 1,
  'identity_verified': False,
  'new': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'relat': 1,
  'softwar': 1,
  'things.i': 1,
  'tri': 2,
  'type': 1,
  'websit': 1,
  'whether': 1,
  'work': 1},
 939: {"'m": 1,
  "'re": 1,
  "'s": 2,
  '24': 1,
  'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'w',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'american': 2,
  'born': 1,
  'charg': 1,
  'deal': 1,
  'depend': 1,
  'deposit_made': True,
  'difficult': 1,
  'email_verified': True,
  'english': 1,
  'everyth': 1,
  'facebook_connected': False,
  'get': 1,
  'go': 1,
  'hour': 1,
  'identity_verified': False,
  'journalist': 1,
  'littl': 1,
  'nativ': 2,
  'pay': 1,
  'payment_verified': False,
  'perfect': 1,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'promis': 1,
  'seo': 1,
  'server': 1,
  'speaker': 1,
  'turnaround': 1,
  'work': 2,
  'writer': 1},
 940: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'i',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
  'build': 1,
  'deposit_made': False,
  'email_verified': True,
  'engin': 1,
  'etc': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'link': 1,
  'manag': 1,
  'market': 1,
  'payment_verified': False,
  'phone_verified': False,
  'ppc': 1,
  'profile_complete': True,
  'relat': 1,
  'search': 1,
  'seo': 1,
  'submiss': 1,
  'work': 1,
  'year': 1},
 941: {'10': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'n',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'comput': 3,
  'data': 1,
  'deposit_made': False,
  'design': 1,
  'done': 2,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'last': 1,
  'oper': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'relat': 1,
  'small': 1,
  'work': 3,
  'year': 1},
 942: {"'ve": 1,
  '...': 1,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'a',
  'Numchar': 15,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
  'artist': 1,
  'capabl': 1,
  'commonli': 1,
  'custom': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'experienc': 1,
  'facebook_connected': False,
  'finish': 2,
  'fun': 1,
  'graphic': 1,
  'handl': 1,
  'help': 1,
  'identity_verified': False,
  'job': 1,
  'lot': 1,
  'nice': 1,
  'past': 1,
  'payment_verified': False,
  'per': 1,
  'phone_verified': False,
  'pressur': 1,
  'profile_complete': True,
  'provid': 1,
  'reason': 1,
  'task': 1,
  'that': 1,
  'thing': 1,
  'togeth': 1,
  'use': 1,
  'work': 2,
  'year': 1},
 943: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
  'Digit': <_sre.SRE_Match object; span=(3, 4), match='2'>,
  'First': 'N',
  'Last': 'd',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'copywrit': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'internet': 1,
  'love': 1,
  'music': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'web': 1},
 944: {'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 's',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'comput': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'graduat': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'scienc': 1},
 945: {'4': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
  'First': 'o',
  'Last': '2',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'seo': 1,
  'year': 1},
 946: {'15': 1,
  'Caps': None,
  'Digit': None,
  'First': 'y',
  'Last': 'i',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'base': 1,
  'comput': 1,
  'deposit_made': True,
  'email_verified': True,
  'expertis': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': True,
  'professor': 1,
  'profile_complete': True,
  'scienc': 1,
  'sql': 1,
  'web': 1,
  'year': 1},
 947: {'50': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'activ': 2,
  'anim': 1,
  'book': 1,
  'cartoon': 1,
  'classic': 1,
  'comic': 1,
  'custom': 1,
  'deposit_made': True,
  'design': 1,
  'digit': 1,
  'done': 1,
  'edit': 1,
  'email_verified': True,
  'especi': 1,
  'facebook_connected': False,
  'fast': 1,
  'graphic': 1,
  'identity_verified': False,
  'illustr': 1,
  'job': 1,
  'manag': 1,
  'music': 1,
  'need': 1,
  'parallel': 1,
  'payment_verified': True,
  'phone_verified': True,
  'photo': 1,
  'possibl': 1,
  'princip': 1,
  'profile_complete': True,
  'publish': 1,
  'rel': 1,
  'sever': 1,
  'soon': 1,
  'strip': 1,
  'techniqu': 1,
  'use': 1,
  'video': 1,
  'work': 2},
 948: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='3'>,
  'First': 'g',
  'Last': '0',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'deposit_made': True,
  'email_verified': True,
  'everyon': 1,
  'facebook_connected': False,
  'hello': 1,
  'identity_verified': False,
  'k': 1,
  'onlin': 1,
  'p': 1,
  'payment_verified': True,
  'phone_verified': True,
  'profile_complete': True,
  'servic': 1,
  'support': 1,
  'tri': 1,
  'via': 1,
  'welcom': 1},
 949: {'7': 1,
  'Caps': None,
  'Digit': None,
  'First': 'p',
  'Last': 'b',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'abl': 1,
  'accord': 1,
  'advanc': 1,
  'agil': 1,
  'ajax': 1,
  'angular': 2,
  'api': 1,
  'approach': 1,
  'avail': 1,
  'best': 1,
  'bootstrap': 1,
  'broad': 1,
  'budget': 1,
  'busi': 3,
  'client': 1,
  'code': 1,
  'codeignit': 1,
  'complex': 1,
  'css': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 4,
  'discuss': 1,
  'ebay': 1,
  'email_verified': True,
  'etc': 1,
  'experi': 1,
  'facebook_connected': False,
  'fb': 1,
  'feel': 1,
  'free': 1,
  'gambl': 1,
  'good': 1,
  'googl': 1,
  'grow': 1,
  'handi': 1,
  'help': 2,
  'hi': 1,
  'html': 1,
  'identity_verified': False,
  'integr': 2,
  'ionic': 1,
  'javascript': 1,
  'job': 1,
  'joomla': 1,
  'jqueri': 1,
  'js': 2,
  'like': 1,
  'magento': 1,
  'mobil': 2,
  'mysql': 1,
  "n't": 1,
  'need': 1,
  'network': 1,
  'offer': 1,
  'opencart': 1,
  'payment_verified': False,
  'paypal': 1,
  'phone_verified': False,
  'phonegap': 1,
  'php': 1,
  'profile_complete': True,
  'provid': 2,
  'servic': 2,
  'shoaib': 1,
  'shop': 1,
  'solut': 1,
  'solv': 1,
  'technolog': 1,
  'type': 2,
  'web': 2,
  'websit': 1,
  'wordpress': 1,
  'year': 1,
  'yii': 1,
  'yii2': 1,
  'zencart': 1},
 950: {'5,000': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
  'Digit': None,
  'First': 'R',
  'Last': 'B',
  'Numchar': 3,
  'Vowel': None,
  'attent': 2,
  'attract': 1,
  'audienc': 1,
  'blog': 1,
  'client': 3,
  'come': 1,
  'compani': 1,
  'consist': 1,
  'deposit_made': True,
  'email_verified': True,
  'establish': 2,
  'facebook_connected': False,
  'forward': 1,
  'found': 1,
  'freelanc': 1,
  'full-tim': 1,
  'getafreelanc': 2,
  'grab': 1,
  'help': 1,
  'high': 1,
  'identity_verified': False,
  'impact': 1,
  'inc.': 1,
  'individu': 1,
  'industri': 1,
  'interest': 1,
  'involv': 1,
  'kind': 1,
  'know': 1,
  'long-term': 1,
  'look': 1,
  'major': 1,
  'market': 1,
  'name': 1,
  'new': 2,
  'onlin': 2,
  'past': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'qualiti': 1,
  'relationship': 1,
  'reliabl': 1,
  'reput': 1,
  'retain': 1,
  'sampl': 1,
  'see': 1,
  'take': 1,
  'target': 1,
  'three': 2,
  'use': 1,
  'varieti': 1,
  'web': 1,
  'websit': 1,
  'wide': 1,
  'work': 3,
  'writer': 2,
  'year': 1},
 951: {'5': 1,
  'Caps': None,
  'Digit': None,
  'First': 'd',
  'Last': 'n',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'almost': 1,
  'also': 1,
  'alway': 1,
  'bootstrap': 1,
  'browser': 1,
  'capabl': 1,
  'code': 1,
  'content': 1,
  'css3': 1,
  'deposit_made': False,
  'design': 1,
  'develop': 3,
  'differ': 1,
  'email_verified': True,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'factor': 1,
  'focus': 1,
  'html': 1,
  'identity_verified': False,
  'independ': 1,
  'jqueri': 1,
  'keep': 1,
  'mind': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'product': 1,
  'profile_complete': True,
  'refere': 1,
  'speak': 1,
  'standard': 2,
  'tool': 1,
  'w3c': 1,
  'web': 2,
  'websit': 1,
  'work': 1,
  'year': 1},
 952: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'k',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'applic': 1,
  'are:1.': 1,
  'area': 1,
  'campu': 1,
  'data': 1,
  'deposit_made': True,
  'development3': 1,
  'email_verified': True,
  'etl': 1,
  'expertis': 1,
  'facebook_connected': False,
  'identity_verified': True,
  'payment_verified': True,
  'peoplesoft': 1,
  'phone_verified': True,
  'profile_complete': True,
  'solut': 1,
  'websit': 1},
 953: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(2, 3), match='3'>,
  'First': 'm',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'actual': 1,
  'also': 1,
  'android': 1,
  'command': 1,
  'deposit_made': True,
  'email_verified': True,
  'expertis': 1,
  'facebook_connected': True,
  'good': 1,
  'hello': 1,
  'identity_verified': False,
  'implement': 1,
  'iphon': 1,
  'job': 1,
  'jqueri': 1,
  'knowledg': 1,
  'learn': 2,
  'libgdx': 1,
  'like': 1,
  'mamun': 1,
  'mysql': 1,
  'payment_verified': False,
  'phone_verified': False,
  'phonegap': 1,
  'photoshop': 1,
  'php': 1,
  'profile_complete': True,
  'program': 1,
  'want': 1},
 954: {'2': 1,
  '4': 1,
  'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'l',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'around': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'framework': 1,
  'hibern': 1,
  'identity_verified': False,
  'java': 1,
  'jsf': 1,
  'knowledg': 1,
  'like': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'spring': 1,
  'strut': 1,
  'web': 2,
  'year': 1},
 955: {"'m": 1,
  "'s": 1,
  '5': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
  'Digit': None,
  'First': 'B',
  'Last': 'e',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'area': 2,
  'around': 1,
  'compani': 3,
  'contribut': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'employ': 2,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'field': 1,
  'great': 1,
  'hello': 1,
  'hire': 1,
  'identity_verified': False,
  'increas': 1,
  'knowledg': 1,
  'mani': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'profit': 1,
  'provid': 1,
  'readi': 1,
  'skill': 1,
  'substanti': 1,
  'today': 1,
  'web': 1,
  'work': 1,
  'world': 1,
  'year': 1},
 956: {'2017': 3,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(10, 11), match='8'>,
  'First': 'f',
  'Last': '6',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
  'also': 1,
  'architect': 1,
  'basic': 1,
  'calcul': 1,
  'conceptu': 1,
  'deposit_made': True,
  'design': 3,
  'detail': 1,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': True,
  'friend': 1,
  'hello': 1,
  'identity_verified': True,
  'inventor': 1,
  'kind': 1,
  'knowledg': 1,
  'name': 1,
  'naval': 1,
  'need': 1,
  'payment_verified': False,
  'phone_verified': True,
  'pro': 1,
  'profession': 1,
  'profile_complete': True,
  'provid': 1,
  'rhino': 1,
  'servic': 1,
  'simul': 1,
  'sketch': 1,
  'softwar': 1,
  'solidwork': 1,
  'start': 1},
 957: {"'m": 3,
  "'ve": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
  'Digit': None,
  'First': 'B',
  'Last': 'o',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'account': 1,
  'activ': 1,
  'advertis': 1,
  'ago': 2,
  'anyth': 1,
  'area': 1,
  'australia': 1,
  'built': 1,
  'channel': 1,
  'cheer': 1,
  'contact': 1,
  'creation': 1,
  'creativ': 1,
  'deadlin': 1,
  'deposit_made': True,
  'design': 1,
  'detail': 2,
  'differ': 1,
  'email_verified': True,
  'english': 1,
  'experi': 1,
  'extens': 1,
  'facebook_connected': True,
  'field': 1,
  'film': 2,
  'freelanc': 2,
  'gussysound': 2,
  'happi': 1,
  'hello': 1,
  'identity_verified': False,
  'includ': 1,
  'love': 1,
  'made': 1,
  'main': 1,
  'mean': 1,
  'mix': 1,
  'music': 2,
  "n't": 2,
  'need': 1,
  'new': 2,
  'payment_verified': True,
  'phone_verified': True,
  'pleas': 1,
  'post': 1,
  'pressur': 1,
  'product': 2,
  'profile_complete': True,
  'project': 1,
  'quiet': 1,
  'radio': 1,
  'record': 1,
  'sampl': 1,
  'screen': 1,
  'show': 1,
  'small': 1,
  'sound': 5,
  'specialis': 1,
  'still': 1,
  'studio': 2,
  'tv': 2,
  'voiceov': 1,
  'web': 1,
  'work': 3,
  'would': 1,
  'year': 2},
 958: {'2010': 1,
  '3d': 1,
  'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'x',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'agreement': 1,
  'client': 1,
  'compens': 1,
  'complet': 1,
  'convert': 1,
  'deposit': 1,
  'deposit_made': False,
  'design': 2,
  'desktop': 2,
  'document': 1,
  'domain': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'flash': 1,
  'govern': 1,
  'graphic': 2,
  'half': 1,
  'hardwar': 1,
  'host': 1,
  'identity_verified': False,
  'intro': 1,
  'mike': 1,
  'model': 1,
  'name': 1,
  'offer': 1,
  'payment_verified': False,
  'paypal': 1,
  'phone_verified': False,
  'privat': 1,
  'profile_complete': True,
  'project': 1,
  'provid': 1,
  'publish': 2,
  'requir': 1,
  'sector': 1,
  'softwar': 1,
  'support': 1,
  'ten': 1,
  'total': 1,
  'train': 1,
  'web': 2,
  'websit': 1,
  'year': 1},
 959: {"'m": 1,
  "'ve": 2,
  'Caps': None,
  'Digit': None,
  'First': 't',
  'Last': 'a',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'bangladesh': 1,
  'complet': 1,
  'comput': 1,
  'degre': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'freelanc': 1,
  'good': 1,
  'graduat': 1,
  'hi': 1,
  'honest': 1,
  'identity_verified': False,
  'knowledg': 1,
  'mr.': 1,
  'payment_verified': False,
  'phone_verified': False,
  'post': 1,
  'profile_complete': True,
  'want': 1},
 960: {'Caps': None,
  'Digit': None,
  'First': 'o',
  'Last': 'r',
  'Numchar': 11,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
  'advoc': 2,
  'aim': 1,
  'benefit': 1,
  'client': 1,
  'deposit_made': True,
  'elev': 1,
  'email_verified': True,
  'enjoy': 1,
  'facebook_connected': False,
  'get': 1,
  'greater': 1,
  'identity_verified': False,
  'institut': 1,
  'invest': 1,
  'joy': 1,
  'make': 1,
  'payment_verified': False,
  'peopl': 1,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'see': 1,
  'sure': 1,
  'valu': 2,
  'work': 1,
  'write': 2,
  'writer': 1,
  'written': 1},
 961: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
  'Digit': None,
  'First': 'C',
  'Last': 'y',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'access': 1,
  'arm': 1,
  'attend': 1,
  'control': 1,
  'deposit_made': False,
  'detector': 1,
  'develop': 1,
  'dsp': 1,
  'email_verified': True,
  'etc': 1,
  'facebook_connected': False,
  'ga': 1,
  'identity_verified': False,
  'lock': 1,
  'microcontrol': 1,
  'msp430': 1,
  'payment_verified': False,
  'phone_verified': False,
  'platform': 1,
  'profile_complete': True,
  'program': 1,
  'safe': 1,
  'time': 1,
  'use': 1},
 962: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(1, 2), match='2'>,
  'First': 'e',
  'Last': 'n',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'administr': 2,
  'applic': 2,
  'area': 1,
  'base': 1,
  'comput': 1,
  'databas': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': True,
  'ibm': 1,
  'identity_verified': False,
  'internet': 1,
  'like': 1,
  'linux': 2,
  'network': 2,
  'offic': 1,
  'oracl': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'relat': 1,
  'server': 3,
  'skill': 1,
  'storag': 1,
  'system': 1,
  'troubleshoot': 1,
  'window': 1},
 963: {'4': 1,
  '9': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(3, 4), match='1'>,
  'First': 't',
  'Last': '3',
  'Numchar': 6,
  'Vowel': None,
  'across': 1,
  'adword': 1,
  'also': 1,
  'bing': 1,
  'busi': 1,
  'campaign': 1,
  'client': 1,
  'clients.i': 1,
  'close': 1,
  'deposit_made': True,
  'ecommerc': 1,
  'email_verified': True,
  'facebook': 1,
  'facebook_connected': False,
  'googl': 1,
  'identity_verified': False,
  'manag': 1,
  'mani': 1,
  'market': 1,
  'media': 1,
  'payment_verified': False,
  'phone_verified': True,
  'ppc': 1,
  'profile_complete': True,
  'self': 1,
  'sem': 1,
  'seo': 1,
  'shopifi': 1,
  'sinc': 2,
  'social': 1,
  'starter': 1,
  'success': 1,
  'work': 2,
  'world': 1,
  'year': 2},
 964: {"'s": 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'i',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'hobbi': 1,
  'identity_verified': False,
  'love': 1,
  'passion': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'profess': 1,
  'profile_complete': True,
  'work': 1},
 965: {'2008': 1,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'r',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'ajax': 1,
  'align': 1,
  'also': 1,
  'angularj': 1,
  'api': 2,
  'applic': 2,
  'backbonej': 1,
  'base': 2,
  'bitbucket': 1,
  'build': 1,
  'c': 1,
  'c++': 1,
  'cakephp': 1,
  'challeng': 1,
  'clean': 1,
  'cloud': 1,
  'code': 2,
  'codeignit': 1,
  'compet': 1,
  'concentr': 1,
  'core': 1,
  'css3': 1,
  'databas': 1,
  'demonstr': 1,
  'deposit_made': False,
  'desktop': 1,
  'develop': 4,
  'effici': 1,
  'email_verified': True,
  'emberj': 1,
  'end': 1,
  'enthusiast': 1,
  'execut': 1,
  'experi': 1,
  'experienc': 1,
  'facebook_connected': False,
  'familiar': 1,
  'fluent': 1,
  'framework': 1,
  'front': 1,
  'git': 1,
  'googl': 1,
  'hobbi': 1,
  'html5': 1,
  'identity_verified': False,
  'implement': 1,
  'includ': 1,
  'integr': 1,
  'interact': 1,
  'interest': 1,
  'java': 1,
  'jqueri': 1,
  'languag': 2,
  'larg': 1,
  'love': 1,
  'manag': 2,
  'mobil': 1,
  'mssql': 1,
  'mvc': 1,
  'mysql': 1,
  'new': 1,
  'nodej': 1,
  'one': 2,
  'other': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'problem': 1,
  'profile_complete': True,
  'python': 1,
  'quick': 1,
  'rdbm': 1,
  'recent': 2,
  'relat': 1,
  'rest': 1,
  'script': 1,
  'similar': 1,
  'sinc': 1,
  'skill': 2,
  'small': 1,
  'solv': 1,
  'soon': 1,
  'sourc': 2,
  'strong': 1,
  'svn': 1,
  'system': 1,
  'task': 1,
  'technolog': 1,
  'tortois': 1,
  'toward': 1,
  'use': 1,
  'variou': 1,
  'vb': 1,
  'web': 1,
  'whmc': 1,
  'wordpress': 1,
  'work': 1,
  'zend': 1},
 966: {'...': 1,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'a',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'analyt': 1,
  'anyth': 1,
  'databas': 2,
  'debug': 1,
  'deposit_made': True,
  'els': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'framework': 1,
  'help': 1,
  'identity_verified': False,
  'includ': 1,
  'individu': 1,
  'manag': 1,
  'mysql': 1,
  'oop': 1,
  'optim': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 2,
  'profile_complete': True,
  'program': 2,
  'servic': 1,
  'skill': 5,
  'strong': 2,
  'web': 1,
  'xml': 1,
  'year': 1},
 967: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='G'>,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='7'>,
  'First': 'G',
  'Last': '7',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'acm': 1,
  'address': 1,
  'adob': 1,
  'advertis': 1,
  'alway': 1,
  'applic': 1,
  'band': 1,
  'big': 1,
  'bryan': 1,
  'buffett': 2,
  'cabl': 1,
  'client': 1,
  'comput': 1,
  'creativ': 1,
  'cs5': 4,
  'cynthia': 1,
  'deadlin': 1,
  'deposit_made': False,
  'design': 2,
  'dreamweav': 1,
  'eddi': 1,
  'educ': 1,
  'email_verified': True,
  'enabl': 1,
  'entrepreneur': 1,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'fluent': 1,
  'focu': 1,
  'gain': 1,
  'graphic': 1,
  'hall': 1,
  'houston': 1,
  'identity_verified': False,
  'illustr': 1,
  'indesign': 1,
  'industry-standard': 1,
  'innov': 1,
  'jimmi': 1,
  'john': 1,
  'keith': 1,
  'knowledg': 3,
  'layout': 1,
  'lifestyl': 1,
  'lift': 1,
  'live': 1,
  'love': 1,
  'luke': 2,
  'mac': 1,
  'machin': 1,
  'margaritavil': 3,
  'margarittvil': 2,
  'may': 1,
  'meet': 1,
  'microsoft': 1,
  'money': 1,
  'multipl': 1,
  'need': 1,
  'offic': 1,
  'outdoor': 1,
  'payment_verified': False,
  'person': 1,
  'phil': 1,
  'phone_verified': False,
  'photoshop': 1,
  'platform': 1,
  'prepress': 1,
  'pride': 1,
  'principl': 1,
  'print': 1,
  'processes.i': 1,
  'produc': 1,
  'product': 1,
  'profile_complete': True,
  'project': 1,
  'radio': 1,
  'record': 2,
  'retail': 1,
  'savannah': 1,
  'softwar': 1,
  'st': 1,
  'stone': 1,
  'take': 1,
  'theft': 1,
  'trent': 1,
  'understand': 1,
  'uniqu': 1,
  'variou': 1,
  'view': 1,
  'walker': 1,
  'websit': 1,
  'well': 1,
  'window': 1,
  'wood': 1,
  'work': 2},
 968: {'7': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
  'First': 'p',
  'Last': '1',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'email_verified': True,
  'experienc': 1,
  'facebook_connected': False,
  'framework': 1,
  'hello': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profession': 1,
  'profile_complete': True,
  'variou': 1,
  'wordpress': 1,
  'year': 1},
 969: {"'ll": 1,
  "'m": 1,
  '...': 5,
  'Caps': None,
  'Digit': None,
  'First': 'n',
  'Last': 'n',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'actual': 2,
  'applic': 1,
  'becom': 1,
  'best': 2,
  'call': 4,
  'deposit_made': True,
  'dream': 1,
  'email_verified': True,
  'facebook_connected': False,
  'famili': 1,
  'famou': 1,
  'filmmak': 1,
  'first': 1,
  'foremost': 1,
  'friend': 2,
  'geek': 3,
  'get': 1,
  'girlfriend': 1,
  'good': 3,
  'hand': 1,
  'identity_verified': False,
  'left': 1,
  'littl': 1,
  'one': 2,
  'parent': 1,
  'partner': 1,
  'payment_verified': True,
  'perfect': 1,
  'person': 1,
  'phone_verified': True,
  'pixel': 2,
  'pride': 1,
  'profile_complete': True,
  'push': 1,
  'pusher': 1,
  'right': 1,
  'spend': 1,
  'time': 3,
  'tri': 3,
  'well': 1,
  'whatev': 2,
  'young': 1},
 970: {'5+': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(9, 10), match='4'>,
  'First': 'b',
  'Last': '4',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
  'applic': 1,
  'arrang': 1,
  'asp.net*': 1,
  'c': 1,
  'chanc': 1,
  'css*': 1,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'excel': 2,
  'experi': 1,
  'expertis': 1,
  'facebook_connected': False,
  'give': 1,
  'hi': 1,
  'html*': 1,
  'identity_verified': False,
  'java': 1,
  'manag': 1,
  'ms': 1,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'project': 1,
  'prove': 1,
  'qualiti': 1,
  'us': 1,
  'vb.net': 1,
  'web/desktop': 1,
  'wordpress*': 1,
  'work': 1,
  'year': 1},
 971: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='9'>,
  'First': 'a',
  'Last': '5',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'entri': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'name': 1,
  'onlin': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'sharma': 1,
  'work': 2},
 972: {'5yr': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'a',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'banner': 1,
  'brainstorm': 1,
  'brand': 1,
  'check': 1,
  'consum': 1,
  'deposit_made': False,
  'design': 4,
  'edit': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'field': 2,
  'format': 1,
  'furnitur': 2,
  'good': 1,
  'graphic': 1,
  'hand': 1,
  'heavi': 1,
  'hi': 1,
  'identity_verified': False,
  'kind': 2,
  'let': 1,
  'light': 1,
  'logic': 1,
  'logo': 1,
  'love': 2,
  'machineri': 1,
  'mani': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'problem': 1,
  'product': 1,
  'profile_complete': True,
  'project': 2,
  'projects.i': 1,
  'relat': 2,
  'sketch': 1,
  'solv': 1,
  'thing': 1,
  'time': 1,
  'tri': 1,
  'vector': 1,
  'work': 2},
 973: {'2005': 1,
  '3.0': 1,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'l',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'actionscript': 1,
  'agil': 1,
  'air': 1,
  'ask': 1,
  'believ': 1,
  'commun': 1,
  'confid': 1,
  'creat': 2,
  'css2': 1,
  'css3': 1,
  'deposit_made': True,
  'develop': 3,
  'email_verified': True,
  'environ': 1,
  'espa\\xc3\\xb1ol': 1,
  'facebook_connected': True,
  'flash': 2,
  'flex': 1,
  'goal': 1,
  'good': 1,
  'guidanc': 1,
  'help': 2,
  'html4': 1,
  'html5': 2,
  'identity_verified': False,
  'improv': 2,
  'ingl\\xc3\\xa9': 1,
  'interfac': 1,
  'javascript': 2,
  'jqueri': 1,
  'leadership': 1,
  'main': 1,
  'mani': 1,
  'methodolog': 1,
  'motiv': 1,
  'multicultur': 1,
  'multidisciplinari': 1,
  'need': 1,
  'payment_verified': True,
  'perform': 1,
  'phone_verified': True,
  'php': 2,
  'product': 1,
  'profile_complete': True,
  'provid': 1,
  'qualiti': 1,
  'rich': 1,
  'self-taught': 1,
  'sinc': 1,
  'skill': 1,
  'solid': 1,
  'standard': 1,
  'strength': 1,
  'team': 3,
  'tie': 1,
  'use': 1,
  'user': 1,
  'web': 3,
  'work': 2,
  'year': 1},
 974: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'r',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
  'applic': 1,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'india': 1,
  'mobil': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'wed': 1},
 975: {'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'f',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'deposit_made': False,
  'develop': 1,
  'email_verified': True,
  'excel': 1,
  'facebook_connected': True,
  'identity_verified': False,
  'illustr': 1,
  'ms': 1,
  'oracl': 1,
  'payment_verified': False,
  'phone_verified': False,
  'photoshop': 1,
  'profile_complete': True,
  'word': 1},
 976: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
  'First': 's',
  'Last': '4',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
  'applic': 1,
  'deposit_made': True,
  'email_verified': True,
  'facebook_connected': True,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': True,
  'power': 1,
  'profile_complete': True,
  'readi': 1,
  'serv': 1,
  'web': 1,
  'yii': 1},
 977: {'15': 1,
  '8': 1,
  'Caps': None,
  'Digit': None,
  'First': 'g',
  'Last': 'e',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'combin': 1,
  'deposit_made': True,
  'design': 1,
  'email_verified': True,
  'experi': 1,
  'facebook_connected': False,
  'graphic': 1,
  'identity_verified': False,
  'internet': 1,
  'marketing.w': 1,
  'payment_verified': True,
  'peopl': 1,
  'phone_verified': False,
  'php': 2,
  'profile_complete': True,
  'program': 1,
  'seo': 1,
  'skill': 1,
  'team': 1,
  'wordpress': 2,
  'year': 1},
 978: {'15': 1,
  'Caps': None,
  'Digit': None,
  'First': 's',
  'Last': 'e',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
  'becom': 1,
  'busi': 2,
  'deposit_made': True,
  'email_verified': True,
  'error': 1,
  'extrem': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'load': 1,
  'onlin': 2,
  'payment_verified': False,
  'phone_verified': True,
  'profici': 1,
  'profile_complete': True,
  'trial': 1,
  'year': 1},
 979: {'**': 1,
  '--': 4,
  '200': 1,
  '2004': 1,
  '2006': 1,
  'Caps': None,
  'Digit': None,
  'First': 'e',
  'Last': 't',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'adword': 1,
  'also': 1,
  'android': 1,
  'app': 3,
  'beauti': 1,
  'best': 1,
  'chang': 1,
  'code': 1,
  'convert': 1,
  'css': 1,
  'custom': 1,
  'deposit_made': True,
  'develop': 2,
  'drupal': 1,
  'ecommerc': 1,
  'email_verified': True,
  'engin': 1,
  'ensur': 1,
  'ethic': 1,
  'even': 1,
  'facebook_connected': False,
  'first': 1,
  'guarante': 2,
  'happi': 2,
  'highli': 2,
  'hire': 1,
  'html': 1,
  'identity_verified': False,
  'integr': 1,
  'internet': 1,
  'io': 1,
  'javascript': 1,
  'joomla': 1,
  'jqueri': 1,
  'laser': 1,
  'lead': 1,
  'learner': 1,
  'like': 1,
  'list': 1,
  'listen': 1,
  'made': 2,
  'magento': 1,
  'mani': 1,
  'market': 2,
  'mysql': 1,
  'neither': 1,
  'opencart': 1,
  'payment_verified': True,
  'peopl': 1,
  'phone_verified': True,
  'php': 1,
  'prefer': 1,
  'prestashop': 1,
  'profession': 1,
  'profile_complete': True,
  'rank': 1,
  'rapidli': 1,
  'search': 1,
  'seo': 1,
  'sinc': 1,
  'site': 1,
  'smm': 1,
  'start': 1,
  'still': 1,
  'store': 1,
  'target': 1,
  'team': 1,
  'technolog': 1,
  'thing': 2,
  'top': 1,
  'tri': 1,
  'use': 1,
  'user': 1,
  'vb': 1,
  'web': 2,
  'websit': 1,
  'well': 1,
  'woocommerc': 1,
  'wordpress': 1,
  'work': 1,
  'zencart': 1},
 980: {'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
  'Digit': None,
  'First': 'K',
  'Last': 't',
  'Numchar': 7,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'area': 1,
  'brand': 1,
  'code': 1,
  'cs5': 1,
  'deposit_made': False,
  'design': 3,
  'develop': 2,
  'dreamweav': 2,
  'email_verified': True,
  'facebook_connected': False,
  'firework': 1,
  'form': 1,
  'graphic': 1,
  'identity_verified': False,
  'illustr': 1,
  'independ': 1,
  'joomla': 1,
  'logo': 1,
  'medium': 1,
  'mysql': 1,
  'part': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'php': 1,
  'portfolio': 1,
  'ppc': 1,
  'primari': 1,
  'profile_complete': True,
  'secur': 1,
  'sem': 1,
  'seo': 1,
  'site': 2,
  'strongest': 1,
  'team': 1,
  'use': 2,
  'web': 1,
  'work': 1,
  'written': 1},
 981: {"'ll": 1,
  '6': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
  'First': 'e',
  'Last': 'j',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
  'also': 2,
  'angularj': 1,
  'app': 1,
  'autom': 1,
  'back-end': 1,
  'bootstrap': 1,
  'build': 1,
  'css': 1,
  'deposit_made': False,
  'develop': 1,
  'differ': 1,
  'done': 1,
  'either': 1,
  'email_verified': True,
  'experi': 1,
  'expressj': 1,
  'facebook_connected': False,
  'front-end': 1,
  'full-tim': 1,
  'get': 1,
  'host': 1,
  'html5': 1,
  'identity_verified': False,
  'javascript': 1,
  'librari': 1,
  'manag': 1,
  'mani': 1,
  'manual': 1,
  'need': 1,
  'node.j': 1,
  'offer': 2,
  'opencart': 1,
  'organ': 1,
  'payment_verified': False,
  'phone_verified': True,
  'php': 1,
  'profession': 1,
  'profile_complete': True,
  'solut': 1,
  'special': 1,
  'technolog': 1,
  'test': 1,
  'variou': 1,
  'vp': 1,
  'web': 4,
  'websit': 1,
  'wordpress': 1,
  'work': 1,
  'year': 1},
 982: {"'m": 2,
  '50': 1,
  '6': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
  'First': 'a',
  'Last': '9',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'account': 1,
  'also': 2,
  'board': 1,
  'captcha': 1,
  'chanc': 1,
  'compani': 1,
  'cpa': 1,
  'data': 2,
  'deposit_made': False,
  'email_verified': True,
  'entri': 1,
  'even': 1,
  'everyon': 1,
  'exam': 1,
  'experi': 1,
  'facebook_connected': False,
  'financ': 1,
  'follow': 1,
  'free': 1,
  'freelanc': 1,
  'full': 1,
  'gaf': 1,
  'give': 1,
  'graduat': 1,
  'hard': 1,
  'hope': 1,
  'hour': 1,
  'identity_verified': False,
  'instruct': 1,
  'manag': 1,
  'newbi': 1,
  'payment_verified': False,
  'perfectionist': 1,
  'phone_verified': False,
  'plan': 2,
  'plenti': 1,
  'previou': 1,
  'privat': 1,
  'profile_complete': True,
  'review': 1,
  'take': 1,
  'thank': 1,
  'though': 1,
  'time': 1,
  'welcom': 1,
  'work': 3,
  'wpm': 1,
  'year': 1},
 983: {"'m": 2,
  '.\\xe2\\u0153\\u201c': 3,
  '10+': 1,
  '1000+': 1,
  '12': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'r',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  '\\xe2\\u0153\\u201c': 1,
  'ad': 1,
  'adob': 2,
  'anim': 4,
  'banner': 1,
  'brochur': 1,
  'bulk': 1,
  'busi': 1,
  'canva': 1,
  'card': 1,
  'client': 1,
  'complet': 2,
  'convers': 3,
  'css3': 1,
  'deposit_made': True,
  'design': 7,
  'develop': 1,
  'edg': 1,
  'email': 1,
  'email_verified': True,
  'expert': 1,
  'facebook_connected': True,
  'file': 1,
  'finish': 4,
  'first': 1,
  'flash': 1,
  'flyer': 1,
  'freelanc': 1,
  'hard': 1,
  'html5': 2,
  'identity_verified': True,
  'imposs': 1,
  'javascript': 1,
  'journey': 1,
  'land': 1,
  'long': 1,
  'long-term': 1,
  'mani': 1,
  'me.i': 1,
  'media': 1,
  'newslett': 1,
  'noth': 1,
  'page': 1,
  'partnership': 1,
  'passion': 1,
  'payment_verified': True,
  'pdf': 1,
  'phone_verified': True,
  'platform': 1,
  'poster': 1,
  'present': 1,
  'print': 1,
  'profession': 1,
  'profile_complete': True,
  'project': 3,
  'rich': 1,
  'satisfact': 1,
  'special': 1,
  'success': 1,
  'svg': 1,
  'swf': 1,
  'take': 1,
  'team': 1,
  'websit': 1,
  'work': 2,
  'year': 1},
 984: {'12': 1,
  'Caps': None,
  'Digit': None,
  'First': 'c',
  'Last': 'u',
  'Numchar': 6,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'ad': 1,
  'adob': 2,
  'aftereffect': 1,
  'agenc': 1,
  'also': 1,
  'anim': 1,
  'anyth': 1,
  'around': 1,
  'asset': 1,
  'autodesk': 1,
  'avail': 1,
  'becam': 1,
  'budget': 1,
  'complet': 1,
  'cours': 1,
  'creation': 1,
  'day': 2,
  'deposit_made': False,
  'design': 2,
  'develop': 1,
  'e-learn': 1,
  'edit': 1,
  'els': 1,
  'email_verified': True,
  'enjoy': 1,
  'everyon': 1,
  'experi': 1,
  'explain': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'full-tim': 1,
  'glad': 1,
  'graphic': 2,
  'identity_verified': False,
  'intern': 1,
  'intro': 1,
  'like': 1,
  'line': 1,
  'logo': 1,
  'maxon': 1,
  'maya': 1,
  'motion': 2,
  'much': 2,
  'network': 1,
  'next': 1,
  'night': 1,
  'normal': 1,
  'one': 1,
  'payment_verified': False,
  'phone_verified': True,
  'photoshop': 1,
  'plan': 1,
  'pretti': 1,
  'produc': 1,
  'profile_complete': True,
  'project': 3,
  'relat': 1,
  'research': 1,
  'rockstar': 1,
  'schedul': 1,
  'special': 1,
  'storyboard': 1,
  'style': 1,
  'talk': 1,
  'that\\xe2\\u20ac\\u2122': 1,
  'throughout': 1,
  'train': 1,
  'tv': 1,
  'video': 4,
  'within': 1,
  'work': 3,
  'year': 2},
 985: {'3': 1,
  'Caps': None,
  'Digit': None,
  'First': 'b',
  'Last': 't',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'add': 1,
  'also': 1,
  'anoth': 1,
  'back': 1,
  'built': 1,
  'client': 2,
  'deposit_made': True,
  'develop': 1,
  'email_verified': True,
  'end': 1,
  'environ': 1,
  'facebook_connected': False,
  'freelanc': 1,
  'function': 1,
  'good': 1,
  'identity_verified': False,
  'jqueri': 1,
  'like': 3,
  'mani': 3,
  'mysql': 1,
  'onlin': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 2,
  'php/mysql': 1,
  'profile_complete': True,
  'reput': 1,
  'satisfi': 1,
  'servic': 1,
  'side': 1,
  'site': 1,
  'use': 2,
  'web': 1,
  'websit': 1,
  'work': 4,
  'year': 1},
 986: {'Caps': None,
  'Digit': None,
  'First': 'r',
  'Last': 'l',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
  'applic': 1,
  'asp': 1,
  'bachelor': 1,
  'basic': 1,
  'comput': 1,
  'degre': 1,
  'deposit_made': False,
  'desktop': 1,
  'email_verified': True,
  'facebook_connected': True,
  'g.': 1,
  'graduat': 1,
  'identity_verified': False,
  'payment_verified': False,
  'phone_verified': False,
  'php': 1,
  'profile_complete': True,
  'respect': 1,
  'scienc': 2,
  'special': 1,
  'use': 1,
  'visual': 1,
  'web': 1},
 987: {'...': 1,
  '1': 1,
  '100': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'f',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'auto': 1,
  'cad': 1,
  'captur': 1,
  'cheapest': 1,
  'convers': 1,
  'currenc': 1,
  'current': 1,
  'deposit_made': True,
  'diet': 1,
  'email_verified': True,
  'etc': 1,
  'excel': 1,
  'experi': 1,
  'facebook_connected': False,
  'follow': 1,
  'hat': 1,
  'identity_verified': False,
  'lanka': 1,
  'lankan': 1,
  'payment_verified': True,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'provid': 1,
  'qualiti': 1,
  'rv': 1,
  'sale': 1,
  'seo': 1,
  'servic': 1,
  'sheet': 1,
  'sri': 2,
  'team': 1,
  'technolog': 1,
  'us': 1,
  'white': 1,
  'work': 2},
 988: {'Caps': None,
  'Digit': None,
  'First': 'w',
  'Last': 'p',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'android': 1,
  'applic': 4,
  'best': 1,
  'care': 1,
  'contact': 1,
  'cross': 1,
  'deposit_made': False,
  'detail': 1,
  'develop': 3,
  'email_verified': True,
  'entertain': 1,
  'expertis': 1,
  'extj': 1,
  'facebook_connected': False,
  'health': 1,
  'html5': 1,
  'identity_verified': False,
  'industri': 2,
  'j2ee': 1,
  'limit': 1,
  'meet': 1,
  'mobil': 2,
  'mysql': 1,
  'passion': 2,
  'payment_verified': False,
  'phone_verified': False,
  'phonegap': 1,
  'platform': 1,
  'profile_complete': True,
  'program': 1,
  'push': 1,
  'requir': 1,
  'sencha': 1,
  'serv': 1,
  'sever': 1,
  'special': 1,
  'sqllite': 1,
  'team': 1,
  'technic': 1,
  'technolog': 1,
  'till': 2,
  'titanium': 1,
  'touch': 1,
  'us': 2,
  'web': 2,
  'whose': 1,
  'work': 1},
 989: {"'ve": 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'Digit': None,
  'First': 'I',
  'Last': 'u',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
  'compet': 1,
  'complet': 1,
  'contact': 1,
  'cours': 1,
  'deposit_made': True,
  'email_verified': True,
  'enabl': 1,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'identity_verified': False,
  'improv': 1,
  'increas': 1,
  'level': 1,
  'look': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profession': 1,
  'profile_complete': True,
  'spanish': 1,
  'subject': 1,
  'thank': 1,
  'translat': 1,
  'work': 1},
 990: {'20': 1,
  'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
  'Digit': None,
  'First': 'R',
  'Last': 'z',
  'Numchar': 12,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'accord': 1,
  'also': 1,
  'civil': 2,
  'cost': 1,
  'deposit_made': False,
  'draw': 1,
  'email_verified': True,
  'estim': 1,
  'experi': 1,
  'facebook_connected': False,
  'field': 1,
  'identity_verified': False,
  'market': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'quantiti': 1,
  'rate': 1,
  'work': 1,
  'year': 1},
 991: {'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'a',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'abil': 1,
  'adapt': 2,
  'administr': 1,
  'area': 1,
  'backup': 3,
  'central': 1,
  'challeng': 1,
  'citrix': 1,
  'commerc': 1,
  'commun': 1,
  'configur': 1,
  'constantli': 1,
  'core': 1,
  'deposit_made': False,
  'design': 1,
  'dhcp': 1,
  'directori': 1,
  'dynam': 1,
  'email_verified': True,
  'engin': 1,
  'environ': 1,
  'exec': 2,
  'experi': 1,
  'facebook_connected': False,
  'file': 1,
  'ftp': 1,
  'function': 1,
  'greatest': 1,
  'handi': 1,
  'http': 2,
  'identity_verified': False,
  'immedi': 1,
  'isa': 1,
  'learn': 1,
  'new': 2,
  'obtain': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': False,
  'posit': 1,
  'profile_complete': True,
  'program': 1,
  'project': 1,
  'quick': 1,
  'revit': 1,
  'rout': 1,
  'server': 4,
  'servermicrosoft': 3,
  'sharepoint': 1,
  'situat': 1,
  'skill': 1,
  'sql': 1,
  'strength': 1,
  'symantec': 1,
  'system': 1,
  'use': 2,
  'vmware': 1,
  'vpn': 1,
  'walk': 1,
  'web': 1,
  'win': 1},
 992: {'Caps': None,
  'Digit': None,
  'First': 'q',
  'Last': 'x',
  'Numchar': 3,
  'Vowel': None,
  'advis': 1,
  'analysi': 1,
  'data': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'identity_verified': False,
  'methodolog': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'provid': 1,
  'research': 1,
  'statist': 2,
  'teach': 1},
 993: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
  'First': 's',
  'Last': '7',
  'Numchar': 13,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'current': 1,
  'deposit_made': True,
  'electr': 1,
  'email_verified': True,
  'engin': 1,
  'facebook_connected': False,
  'graduat': 1,
  'identity_verified': False,
  'limit': 1,
  'master': 1,
  'payment_verified': False,
  'phone_verified': True,
  'profile_complete': True,
  'usc': 1,
  'work': 1},
 994: {'...': 1,
  '8+': 1,
  'Caps': None,
  'Digit': None,
  'First': 'a',
  'Last': 'r',
  'Numchar': 14,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'along': 1,
  'also': 1,
  'b': 3,
  'brochur': 1,
  'c': 2,
  'cake': 1,
  'code': 1,
  'content': 1,
  'core': 1,
  'custom': 2,
  'deposit_made': False,
  'design': 2,
  'designing3': 1,
  'e-commerc': 1,
  'email_verified': True,
  'experi': 2,
  'facebook_connected': False,
  'follow': 1,
  'good': 1,
  'hear': 1,
  'hello': 1,
  'help': 1,
  'html4': 1,
  'identity_verified': True,
  'ignit': 1,
  'linish': 2,
  'logo': 1,
  'look': 1,
  'magento': 1,
  'manag': 1,
  'opencart': 1,
  'opensourc': 1,
  'oscommerce6': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 1,
  'php5': 1,
  'plugin': 1,
  'profile_complete': True,
  'program': 1,
  'programm': 1,
  'soon': 1,
  'system': 1,
  'team': 1,
  'technologies.i': 1,
  'web': 1,
  'wordpress': 1,
  'year': 1},
 995: {'.i': 1,
  '35': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
  'First': 'a',
  'Last': '1',
  'Numchar': 9,
  'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
  'bsc': 1,
  'comput': 1,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'graduat': 1,
  'identity_verified': False,
  'know': 1,
  'ms': 1,
  'offic': 1,
  'payment_verified': False,
  'pdf': 1,
  'phone_verified': False,
  'profile_complete': True,
  'scienc': 1,
  'speed': 1,
  'type': 1,
  'wpm': 1},
 996: {"'m": 1,
  'Caps': None,
  'Digit': None,
  'First': 'm',
  'Last': 'a',
  'Numchar': 8,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
  'best': 1,
  'bulgaria': 1,
  'clients.i': 1,
  'deposit_made': False,
  'design': 1,
  'email_verified': True,
  'facebook_connected': False,
  'good': 1,
  'graphic': 1,
  'hi': 1,
  'identity_verified': False,
  'live': 1,
  'make': 1,
  'part': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'project': 1,
  'realli': 1,
  'see': 1,
  'small': 1,
  'varna': 1,
  'work': 1},
 997: {'Caps': None,
  'Digit': None,
  'First': 'f',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
  'deposit_made': False,
  'email_verified': True,
  'facebook_connected': False,
  'help': 1,
  'identity_verified': False,
  'inform': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'web': 1,
  'websit': 1,
  'would': 1},
 998: {'2': 1,
  'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
  'First': 's',
  'Last': 's',
  'Numchar': 10,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'analyst': 1,
  'analyt': 1,
  'associ': 1,
  'data': 2,
  'db2': 1,
  'deposit_made': True,
  'dynam': 1,
  'email_verified': True,
  'facebook_connected': True,
  'financi': 1,
  'forecast': 1,
  'identity_verified': False,
  'india': 1,
  'j2ee': 1,
  'learn': 1,
  'ltd.': 1,
  'machin': 1,
  'market': 1,
  'mba': 1,
  'model': 1,
  'payment_verified': True,
  'phone_verified': True,
  'php': 1,
  'predict': 1,
  'profile_complete': True,
  'pvt': 1,
  'r': 1,
  'scientist': 1,
  'sinc': 1,
  'skill': 1,
  'sql': 1,
  'work': 1,
  'xl': 1,
  'year': 1},
 999: {'Caps': None,
  'Digit': <_sre.SRE_Match object; span=(4, 5), match='6'>,
  'First': 'n',
  'Last': '6',
  'Numchar': 5,
  'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
  'banner': 1,
  'big': 1,
  'blog': 1,
  'bosnian': 1,
  'bulgarian': 1,
  'comment': 1,
  'croatian': 1,
  'data': 1,
  'deposit_made': False,
  'design': 1,
  'directori': 1,
  'email_verified': True,
  'english': 1,
  'entri': 1,
  'experi': 1,
  'facebook_connected': False,
  'identity_verified': False,
  'logo': 1,
  'ms': 1,
  'offer': 1,
  'offic': 1,
  'payment_verified': False,
  'phone_verified': False,
  'profile_complete': True,
  'serbian': 1,
  'submiss': 1,
  'translat': 1,
  'web': 1},
 ...}
In [130]:
#Making training set in the form of tuple of features,gender-->list2 is training set
gender1=train['gender']
list2=[]
for i in range(len(status)):
    z2=(fea[i],gender1[i])
    list2.append(z2)

list2
Out[130]:
[({'5': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'V',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'content': 1,
   'data': 1,
   'deposit_made': True,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'relat': 1,
   'research': 1,
   'team': 1,
   'variou': 1,
   'work': 2,
   'write': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'm',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'compani': 2,
   'deposit_made': True,
   'e-learn': 1,
   'email_verified': True,
   'expertis': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'know': 1,
   'media': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'provid': 1,
   'servic': 1,
   'social': 1,
   'solut': 1,
   'url': 1,
   'visit': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'k',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'administr': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'hobbi': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'system': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'acquir': 1,
   'articl': 1,
   'check': 1,
   'content': 1,
   'copywrit': 1,
   'day': 1,
   'deposit_made': True,
   'email_verified': True,
   'experi': 2,
   'experienc': 1,
   'facebook_connected': False,
   'good': 1,
   'hope': 1,
   'identity_verified': False,
   'knowledg': 1,
   'offer': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profil': 1,
   'profile_complete': True,
   'promis': 1,
   'qualiti': 1,
   'soon': 1,
   'take': 1,
   'thank': 1,
   'time': 1,
   'work': 1,
   'writer': 1,
   'year': 2},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 's',
   'Last': '1',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'build': 1,
   'client': 1,
   'deliv': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'good': 1,
   'high': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'price': 1,
   'profile_complete': True,
   'qualiti': 1,
   'reason': 1,
   'relat': 1,
   'time': 1,
   'work': 1},
  'M'),
 ({'12': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 't',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'adob': 1,
   'ajax': 1,
   'also': 1,
   'area': 1,
   'build': 1,
   'busi': 1,
   'business.i': 1,
   'compani': 1,
   'compet': 1,
   'complet': 1,
   'core': 1,
   'cs3': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'dhtml': 1,
   'dreamweav': 1,
   'email_verified': True,
   'end-end': 1,
   'experi': 1,
   'express': 1,
   'facebook_connected': True,
   'follow': 1,
   'ground': 1,
   'hmtl': 1,
   'identity_verified': False,
   'includ': 1,
   'last': 1,
   'lie': 1,
   'logo': 1,
   'manag': 1,
   'microsoft': 1,
   'new': 1,
   'opportun': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'rang': 1,
   'seek': 1,
   'site': 1,
   'small': 1,
   'startup': 1,
   'use': 1,
   'web': 1,
   'websit': 3,
   'wide': 1,
   'year': 1},
  'M'),
 ({'1': 3,
   '10': 1,
   '10.0': 1,
   '13': 1,
   '1999-2003': 1,
   '2': 1,
   '20': 1,
   '2003': 1,
   '2004': 2,
   '2004\\t': 1,
   '2005': 5,
   '2006': 3,
   '2007': 3,
   '2008': 3,
   '2009': 1,
   '2009surigao': 2,
   '3': 2,
   '30': 1,
   '4': 1,
   '4th': 1,
   '6': 5,
   '70': 1,
   '79': 2,
   '80': 1,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'y',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '\\t\\tweb': 1,
   '\\xe2\\u20ac\\u201c': 17,
   'academi': 3,
   'accord': 2,
   'account': 3,
   'accredit': 1,
   'address': 1,
   'adob': 4,
   'advertis': 1,
   'affect': 1,
   'agenc': 1,
   'agent': 6,
   'agent\\xe2\\u20ac\\u2122': 2,
   'aht': 2,
   'aid': 1,
   'alway': 1,
   'american': 1,
   'amount': 1,
   'answer': 1,
   'apa': 6,
   'applic': 1,
   'apprais': 2,
   'area': 1,
   'art': 1,
   'artwork': 1,
   'asiatown': 6,
   'assur': 1,
   'august': 2,
   'avail': 1,
   'ave.': 1,
   'avenu': 3,
   'averag': 1,
   'basic': 1,
   'beginn': 1,
   'bigger': 1,
   'bill': 1,
   'bldng': 5,
   'bohol': 4,
   'bpo': 1,
   'busi': 1,
   'cagayan': 2,
   'calibr': 2,
   'call': 10,
   'campu': 2,
   'cancel': 3,
   'cca': 2,
   'cebu': 15,
   'center': 7,
   'certif': 1,
   'chang': 1,
   'churn': 2,
   'citi': 5,
   'cityjanuari': 2,
   'cityjun': 7,
   'class': 3,
   'cleric': 1,
   'client': 5,
   'coach': 3,
   'colleg': 1,
   'commun': 2,
   'compani': 2,
   'company\\xe2\\u20ac\\u2122': 2,
   'complianc': 2,
   'comput': 1,
   'concept': 2,
   'concern': 1,
   'constant': 2,
   'correct': 1,
   'cours': 1,
   'cover': 2,
   'cp': 1,
   'credit': 1,
   'cs': 1,
   'csat': 2,
   'cultur': 1,
   'curriculum': 1,
   'custom': 12,
   'customer\\xe2\\u20ac\\u2122': 1,
   'day': 1,
   'day/': 1,
   'de': 2,
   'depart': 3,
   'depend': 1,
   'deposit_made': False,
   'descript': 1,
   'design': 5,
   'desir': 1,
   'develop': 1,
   'differ': 1,
   'direct': 3,
   'dmv': 1,
   'document': 1,
   'don\\xe2\\u20ac\\u2122t': 1,
   'drive': 1,
   'due': 2,
   'earthlink': 4,
   'educ': 2,
   'effect': 6,
   'elementari': 1,
   'email_verified': True,
   'english': 3,
   'ensur': 1,
   'establish': 1,
   'etc': 3,
   'evalu': 1,
   'everi': 2,
   'excel': 1,
   'execut': 1,
   'expans': 1,
   'extern': 1,
   'facebook_connected': False,
   'factor': 1,
   'februari': 2,
   'feedback': 2,
   'floor': 7,
   'focus': 1,
   'follow': 1,
   'foreign': 1,
   'formul': 2,
   'foundat': 1,
   'frequenc': 1,
   'full': 2,
   'gener': 3,
   'geographi': 1,
   'get': 1,
   'gift': 3,
   'govern': 1,
   'grammar': 1,
   'graphic': 2,
   'gross': 1,
   'growth': 2,
   'gsr': 2,
   'handl': 4,
   'help': 1,
   'high': 2,
   'hit': 3,
   'hotel': 1,
   'identity_verified': False,
   'illustr': 2,
   'inbound': 1,
   'inc.2nd': 2,
   'inc.unit': 4,
   'indic': 1,
   'inform': 1,
   'insur': 2,
   'intend': 1,
   'intens': 2,
   'interact': 2,
   'intermedi': 1,
   'intern': 1,
   'interpret': 1,
   'investig': 1,
   'januari': 2,
   'japanes': 1,
   'job': 2,
   'juli': 2,
   'june': 1,
   'key': 1,
   'korean': 1,
   'kpi': 1,
   'kpi/': 2,
   'lahug': 8,
   'lapu-lapu': 3,
   'layout': 1,
   'leadership': 1,
   'level': 1,
   'life': 1,
   'make': 1,
   'manag': 2,
   'manner': 1,
   'march': 3,
   'market': 2,
   'mass': 1,
   'materi': 1,
   'maxilom': 2,
   'maximum': 1,
   'may': 5,
   'mepz': 2,
   'metric': 1,
   'minimum': 1,
   'modul': 1,
   'monitor': 1,
   'motor': 1,
   'move': 1,
   'name': 1,
   'ndoe': 2,
   'necessari': 3,
   'negoti': 1,
   'new': 2,
   'nhandl': 2,
   'normal': 1,
   'novemb': 1,
   'number': 1,
   'oic': 2,
   'one': 4,
   'oper': 1,
   'order': 3,
   'oro': 1,
   'outsourc': 1,
   'overview': 1,
   'page': 2,
   'paperwork': 1,
   'park': 6,
   'payment_verified': False,
   'peoplesupport': 8,
   'per': 2,
   'perform': 6,
   'phil': 9,
   'philippin': 3,
   'phone': 1,
   'phone_verified': False,
   'photoshop': 1,
   'polici': 3,
   'potenti': 1,
   'powerpoint': 1,
   'prepar': 1,
   'prioriti': 1,
   'problem': 1,
   'procedur': 3,
   'process': 5,
   'profici': 3,
   'profile_complete': True,
   'program': 4,
   'progress': 1,
   'put': 1,
   'qa': 3,
   'qualiti': 1,
   'question': 2,
   'rate': 1,
   'read': 1,
   'reader': 1,
   'receiv': 1,
   'recruit': 1,
   'refresh': 1,
   'regard': 2,
   'regular': 1,
   'relat': 1,
   'remot': 1,
   'report': 4,
   'repres': 2,
   'research': 1,
   'respons': 3,
   'result': 1,
   'retent': 5,
   'role': 1,
   'rule': 1,
   'sale': 3,
   'satisfact': 1,
   'save': 10,
   'schedul': 1,
   'school': 1,
   'schoolwith': 1,
   'seminar': 2,
   'senior': 1,
   'servic': 5,
   'session': 3,
   'skill': 1,
   'specif': 3,
   'specifi': 1,
   'speech': 1,
   'stage': 1,
   'state': 2,
   'strategi': 2,
   'strength': 1,
   'student': 2,
   'sudeco': 2,
   'supervisor': 2,
   'supervisor\\xe2\\u20ac\\u2122': 2,
   'supervisori': 1,
   'sure': 1,
   'survey': 1,
   'symposium': 1,
   'tagbilaran': 4,
   'take': 1,
   'teach': 1,
   'team': 4,
   'team\\xe2\\u20ac\\u2122': 1,
   'telemarket': 1,
   'tenur': 1,
   'term': 2,
   'thorough': 1,
   'time': 3,
   'tour': 2,
   'tourist': 1,
   'train': 10,
   'trainer': 1,
   'univers': 5,
   'updat': 2,
   'use': 1,
   'veg': 2,
   'vehicl': 1,
   'ventur': 1,
   'version': 1,
   'visaya': 1,
   'voic': 1,
   'web': 1,
   'week': 1,
   'weekli': 1,
   'within': 2,
   'work': 1,
   'workshop': 2,
   'write': 2,
   'writer': 1,
   'wrong': 1},
  'F'),
 ({"'m": 2,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'blog': 1,
   'chemic': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'entri': 1,
   'facebook_connected': False,
   'faculti': 1,
   'freelanc': 1,
   'graduat': 1,
   'hobbi': 1,
   'identity_verified': False,
   'internet': 1,
   'logo': 1,
   'make': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'seo': 1},
  'M'),
 ({'3': 1,
   '3d': 3,
   '3year': 1,
   '5': 1,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'actual': 1,
   'adjac': 1,
   'adob': 2,
   'advertis': 1,
   'alia': 1,
   'anim': 1,
   'architectur': 2,
   'artist': 1,
   'automot': 1,
   'basic': 2,
   'beggin': 4,
   'catia': 1,
   'certif': 1,
   'cgi': 2,
   'citi': 1,
   'close': 1,
   'colleg': 1,
   'comput': 1,
   'countri': 1,
   'cuza': 1,
   'databas': 1,
   'deposit_made': False,
   'design': 1,
   'design-': 3,
   'educ': 1,
   'effects-': 1,
   'email_verified': True,
   'engin': 1,
   'english': 1,
   'experi': 3,
   'facebook_connected': True,
   'far': 1,
   'film': 1,
   'final': 1,
   'flow': 1,
   'fluent': 1,
   'french': 1,
   'fx': 1,
   'game': 1,
   'generalist': 2,
   'hometown': 1,
   'identity_verified': False,
   'industri': 1,
   'italian': 1,
   'light': 1,
   'locat': 2,
   'london': 1,
   'max': 1,
   'mental': 1,
   'microsoft': 2,
   'model': 1,
   'name': 1,
   'nativ': 1,
   'norway': 1,
   'nuke': 1,
   'offic': 2,
   'packag': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photorealist': 1,
   'photoshop': 1,
   'portfolio': 1,
   'present': 1,
   'profil': 2,
   'profile_complete': True,
   'program': 1,
   'project': 1,
   'ray': 1,
   'real': 1,
   'render': 2,
   'romania': 2,
   'romanian': 1,
   'scienc': 1,
   'sibiu': 2,
   'softwar': 3,
   'software-': 1,
   'str': 1,
   'studio': 2,
   'tool': 1,
   'uk': 1,
   'univers': 1,
   'visual': 1,
   'visualis': 1,
   'web': 1,
   'year': 2},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='2'>,
   'First': 'p',
   'Last': '9',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'assist': 1,
   'client': 1,
   'creat': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'goal': 1,
   'highli': 1,
   'identity_verified': False,
   'long-last': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'relationship': 1,
   'satisfi': 1,
   'task': 1,
   'virtual': 1,
   'well': 1},
  'F'),
 ({"'ve": 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'attent': 1,
   'client': 1,
   'deposit_made': False,
   'detail': 1,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'focus': 1,
   'got': 1,
   'hard': 1,
   'identity_verified': False,
   'love': 1,
   'pay': 1,
   'payment_verified': True,
   'phone_verified': True,
   'practic': 1,
   'profile_complete': True,
   'resourc': 1,
   'satisfi': 1,
   'skill': 1,
   'softwar': 1,
   'web': 1,
   'work': 1},
  'M'),
 ({'7': 1,
   '7+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'api': 1,
   'build': 1,
   'crm': 1,
   'deposit_made': True,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'industri': 1,
   'know': 1,
   'last': 1,
   'payment_verified': False,
   'pharmaceut': 1,
   'phone_verified': True,
   'php/mysql': 1,
   'profile_complete': True,
   'total': 1,
   'use': 1,
   'version': 1,
   'vtiger': 2,
   'work': 2,
   'year': 2},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'abid': 1,
   'afford': 1,
   'believ': 1,
   'compani': 1,
   'contact': 1,
   'convert': 1,
   'countri': 1,
   'custom': 2,
   'deposit_made': False,
   'design': 1,
   'domain': 1,
   'email_verified': True,
   'ethic': 1,
   'evalu': 1,
   'facebook_connected': False,
   'free': 5,
   'googl': 1,
   'help': 1,
   'host': 1,
   'hour': 1,
   'identity_verified': False,
   'lb': 1,
   'limit': 1,
   'manag': 1,
   'market': 1,
   'offer': 1,
   'packag': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 2,
   'profile_complete': True,
   'project': 1,
   'report': 1,
   'sale': 1,
   'search': 1,
   'select': 1,
   'seo': 5,
   'specialist': 1,
   'traffic': 1,
   'unlimit': 1,
   'us': 1,
   'work': 1},
  'F'),
 ({'2000/2003': 2,
   '4.0': 1,
   '9.x': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'activ': 1,
   'antispam': 1,
   'apach': 1,
   'architect': 1,
   'asset': 1,
   'certifi': 2,
   'cisco': 1,
   'citrix': 1,
   'cobit': 1,
   'code': 1,
   'comput': 1,
   'content': 1,
   'corpor': 1,
   'crack': 1,
   'databas': 1,
   'degre': 1,
   'deposit_made': True,
   'directori': 1,
   'dn': 1,
   'email_verified': True,
   'emc': 1,
   'end': 1,
   'ethic': 1,
   'exchang': 1,
   'expert': 1,
   'facebook_connected': False,
   'filter': 1,
   'firewal': 1,
   'frame': 1,
   'front': 1,
   'function': 1,
   'hack': 1,
   'hacker': 2,
   'help': 1,
   'identity_verified': False,
   'ids/ip': 1,
   'ii': 1,
   'includ': 1,
   'inform': 1,
   'infrastructur': 1,
   'isc': 1,
   'iscsi': 1,
   'joomla': 1,
   'knowledg': 1,
   'lan': 1,
   'linux': 1,
   'mpl': 1,
   'network': 1,
   'oracl': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profession': 2,
   'profile_complete': True,
   'protect': 1,
   'qualif': 1,
   'relay': 1,
   'router': 1,
   'scienc': 1,
   'secur': 3,
   'server': 3,
   'solut': 1,
   'specif': 1,
   'sql': 1,
   'storag': 1,
   'strong': 1,
   'system': 1,
   'tcp/ip': 1,
   'technic': 1,
   'tomcat': 1,
   'virtual': 1,
   'virtuozzo': 1,
   'vlan': 1,
   'vmware': 1,
   'vpn': 1,
   'wan': 1,
   'web': 2,
   'whose': 1,
   'window': 1,
   'xen': 1},
  'M'),
 ({'6': 1,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ac': 1,
   'assur': 1,
   'beleiv': 1,
   'choic': 1,
   'client': 1,
   'close': 1,
   'compani': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'good': 1,
   'hard': 1,
   'identity_verified': False,
   'like': 1,
   'long': 1,
   'made': 1,
   'may': 1,
   'outsourc': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'qualiti': 1,
   'relationship': 1,
   'rest': 1,
   'reuter': 1,
   'right': 1,
   'strict': 1,
   'term': 1,
   'valuabl': 1,
   'work': 2,
   'years.i': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='4'>,
   'First': 'h',
   'Last': '3',
   'Numchar': 10,
   'Vowel': None,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'3': 1,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'bulk': 1,
   'carrier': 1,
   'deposit_made': False,
   'designer/develop': 1,
   'email': 1,
   'email_verified': True,
   'expert': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'hi': 1,
   'identity_verified': False,
   'market': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'upwork': 1,
   'web': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'e',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'academia': 1,
   'alert': 1,
   'audienc': 1,
   'avail': 1,
   'background': 1,
   'checker': 1,
   'creativ': 1,
   'deposit_made': True,
   'develop': 1,
   'done': 1,
   'email_verified': True,
   'english': 1,
   'enthusiast': 1,
   'environ': 1,
   'expertis': 1,
   'facebook_connected': False,
   'flexibl': 1,
   'formal': 1,
   'freelanc': 2,
   'grammar': 1,
   'identity_verified': False,
   'like': 1,
   'nativ': 1,
   'never': 1,
   'onlin': 1,
   'payment_verified': True,
   'perfectionist': 1,
   'phone_verified': False,
   'piec': 1,
   'possess': 1,
   'pride': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'quickli': 1,
   'request': 1,
   'set': 1,
   'speaker': 1,
   'spell': 1,
   'state': 1,
   'strong': 1,
   'tip': 1,
   'unit': 1,
   'upon': 1,
   'want': 1,
   'well': 2,
   'work': 1,
   'write': 1},
  'F'),
 ({'...': 2,
   '10': 1,
   '2': 1,
   '3': 1,
   '9': 2,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
   'above-': 2,
   'access': 1,
   'also': 1,
   'amazon': 1,
   'api': 1,
   'busi': 1,
   'ccavenu': 1,
   'checkout': 1,
   'cm': 1,
   'code': 1,
   'contact': 1,
   'content': 1,
   'creation': 1,
   'csv': 1,
   'custom': 2,
   'databas': 1,
   'dear': 1,
   'deposit_made': True,
   'develop': 1,
   'direct': 1,
   'done': 2,
   'email_verified': True,
   'etc': 1,
   'etc.if': 1,
   'experi': 2,
   'facebook_connected': False,
   'file': 1,
   'gateway': 1,
   'googl': 1,
   'handl': 1,
   'huge': 1,
   'identity_verified': False,
   'implement': 2,
   'interest': 1,
   'item': 1,
   'java': 1,
   'kind': 1,
   'like': 2,
   'mainten': 1,
   'manag': 2,
   'million': 1,
   'mssql': 1,
   'mssql-': 1,
   'mysql': 2,
   'new': 1,
   'open': 2,
   'payment': 1,
   'payment_verified': False,
   'paypal': 1,
   'phone_verified': False,
   'php': 2,
   'procedur': 1,
   'product': 3,
   'profile_complete': True,
   'project': 3,
   'readi': 1,
   'record': 1,
   'relationship': 1,
   'site': 1,
   'sourc': 2,
   'store': 1,
   'system': 1,
   'take': 1,
   'technolog': 1,
   'transfer': 1,
   'upto': 1,
   'use': 2,
   'variou': 1,
   'video': 1,
   'webservic': 2,
   'work': 1,
   'worldpay': 1,
   'xml': 1,
   'yahoo': 1,
   'year': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'part': 1,
   'payment_verified': False,
   'phone_verified': False,
   'portfolio': 1,
   'profile_complete': True,
   'see': 1},
  'F'),
 ({'20': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
   'abl': 1,
   'articl': 1,
   'day': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'handl': 1,
   'identity_verified': False,
   'output': 1,
   'payment_verified': False,
   'per': 1,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'.mi': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'ad': 1,
   'admin': 1,
   'ahead': 1,
   'also': 1,
   'alway': 1,
   'appli': 1,
   'area': 1,
   'attent': 1,
   'attribut': 2,
   'busi': 1,
   'cart': 1,
   'cheer': 1,
   'combin': 1,
   'commit': 1,
   'configur': 1,
   'copi': 1,
   'creat': 1,
   'custom': 1,
   'data': 2,
   'day': 1,
   'dead': 1,
   'decid': 1,
   'deliveri': 1,
   'deposit_made': True,
   'detail': 1,
   'develop': 1,
   'els': 1,
   'email_verified': True,
   'entri': 1,
   'excel': 1,
   'extens': 1,
   'face': 1,
   'facebook_connected': True,
   'fair': 2,
   'familiar': 3,
   'fast': 1,
   'fix': 1,
   'flexibl': 1,
   'high': 1,
   'identity_verified': False,
   'includ': 2,
   'incomplet': 1,
   'integr': 1,
   'interact': 1,
   'interest': 1,
   'interv': 1,
   'issu': 1,
   'job': 3,
   'line': 1,
   'long': 1,
   'magento': 2,
   'mainfram': 2,
   'much': 1,
   'open': 1,
   'option': 1,
   'past': 1,
   'payment_verified': True,
   'perfect': 3,
   'period': 1,
   'phone_verified': True,
   'plan': 1,
   'precis': 1,
   'prestashop': 1,
   'price': 1,
   'product': 2,
   'profile_complete': True,
   'qualiti': 1,
   'receiv': 1,
   'regular': 1,
   'relationship': 1,
   'requir': 3,
   'set': 1,
   'simpl': 1,
   'sound': 1,
   'step': 1,
   'super': 1,
   'support': 1,
   'task': 1,
   'technolog': 1,
   'term': 1,
   'time-wast': 2,
   'tool': 1,
   'trainer': 1,
   'type': 1,
   'updat': 2,
   'upload': 1,
   'use': 1,
   'well': 1,
   'whether': 1,
   'wordpress': 1,
   'work': 4,
   'worker': 2},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='7'>,
   'First': 'B',
   'Last': '6',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='O'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'test': 1},
  'M'),
 ({'3d': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': None,
   'First': 'V',
   'Last': 's',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'.develop': 1,
   '7': 2,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'adept': 1,
   'also': 2,
   'around': 1,
   'articl': 1,
   'awar': 1,
   'blog': 1,
   'brand': 1,
   'clientel': 1,
   'contact': 1,
   'content': 4,
   'copy-writ': 1,
   'core': 1,
   'creation': 1,
   'custom': 1,
   'customer-specif': 1,
   'deposit_made': False,
   'design': 2,
   'develop': 3,
   'dikka': 2,
   'drupal': 1,
   'email_verified': True,
   'engin': 1,
   'english': 1,
   'entrust': 1,
   'etc': 1,
   'ethic': 1,
   'except': 1,
   'experi': 2,
   'extens': 1,
   'facebook_connected': False,
   'fort': 1,
   'french': 1,
   'german': 1,
   'good': 2,
   'googl': 1,
   'hat': 1,
   'hello': 1,
   'html5': 1,
   'identity_verified': False,
   'includ': 1,
   'internet': 1,
   'joomla': 1,
   'magento': 1,
   'market': 2,
   'maximum': 1,
   'media': 1,
   'need': 1,
   'negi': 2,
   'optim': 1,
   'page': 3,
   'panda': 1,
   'passion': 1,
   'payment_verified': False,
   'penguin': 1,
   'phone_verified': True,
   'php': 2,
   'produc': 1,
   'profici': 1,
   'profil': 1,
   'profile_complete': True,
   'project': 2,
   'promot': 1,
   'protect': 1,
   'rank': 1,
   'regard': 1,
   'requir': 1,
   'revolv': 1,
   'rewrit': 2,
   'search': 1,
   'secur': 1,
   'seo': 3,
   'servic': 1,
   'smo': 1,
   'social': 1,
   'spam': 1,
   'specif': 1,
   'success': 1,
   'summari': 1,
   'techniqu': 1,
   'thank': 1,
   'top': 1,
   'traffic': 1,
   'translat': 1,
   'updat': 1,
   'use': 2,
   'visit': 1,
   'web': 2,
   'websit': 2,
   'websites.seo': 1,
   'well': 1,
   'white': 1,
   'wide': 1,
   'write': 5,
   'year': 2},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'hard': 1,
   'honest': 1,
   'identity_verified': False,
   'laxmi': 1,
   'name': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'road': 1,
   'sharma': 1,
   'sumit': 1,
   'us': 1,
   'worker': 1},
  'M'),
 ({'-\\t\\t': 1,
   '10': 1,
   '2006': 1,
   '2007': 1,
   '2007\\t': 2,
   '2008': 2,
   '2009': 2,
   '21': 1,
   '26': 1,
   '29': 1,
   '3': 1,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
   '\\t': 1,
   '\\t\\t': 4,
   '\\xe2\\u20ac\\u201c': 2,
   'academi': 2,
   'ad': 1,
   'advoc': 1,
   'april': 1,
   'articl': 1,
   'bachelor': 3,
   'best': 1,
   'blog': 1,
   'call': 1,
   'center': 1,
   'champion': 1,
   'citi': 1,
   'colleg': 1,
   'compani': 1,
   'comput': 2,
   'coop': 1,
   'cours': 1,
   'de': 1,
   'deposit_made': False,
   'educ': 1,
   'email_verified': True,
   'engin': 2,
   'enthusiast': 1,
   'excel': 1,
   'facebook_connected': True,
   'finish': 1,
   'high': 2,
   'identity_verified': False,
   'iligan': 2,
   'institut': 1,
   'jun': 1,
   'june': 1,
   'keen': 1,
   'la': 1,
   'lloyd': 1,
   'major': 1,
   'march': 1,
   'may': 1,
   'michael\\xe2\\u20ac\\u2122': 1,
   'microsoft': 1,
   'nation': 2,
   'oct.': 2,
   'part-tim': 1,
   'payment_verified': False,
   'peter\\xe2\\u20ac\\u2122': 3,
   'phone_verified': True,
   'point': 1,
   'power': 1,
   'present': 1,
   'profile_complete': True,
   'saint': 2,
   'sall': 1,
   'school': 1,
   'scienc': 2,
   'secondari': 1,
   'singl': 1,
   'speaker': 1,
   'st.': 3,
   'substitut': 2,
   'tesda': 1,
   'train': 2,
   'troubleshoot': 1,
   'undergrad': 2,
   'word': 1,
   'writer/editor': 1},
  'M'),
 ({"''": 2,
   "'s": 2,
   '1987': 1,
   '1989': 1,
   '1994': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   '``': 2,
   'airway': 1,
   'art': 3,
   'artist': 2,
   'awar': 1,
   'award': 1,
   'bachelor': 1,
   'bangkok': 2,
   'born': 1,
   'campaign': 1,
   'colleg': 1,
   'daili': 1,
   'day': 1,
   'degre': 1,
   'deposit_made': False,
   'display': 1,
   'done': 1,
   'drug': 1,
   'email_verified': True,
   'exhibit': 1,
   'facebook_connected': False,
   'faculti': 1,
   'fine': 2,
   'follow': 1,
   'graphic': 2,
   'identity_verified': False,
   'institut': 1,
   'list': 1,
   'media': 1,
   'nation': 1,
   'newspap': 1,
   'paint': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'sinc': 1,
   'sky': 1,
   'technolog': 1,
   'thai': 1,
   'websit': 1,
   'winner': 1,
   'woman': 1,
   'work': 2,
   'youth': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
   'First': 'a',
   'Last': '6',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'ad': 1,
   'ai': 1,
   'content': 3,
   'continu': 1,
   'corel': 1,
   'css': 1,
   'deposit_made': True,
   'draw': 1,
   'edit': 1,
   'editor': 1,
   'email_verified': True,
   'facebook_connected': True,
   'html': 1,
   'identity_verified': False,
   'imag': 1,
   'necessari': 1,
   'payment_verified': True,
   'pdf': 1,
   'phone_verified': True,
   'photoshop': 1,
   'poster': 1,
   'profile_complete': True,
   'redesign': 1,
   'tabl': 1,
   'updat': 1,
   'websit': 2},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'm',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
   'blog': 1,
   'brazilian': 1,
   'deposit_made': True,
   'email_verified': True,
   'english': 1,
   'everyon': 1,
   'facebook_connected': False,
   'guy': 1,
   'hi': 1,
   'hire': 1,
   'identity_verified': False,
   'love': 1,
   'make': 1,
   "n't": 1,
   'need': 1,
   'payment_verified': True,
   'phone_verified': True,
   'portugues': 1,
   'profile_complete': True,
   'regret': 1,
   'review': 1,
   'see': 1,
   'simpli': 1,
   'translat': 1,
   'wo': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'custom': 1,
   'deposit_made': False,
   'design': 2,
   'develop': 1,
   'e-commerc': 1,
   'edit': 1,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': True,
   'graphic': 1,
   'identity_verified': False,
   'indesign': 1,
   'joomla': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'php': 1,
   'product': 1,
   'profile_complete': True,
   'record': 1,
   'respons': 1,
   'social': 1,
   'surgic': 1,
   'video': 1,
   'web': 1,
   'word': 1,
   'wordpress': 1},
  'M'),
 ({'15': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'R',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'api': 1,
   'applic': 1,
   'better': 1,
   'code': 2,
   'css': 1,
   'databas': 1,
   'deposit_made': True,
   'development.mi': 1,
   'easili': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'fast': 1,
   'fix': 1,
   'help': 1,
   'html': 1,
   'identity_verified': False,
   'implement': 1,
   'includ': 1,
   'issu': 1,
   'jqueri': 1,
   'legaci': 1,
   'limit': 1,
   'load': 1,
   'mani': 1,
   'migrat': 1,
   'mysql': 1,
   'new': 1,
   'number': 2,
   'old': 1,
   'oop': 2,
   'optim': 3,
   'page': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 3,
   'processing*': 1,
   'profile_complete': True,
   'provid': 1,
   'pure': 1,
   'reduc': 1,
   'script': 1,
   'secur': 1,
   'server': 1,
   'set': 1,
   'skill': 1,
   'sourc': 1,
   'speed': 1,
   'swift': 1,
   'variou': 1,
   'version': 1,
   'web': 1,
   'websit': 2,
   'well': 1,
   'written': 1,
   'year': 2},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'g',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'articl': 1,
   'blogger': 1,
   'content': 3,
   'creation': 1,
   'creativ': 1,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'experi': 1,
   'experienc': 1,
   'expert': 1,
   'facebook_connected': False,
   'fiction': 1,
   'gener': 1,
   'gig': 1,
   'hallmark': 1,
   'identity_verified': False,
   'link': 1,
   'long': 1,
   'mark': 1,
   'non-fict': 1,
   'origin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 2,
   'profile_complete': True,
   'qualiti': 1,
   'rank': 1,
   'seo': 1,
   'skill': 1,
   'time': 1,
   'traffic': 1,
   'web': 3,
   'web/blog': 1,
   'work': 1,
   'write': 2,
   'writer': 1},
  'M'),
 ({'.net': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='3'>,
   'First': 'w',
   'Last': '3',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'adob': 1,
   'also': 1,
   'asp': 1,
   'base': 1,
   'best': 1,
   'c': 1,
   'certif': 1,
   'client': 1,
   'cucumb': 1,
   'current': 1,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'establish': 1,
   'facebook_connected': True,
   'goal': 1,
   'good': 1,
   'great': 1,
   'identity_verified': False,
   'illustr': 1,
   'knowledg': 1,
   'mvc': 1,
   'nunit': 1,
   'opportun': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'practic': 1,
   'profici': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'rail': 1,
   'relationship': 1,
   'rspec': 1,
   'rubi': 2,
   'satisfi': 1,
   'servic': 1,
   'softwar': 1,
   'tdd': 1,
   'uk': 1,
   'use': 2,
   'work': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'd',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abl': 2,
   'academ': 1,
   'accur': 1,
   'across': 1,
   'also': 4,
   'articl': 2,
   'assist': 1,
   'churn': 1,
   'content': 1,
   'copyedit': 1,
   'deposit_made': True,
   'differ': 1,
   'done': 1,
   'editor': 1,
   'editori': 1,
   'email_verified': True,
   'essay': 2,
   'excel': 1,
   'experi': 1,
   'extens': 1,
   'facebook_connected': False,
   'fast': 1,
   'fiction': 1,
   'function': 1,
   'identity_verified': False,
   'job': 1,
   'nich': 1,
   'non-fict': 1,
   'payment_verified': False,
   'phone_verified': True,
   'piec': 1,
   'possess': 1,
   'produc': 1,
   'profile_complete': True,
   'project': 1,
   'proofread': 1,
   'relat': 1,
   'scholarli': 1,
   'seo': 1,
   'short': 1,
   'skill': 2,
   'time': 1,
   'transcript': 2,
   'transcriptionist': 1,
   'turnaround': 1,
   'type': 1,
   'use': 2,
   'virtual': 1,
   'well.i': 1,
   'write': 1},
  'F'),
 ({"'m": 2,
   '+4': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'b',
   'Last': '0',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'experienc': 1,
   'facebook_connected': False,
   'fast': 1,
   'flexibl': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'realli': 1,
   'wordpress': 1,
   'year': 1},
  'M'),
 ({"'m": 2,
   '.i': 2,
   '10': 1,
   '3': 1,
   '5.1': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'u',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'administr': 1,
   'avail': 1,
   'bootstrap': 1,
   'deposit_made': False,
   'develop': 2,
   'digit': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'host': 1,
   'identity_verified': False,
   'job': 1,
   'jqueri': 1,
   'laravel': 3,
   'ocean': 1,
   'odd': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'senior': 1,
   'server': 1,
   'special': 1,
   'twitter': 1,
   'unmanag': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'y',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'administr': 1,
   'also': 1,
   'apach': 1,
   'c++': 1,
   'css': 1,
   'degre': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'expert': 1,
   'facebook_connected': False,
   'html': 1,
   'identity_verified': False,
   'jqueri': 1,
   'js': 1,
   'linux': 1,
   'mathemat': 1,
   'mysql': 1,
   'payment_verified': True,
   'phd': 1,
   'phone_verified': True,
   'php': 1,
   'physic': 1,
   'profession': 1,
   'profile_complete': True,
   'program': 1,
   'server': 1,
   'skill': 1,
   'statist': 1,
   'strong': 1},
  'M'),
 ({"'m": 1,
   '6': 1,
   'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
   'alway': 1,
   'art': 1,
   'best': 1,
   'bsc': 1,
   'busi': 1,
   'card': 1,
   'check': 1,
   'client': 1,
   'cours': 1,
   'creat': 1,
   'degre': 1,
   'deposit_made': False,
   'design': 5,
   'design.i': 1,
   'easi': 1,
   'email_verified': True,
   'experi': 2,
   'experienc': 1,
   'facebook_connected': False,
   'find': 1,
   'fine': 1,
   'forward': 1,
   'graphic': 2,
   'help': 1,
   'identity_verified': False,
   'illustr': 1,
   'includ': 2,
   'industri': 1,
   'like': 1,
   'logo': 1,
   'look': 1,
   'microsoft': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 2,
   'pleas': 1,
   'portfolio.i': 1,
   'possibl': 1,
   'profil': 1,
   'profile_complete': True,
   'program': 1,
   'publish': 1,
   'sampl': 1,
   'start': 1,
   'subject': 1,
   'take': 1,
   'taken': 1,
   'time': 1,
   'use': 1,
   'view': 1,
   'want': 1,
   'web': 1,
   'websit': 1,
   'work': 4,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'a',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'arm': 1,
   'around': 1,
   'bachelor': 1,
   'board': 1,
   'c': 1,
   'comput': 1,
   'deposit_made': False,
   'develop': 1,
   'devic': 1,
   'domain': 1,
   'driver': 1,
   'e.t.c': 2,
   'email_verified': True,
   'embed': 1,
   'experi': 1,
   'extens': 1,
   'facebook_connected': False,
   'graduat': 1,
   'i2c': 1,
   'identity_verified': False,
   'interfac': 1,
   'like': 2,
   'linux': 1,
   'mac': 1,
   'network': 1,
   'packag': 1,
   'payment_verified': False,
   'pci': 1,
   'phone_verified': False,
   'processor': 1,
   'profession': 1,
   'profile_complete': True,
   'scienc': 1,
   'softwar': 1,
   'spi': 1,
   'storag': 1,
   'support': 1,
   'usb': 1,
   'variou': 1,
   'work': 3},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'anim': 1,
   'applic': 2,
   'deposit_made': False,
   'design': 1,
   'differ': 1,
   'email_verified': True,
   'expertis': 1,
   'facebook_connected': False,
   'game': 1,
   'identity_verified': False,
   'multipl': 1,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': True,
   'platform': 1,
   'profile_complete': True,
   'program': 1,
   'prove': 1,
   'standalon': 1,
   'team': 1,
   'technolog': 1,
   'video': 1,
   'web': 1},
  'M'),
 ({'5': 1,
   '7-14': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='4'>,
   'First': 's',
   'Last': 'u',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'age': 1,
   'class': 1,
   'deposit_made': True,
   'dollars/hour.i': 1,
   'email_verified': True,
   'everywher': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'kid': 1,
   'line': 1,
   'make': 1,
   'math': 1,
   'payment_verified': True,
   'phone_verified': True,
   'price': 1,
   'profile_complete': True,
   'wait': 1,
   'welcom': 1,
   'wolrd': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
   'a+': 1,
   'certif': 1,
   'ciw': 2,
   'databas': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'mcp': 1,
   'mct': 1,
   'network+': 1,
   'payment_verified': True,
   'phone_verified': True,
   'pro': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'staff': 1,
   'support': 1,
   'technician': 1},
  'M'),
 ({"'m": 1,
   '27': 1,
   '2nd': 1,
   '60': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'L',
   'Last': '5',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='E'>,
   'access': 1,
   'also': 1,
   'british': 1,
   'bsc': 1,
   'candid': 1,
   'certif': 1,
   'chang': 1,
   'colombo': 1,
   'comput': 1,
   'council': 1,
   'cours': 1,
   'custom': 1,
   'data': 1,
   'degre': 3,
   'depart': 1,
   'deposit_made': False,
   'develop': 1,
   'diploma': 1,
   'econom': 1,
   'educ': 1,
   'email_verified': True,
   'english': 1,
   'enquiri': 1,
   'examin': 1,
   'excel': 1,
   'experi': 1,
   'extern': 2,
   'facebook_connected': False,
   'freelanc': 1,
   'gain': 1,
   'hi': 1,
   'hour': 1,
   'hsbc': 1,
   'identity_verified': False,
   'includ': 1,
   'inform': 1,
   'informat': 1,
   'interview': 1,
   'job': 2,
   'languag': 1,
   'lanka': 2,
   'london': 2,
   'make': 1,
   'manag': 3,
   'market': 1,
   'much': 2,
   'old': 1,
   'paper': 1,
   'part': 2,
   'part-tim': 1,
   'payment_verified': False,
   'phone_verified': False,
   'powerpoint': 1,
   'process': 1,
   'profession': 1,
   'profile_complete': True,
   'programm': 2,
   'qualif': 1,
   'repres': 1,
   'research': 2,
   'role': 1,
   'sector': 1,
   'servic': 1,
   'singapor': 1,
   'skill': 1,
   'sri': 2,
   'studi': 1,
   'suitabl': 1,
   'survey': 1,
   'system': 1,
   'thank': 1,
   'train': 1,
   'uk': 1,
   'univers': 1,
   'upper': 1,
   'word': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'3d': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'cad': 2,
   'consum': 1,
   'deposit_made': False,
   'design': 4,
   'email_verified': True,
   'english': 1,
   'experi': 1,
   'experienc': 1,
   'export': 1,
   'facebook_connected': False,
   'hi': 1,
   'identity_verified': False,
   'knowledg': 1,
   'machin': 1,
   'manufactur': 2,
   'model': 1,
   'mold': 1,
   'payment_verified': False,
   'phone_verified': True,
   'print': 1,
   'process': 1,
   'product': 2,
   'profile_complete': True,
   'qualif': 1,
   'softwar': 1,
   'solidwork': 1,
   'spanish': 1,
   'surfac': 1,
   'use': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'y',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
   'abstract': 1,
   'advertis': 3,
   'adword': 1,
   'also': 1,
   'artist': 1,
   'campaign': 1,
   'charact': 1,
   'color': 1,
   'deposit_made': False,
   'design': 2,
   'digit': 1,
   'email_verified': True,
   'experi': 1,
   'extens': 1,
   'facebook_connected': False,
   'flyer': 1,
   'identity_verified': False,
   'industri': 1,
   'kyle': 1,
   'magazin': 1,
   'manag': 1,
   'murphi': 1,
   'name': 1,
   'onlin': 1,
   'ontario': 1,
   'paint': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'sem': 1,
   'southern': 1,
   'special': 1,
   'standard': 1,
   'success': 1,
   'work': 2},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 'm',
   'Last': '1',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'alway': 1,
   'articl': 1,
   'deposit_made': False,
   'edit': 1,
   'email_verified': True,
   'enjoy': 1,
   'error': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'look': 1,
   'love': 1,
   'new': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'proofread': 1,
   'proud': 1,
   'research': 1,
   'short': 1,
   'thing': 1,
   'turn': 1,
   'work': 1,
   'write': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='u'>,
   'addr': 1,
   'bangladesh': 1,
   'deposit_made': False,
   'dhaka': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'md': 2,
   'name': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'also': 1,
   'colour': 1,
   'corpor': 1,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'help': 1,
   'ident': 1,
   'identity_verified': False,
   'logo': 1,
   'page': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php/mysql': 1,
   'profile_complete': True,
   'project': 1,
   'style': 1,
   'web': 1,
   'will': 1,
   'work': 1},
  'M'),
 ({"'re": 1,
   '10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
   '\\xc3\\xbe\\tadvis': 4,
   '\\xc3\\xbe\\tassist': 2,
   '\\xc3\\xbe\\tpay': 3,
   '\\xc3\\xbe\\tperform': 2,
   '\\xe2\\u20ac\\u201c': 6,
   'a/r': 1,
   'abl': 1,
   'access': 1,
   'account': 12,
   'achiev': 1,
   'acquisit': 1,
   'act': 1,
   'action': 1,
   'activ': 1,
   'ad': 1,
   'addit': 1,
   'adjust': 1,
   'advanc': 1,
   'advic': 2,
   'advis': 1,
   'advisori': 4,
   'agenc': 1,
   'agent': 1,
   'agreement': 3,
   'aim': 1,
   'along': 1,
   'also': 2,
   'analysi': 5,
   'annual': 1,
   'anticip': 2,
   'appeal': 1,
   'applic': 2,
   'approach': 1,
   'appropri': 1,
   'approv': 1,
   'approxim': 1,
   'area': 2,
   'around': 1,
   'aspect': 2,
   'asset': 1,
   'assist': 1,
   'associ': 3,
   'audit': 4,
   'author': 1,
   'avail': 1,
   'balanc': 1,
   'bank': 1,
   'base': 1,
   'best': 1,
   'better': 1,
   'bill': 2,
   'board': 2,
   'book': 2,
   'bottom': 1,
   'budget': 2,
   'busi': 22,
   'buyout': 1,
   'capit': 1,
   'card': 1,
   'cash': 2,
   'centr': 2,
   'certain': 1,
   'chang': 1,
   'changeov': 1,
   'check': 1,
   'choos': 1,
   'citi': 1,
   'claim': 2,
   'client': 7,
   'client\\xe2\\u20ac\\u2122': 1,
   'clients\\xe2\\u20ac\\u2122': 1,
   'clientsw': 1,
   'combin': 1,
   'compani': 4,
   'company\\xe2\\u20ac\\u2122': 1,
   'compens': 1,
   'complex': 2,
   'complianc': 2,
   'compon': 1,
   'conduct': 1,
   'conjunct': 1,
   'consult': 2,
   'contact': 1,
   'control': 2,
   'core': 1,
   'corpor': 3,
   'cost': 10,
   'cost-effect': 1,
   'cost/benefit': 1,
   'could': 1,
   'cours': 1,
   'credit': 4,
   'custom': 6,
   'deal': 1,
   'declin': 1,
   'deduct': 1,
   'deliv': 1,
   'depart': 1,
   'depend': 1,
   'deposit_made': True,
   'depreci': 1,
   'detail': 1,
   'differ': 2,
   'direct': 2,
   'distribut': 1,
   'divis': 2,
   'document': 3,
   'draft': 1,
   'due': 1,
   'earn': 1,
   'easili': 1,
   'effect': 1,
   'effici': 1,
   'electr': 1,
   'email_verified': True,
   'enabl': 1,
   'end': 1,
   'enjoy': 1,
   'ensur': 1,
   'enter': 1,
   'entri': 1,
   'establish': 3,
   'estim': 1,
   'etc': 2,
   'execut': 1,
   'exercis': 2,
   'expans': 1,
   'experienc': 1,
   'expert': 2,
   'facebook_connected': True,
   'facil': 1,
   'facilit': 1,
   'feasibl': 3,
   'financ': 4,
   'financi': 9,
   'firm': 4,
   'fix': 1,
   'flow': 1,
   'focus': 2,
   'formul': 1,
   'fraud': 2,
   'full': 2,
   'function': 2,
   'furnitur': 1,
   'futur': 1,
   'gener': 2,
   'get': 1,
   'go': 1,
   'goal': 1,
   'govern': 1,
   'grow': 1,
   'histor': 1,
   'identifi': 1,
   'identity_verified': False,
   'impact': 1,
   'implement': 1,
   'incent': 1,
   'includ': 6,
   'incom': 3,
   'indirect': 2,
   'individu': 1,
   'industri': 3,
   'inform': 1,
   'instead': 1,
   'insur': 3,
   'intern': 2,
   'inventori': 3,
   'investig': 1,
   'invoic': 2,
   'involv': 2,
   'issu': 1,
   'it\\xe2\\u20ac\\u2122': 1,
   'job': 1,
   'journal': 1,
   'leav': 2,
   'legal': 4,
   'legisl': 1,
   'level': 1,
   'liquid': 1,
   'list': 2,
   'litig': 2,
   'local': 1,
   'locat': 1,
   'long': 2,
   'look': 1,
   'loss': 1,
   'mail': 1,
   'maintain': 1,
   'major': 2,
   'make': 1,
   'manag': 7,
   'matter': 2,
   'medic': 1,
   'medium': 1,
   'meet': 3,
   'memo': 1,
   'memoranda': 1,
   'mission': 1,
   'model': 2,
   'monthli': 3,
   'nation': 1,
   'natur': 1,
   'need': 2,
   'new': 1,
   'ngong': 2,
   'nhif': 3,
   'non-financi': 1,
   'nssf': 3,
   'object': 1,
   'offer': 1,
   'offic': 1,
   'oper': 3,
   'order': 1,
   'organization\\xe2\\u20ac\\u2122': 1,
   'outsourc': 3,
   'packag': 1,
   'paramet': 1,
   'park': 1,
   'part': 1,
   'particip': 1,
   'partner': 1,
   'pay': 4,
   'payabl': 1,
   'payment': 1,
   'payment_verified': False,
   'payrol': 3,
   'perform': 1,
   'period': 1,
   'person': 1,
   'phone_verified': True,
   'pick': 1,
   'place': 1,
   'plan': 5,
   'point': 1,
   'polici': 2,
   'post': 1,
   'practic': 1,
   'prepar': 9,
   'prevent': 1,
   'price': 1,
   'problem': 1,
   'procedur': 2,
   'process': 4,
   'profession': 1,
   'profile_complete': True,
   'profit': 2,
   'project': 2,
   'protect': 1,
   'provid': 10,
   'purchas': 2,
   'qualifi': 1,
   'queri': 1,
   'rang': 4,
   'ratio': 1,
   'real': 1,
   'receiv': 1,
   'recogn': 1,
   'reconcil': 1,
   'record': 2,
   'recoveri': 1,
   'reduc': 1,
   'refund': 1,
   'regist': 1,
   'registr': 2,
   'registrar': 1,
   'relat': 1,
   'rent': 1,
   'report': 4,
   'request': 1,
   'requir': 3,
   'restructur': 3,
   'retir': 1,
   'return': 2,
   'review': 1,
   'right': 1,
   'risk': 2,
   'road': 2,
   'routin': 2,
   'run': 1,
   'safe': 1,
   'secretari': 5,
   'secur': 1,
   'seminar': 2,
   'servic': 16,
   'servicesw': 2,
   'set': 2,
   'set-up': 1,
   'sharehold': 2,
   'sick': 1,
   'similar': 1,
   'situat': 1,
   'size': 2,
   'slip': 1,
   'small': 1,
   'softwar': 1,
   'solut': 3,
   'space': 1,
   'specialis': 1,
   'specif': 3,
   'spent': 3,
   'staff': 2,
   'statement': 4,
   'statu': 1,
   'statutori': 2,
   'strateg': 1,
   'strategi': 1,
   'studi': 2,
   'submiss': 2,
   'submit': 1,
   'suitabl': 1,
   'supplier': 2,
   'support': 4,
   'sustain': 1,
   'system': 4,
   'tailor': 1,
   'tax': 19,
   'taxat': 2,
   'team': 1,
   'technolog': 1,
   'telephon': 1,
   'term': 3,
   'therebi': 1,
   'time': 5,
   'timesheet': 1,
   'train': 4,
   'trend': 1,
   'tune-up': 1,
   'turn': 1,
   'turnov': 1,
   'type': 1,
   'understand': 1,
   'undertaken': 1,
   'updat': 1,
   'use': 2,
   'vacat': 1,
   'valu': 2,
   'valuat': 2,
   'varianc': 1,
   'variou': 1,
   'vat': 2,
   'viabl': 1,
   'view': 1,
   'wage': 1,
   'well': 1,
   'whether': 1,
   'wide': 1,
   'wind': 1,
   'wit': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 's',
   'Last': '0',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'alway': 1,
   'articles-': 2,
   'best': 1,
   'blog': 1,
   'comfort': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'forum': 1,
   'help': 1,
   'identity_verified': False,
   'obtain': 1,
   'order': 1,
   'payment_verified': True,
   'phone_verified': False,
   'posts-': 1,
   'profile_complete': True,
   'research': 1,
   'result': 1,
   'rewrit': 1,
   'subject': 1,
   'thoroughli': 1,
   'write': 1},
  'F'),
 ({'3.0': 1,
   '8+': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 't',
   'Last': 'e',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'ajax': 1,
   'c': 1,
   'deposit_made': False,
   'desktop': 1,
   'develop': 2,
   'driver': 1,
   'email_verified': True,
   'embed': 1,
   'employe': 1,
   'etc': 3,
   'experi': 1,
   'facebook_connected': False,
   'firm': 1,
   'framework': 2,
   'hotel': 1,
   'identity_verified': False,
   'instal': 1,
   'java': 1,
   'javascript': 1,
   'jdbc': 1,
   'jsp': 1,
   'jstl': 1,
   'like': 1,
   'manag': 4,
   'monitor': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'platform.i': 1,
   'profession': 1,
   'profile_complete': True,
   'programm': 1,
   'project': 2,
   'remot': 2,
   'secur': 1,
   'servlet': 1,
   'soa': 1,
   'softwar': 3,
   'spring': 2,
   'supermarket': 1,
   'system': 4,
   'templat': 1,
   'use': 1,
   'variou': 1,
   'webservic': 1,
   'windows/linux': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'o',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'anytim': 1,
   'around': 1,
   'avail': 1,
   'deposit_made': False,
   'email_verified': True,
   'enough': 1,
   'facebook_connected': False,
   'fair': 1,
   'identity_verified': False,
   'internet': 1,
   'mess': 1,
   "n't": 1,
   'payment_verified': False,
   'phone_verified': False,
   'pleas': 1,
   'profile_complete': True,
   'scam': 1,
   'scammer': 1,
   'start': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
   'First': 's',
   'Last': '8',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'broaden': 1,
   'complement': 1,
   'deposit_made': False,
   'dynam': 1,
   'email_verified': True,
   'environ': 1,
   'experi': 2,
   'facebook_connected': False,
   'gain': 1,
   'horizon': 1,
   'identity_verified': False,
   'knowledg': 1,
   'payment_verified': False,
   'phone_verified': False,
   'practic': 1,
   'profile_complete': True,
   'theoret': 1,
   'work': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(12, 13), match='1'>,
   'First': 'n',
   'Last': '8',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'anyon': 1,
   'complet': 1,
   'data': 2,
   'deposit_made': True,
   'email_verified': True,
   'entri': 2,
   'facebook_connected': False,
   'guy': 1,
   'hard': 1,
   'identity_verified': False,
   'mani': 2,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'requir': 1,
   'sincer': 1,
   'websit': 1,
   'work': 2},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'api': 1,
   'codeignit': 1,
   'css': 1,
   'deposit_made': False,
   'develop': 1,
   'dynam': 1,
   'email_verified': True,
   'experi': 1,
   'extens': 1,
   'facebook': 1,
   'facebook_connected': True,
   'handl': 1,
   'html': 1,
   'identity_verified': False,
   'javascript': 1,
   'joomla': 1,
   'jqueri': 1,
   'knowledg': 1,
   'larg': 1,
   'mysql': 1,
   'number': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'qualifi': 1,
   'talent': 1,
   'technic': 1,
   'wordpress': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'custom': 1,
   'deliveri': 1,
   'deposit_made': False,
   'electr': 1,
   'electron': 1,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'lot': 1,
   'loyal': 1,
   'mba': 1,
   'one': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'promis': 1,
   'regret': 1,
   'skill': 1,
   'time': 1,
   'type': 1,
   'variou': 1,
   'work': 1,
   'would': 1,
   'write': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'e',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'best': 1,
   'break': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'famili': 1,
   'freelanc': 1,
   'good': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'reason': 1,
   'start': 1,
   'took': 1,
   'tri': 1,
   'want': 1,
   'work': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'Digit': None,
   'First': 'O',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'blog': 1,
   'creativ': 1,
   'data': 1,
   'databas': 1,
   'deposit_made': True,
   'done': 1,
   'email_verified': True,
   'end': 1,
   'entri': 1,
   'facebook_connected': False,
   'full': 1,
   'get': 1,
   'identity_verified': False,
   'look': 1,
   'make': 1,
   'meet': 1,
   'muscl': 1,
   'opportun': 1,
   'part': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profici': 1,
   'profile_complete': True,
   'quickli': 1,
   'quit': 1,
   'still': 1,
   'time': 3,
   'tri': 1,
   'work': 2,
   'writer': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'y',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'activ': 1,
   'age': 1,
   'also': 3,
   'apart': 1,
   'attitud': 1,
   'blog': 1,
   'busi': 1,
   'come': 1,
   'content': 1,
   'creat': 1,
   'creativ': 2,
   'deadlin': 1,
   'deposit_made': False,
   'develop': 1,
   'discuss': 1,
   'earli': 1,
   'edit': 1,
   'editori': 1,
   'email_verified': True,
   'essay': 1,
   'experi': 2,
   'experienc': 1,
   'extens': 1,
   'facebook_connected': False,
   'field': 1,
   'filipino': 1,
   'forum': 1,
   'freelanc': 1,
   'gaf': 1,
   'good': 1,
   'great': 1,
   'high': 1,
   'hold': 2,
   'identity_verified': False,
   'independ': 1,
   'join': 1,
   'joy': 1,
   'level': 1,
   'love': 1,
   'mani': 1,
   'matur': 1,
   'much': 2,
   'need': 1,
   'network': 1,
   'payment_verified': False,
   'philippin': 1,
   'phone_verified': False,
   'pleas': 1,
   'poem': 1,
   'post': 1,
   'practic': 1,
   'profil': 1,
   'profile_complete': True,
   'qualiti': 2,
   'review': 1,
   'right': 1,
   'sampl': 1,
   'self-motiv': 1,
   'seo': 1,
   'sever': 1,
   'short': 1,
   'side': 1,
   'sinc': 1,
   'site': 1,
   'spectrum': 1,
   'stori': 1,
   'talent': 1,
   'target': 1,
   'team': 2,
   'toward': 1,
   'visit': 2,
   'web': 2,
   'well': 4,
   'work': 2,
   'worker': 1,
   'write': 3,
   'writer': 4,
   'year': 1},
  'F'),
 ({"'ve": 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'o',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'abroad': 1,
   'academ': 2,
   'alway': 1,
   'audio/video': 1,
   'basi': 1,
   'come': 1,
   'commun': 1,
   'degre': 1,
   'deposit_made': False,
   'deriv': 1,
   'email_verified': True,
   'engin': 1,
   'english': 1,
   'excel': 1,
   'experi': 3,
   'extend': 1,
   'facebook_connected': False,
   'fellow': 1,
   'fluent': 1,
   'franc': 1,
   'french': 1,
   'full-tim': 1,
   'human': 1,
   'humanit': 1,
   'identity_verified': False,
   'ii': 1,
   'interest': 1,
   'ireland': 1,
   'itali': 1,
   'job': 1,
   'legal': 1,
   'level': 1,
   'malta': 1,
   'master': 1,
   'medical/pharmaceut': 1,
   'militari': 1,
   'past': 1,
   'payment_verified': False,
   'period': 1,
   'phone_verified': False,
   'profile_complete': True,
   'redactor': 1,
   'research': 2,
   'result': 1,
   'scienc': 2,
   'scotland': 1,
   'sinc': 1,
   'six': 1,
   'skill': 1,
   'social': 1,
   'steward/interpret': 1,
   'studi': 1,
   'technic': 1,
   'technician': 2,
   'text': 1,
   'translat': 2,
   'two': 1,
   'variou': 1,
   'work': 2,
   'write': 1,
   'writer': 1,
   'year': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'adventur': 1,
   'bigger': 1,
   'client': 1,
   'creativ': 1,
   'deposit_made': False,
   'email_verified': True,
   'enthusiasm': 1,
   'envis': 1,
   'facebook_connected': False,
   'fast-learn': 1,
   'full': 1,
   'help': 1,
   'identity_verified': False,
   'market': 2,
   'motiv': 1,
   'onlin': 2,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pictur': 1,
   'profile_complete': True,
   'results-ori': 1,
   'seo': 1,
   'staff': 1,
   'thinker': 1,
   'three': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 's',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'activ': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'final': 1,
   'go': 1,
   'home': 1,
   'husband': 1,
   'identity_verified': False,
   'interest': 1,
   'keep': 1,
   'kid': 1,
   'mom': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'school': 1,
   'start': 1,
   'stay': 1,
   'support': 1},
  'M'),
 ({'.net': 1,
   'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'c',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'analysi': 1,
   'applic': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'in-depth': 1,
   'investig': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'proven': 1,
   'skill': 1,
   'sql': 1,
   'strong': 1},
  'M'),
 ({'12+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'l',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'seo': 1,
   'web': 1,
   'year': 1},
  'M'),
 ({"'m": 1,
   '10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'advic': 1,
   'apach': 1,
   'base': 1,
   'blog': 1,
   'bug': 1,
   'chang': 1,
   'codeignit': 1,
   'contact': 1,
   'databas': 1,
   'deposit_made': False,
   'design': 1,
   'drupal': 1,
   'email_verified': True,
   'etc': 1,
   'experi': 1,
   'facebook_connected': False,
   'fast': 1,
   'favorit': 1,
   'fix': 1,
   'framework': 1,
   'freelancer.i': 1,
   'help': 2,
   'host': 1,
   'hourli': 1,
   'identity_verified': False,
   'instal': 1,
   'joomla': 1,
   'lamp': 1,
   'lighttpd': 1,
   'like': 4,
   'linux': 1,
   'lot': 1,
   'mysql': 1,
   'need': 2,
   'payment_verified': False,
   'phone_verified': False,
   'php': 3,
   'pleas': 1,
   'price': 1,
   'profile_complete': True,
   'project.i': 1,
   'rate': 1,
   'script': 1,
   'server': 1,
   'setup': 1,
   'site': 2,
   'sqlite': 1,
   'suggest': 1,
   'web': 5,
   'whole': 1,
   'wordpress': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='8'>,
   'First': 'O',
   'Last': '6',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'appear': 1,
   'click': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'game': 1,
   'home': 1,
   'identity_verified': False,
   'logo': 1,
   'page': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'program': 1,
   'puzzl': 1},
  'M'),
 ({'9': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='e'>,
   'add': 1,
   'anim': 1,
   'banner': 1,
   'budget': 1,
   'client': 1,
   'creat': 1,
   'custom': 2,
   'deposit_made': False,
   'design': 3,
   'dream': 1,
   'email_verified': True,
   'etc': 1,
   'experi': 1,
   'facebook_connected': False,
   'flash': 2,
   'globe.i': 1,
   'graphic': 1,
   'high': 1,
   'identity_verified': False,
   'illustr': 1,
   'insid': 1,
   'lot': 1,
   'make': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'program': 1,
   'qualiti': 1,
   'realiti': 1,
   'web': 1,
   'wordpress': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'...': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'account': 1,
   'australian': 1,
   'custom': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'inbound': 1,
   'outbound': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'repres': 1,
   'servic': 1,
   'us': 1,
   'work': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ajax': 1,
   'android': 1,
   'cm': 1,
   'cs5': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'getway': 1,
   'html': 1,
   'identity_verified': False,
   'illustr': 1,
   'implement': 1,
   'integr': 1,
   'mysqljavascript': 1,
   'payment': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'variou': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'z',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'effect': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'model': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photorealist': 1,
   'profile_complete': True,
   'render': 1,
   'special': 1,
   'textur': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'deposit_made': False,
   'editor': 1,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'region': 1,
   'station': 1,
   'tv': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'accord': 1,
   'base': 1,
   'cart': 2,
   'compani': 1,
   'custom': 1,
   'deal': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'full': 1,
   'identity_verified': False,
   'individu': 1,
   'modul': 1,
   'need': 1,
   'oscommerc': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'seo': 1,
   'shop': 2,
   'structur': 1},
  'M'),
 ({"'m": 1,
   '2d': 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'anim': 1,
   'artist': 1,
   'check': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'updat': 1,
   'visual': 1,
   'websit': 1,
   'work': 1},
  'M'),
 ({'15': 1,
   '300': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='0'>,
   'First': 'c',
   'Last': '2',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(5, 6), match='a'>,
   'afford': 1,
   'attract': 1,
   'busi': 1,
   'deposit_made': False,
   'develop': 1,
   'dilig': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'industri': 1,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': False,
   'plu': 1,
   'produc': 1,
   'profile_complete': True,
   'rate': 1,
   'serv': 1,
   'type': 1,
   'variou': 1,
   'web': 1,
   'websit': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='Z'>,
   'Digit': None,
   'First': 'Z',
   'Last': 'h',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'angularj': 1,
   'cm': 1,
   'coder': 1,
   'cs-cart': 1,
   'css3': 1,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'facebook_connected': True,
   'frontend': 1,
   'html5': 1,
   'identity_verified': False,
   'implement': 1,
   'javascript': 1,
   'joomla': 1,
   'jqueri': 1,
   'magento': 1,
   'modx': 1,
   'nativ': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'site': 1,
   'skill': 1,
   'strong': 1,
   'web': 2,
   'wordpress': 1},
  'M'),
 ({"'m": 1,
   "'s": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'p',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'anim': 2,
   'atlanta': 1,
   'contact': 1,
   'creat': 1,
   'creativ': 1,
   'deposit_made': False,
   'design': 2,
   'discuss': 1,
   'email_verified': True,
   'facebook_connected': True,
   'flash': 1,
   'freelanc': 1,
   'georgia': 1,
   'greet': 1,
   'identity_verified': False,
   'illustr': 1,
   'let': 1,
   'love': 1,
   'network': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'today': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'z',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'appli': 1,
   'best': 1,
   'dedic': 1,
   'deposit_made': True,
   'determin': 1,
   'email_verified': True,
   'facebook_connected': True,
   'hand': 2,
   'hard': 1,
   'identity_verified': False,
   'job': 1,
   'lose': 1,
   'payment_verified': False,
   'phone_verified': True,
   'price': 1,
   'profile_complete': True,
   'success': 1,
   'task': 1,
   'whether': 1,
   'win': 1,
   'work': 1},
  'M'),
 ({"'m": 1,
   '3': 1,
   '8': 2,
   'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'h',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'aesthet': 1,
   'allow': 1,
   'appli': 1,
   'attent': 1,
   'cm': 1,
   'collabor': 1,
   'combin': 1,
   'conceptu': 2,
   'creativ': 1,
   'css': 1,
   'custom': 1,
   'cut': 1,
   'deposit_made': True,
   'design': 4,
   'detail': 1,
   'develop': 4,
   'dreamweav': 1,
   'edg': 1,
   'email_verified': True,
   'except': 1,
   'experi': 1,
   'expertis': 1,
   'extrem': 1,
   'facebook_connected': False,
   'firework': 1,
   'flash': 1,
   'freehand': 1,
   'get': 1,
   'graphic': 1,
   'identity_verified': False,
   'illustr': 1,
   'imagereadi': 1,
   'involv': 1,
   'joomla': 1,
   'launch': 2,
   'leader': 1,
   'leadership': 1,
   'lot': 1,
   'manag': 1,
   'ms': 1,
   'ning': 1,
   'nonsens': 1,
   'payment_verified': False,
   'philippin': 1,
   'phone_verified': False,
   'photoshop': 1,
   'php': 1,
   'process': 1,
   'profici': 1,
   'profile_complete': True,
   'project': 1,
   'rang': 1,
   'research': 1,
   'rigor': 1,
   'sens': 1,
   'site': 1,
   'skill': 1,
   'strong': 1,
   'team': 2,
   'theme': 1,
   'usabl': 1,
   'web': 4,
   'web/graph': 1,
   'wordpress': 1,
   'year': 1},
  'F'),
 ({'1.': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='5'>,
   'First': 'R',
   'Last': '4',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'asset': 1,
   'atm': 1,
   'authent': 3,
   'base': 3,
   'busi': 1,
   'card': 4,
   'complet': 4,
   'concept': 1,
   'cryptographi': 1,
   'deploy': 1,
   'deposit_made': True,
   'design': 4,
   'develop': 4,
   'email_verified': True,
   'fabric': 1,
   'facebook_connected': False,
   'finger': 1,
   'identity_verified': False,
   'implement': 1,
   'integr': 1,
   'internet': 1,
   'key': 1,
   'manag': 2,
   'palm': 1,
   'particularli': 1,
   'payment_verified': False,
   'phone_verified': False,
   'print': 1,
   'process': 1,
   'profile_complete': True,
   'servic': 1,
   'smart': 4,
   'softwar': 3,
   'solut': 2,
   'strong': 1,
   'system': 2,
   'technolog': 1,
   'termin': 1,
   'track': 2,
   'vehicl': 1,
   'web': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'z',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'cultur': 1,
   'deposit_made': False,
   'email_verified': True,
   'energet': 1,
   'explor': 1,
   'facebook_connected': False,
   'fast': 1,
   'flexibl': 1,
   'free': 1,
   'honest': 1,
   'identity_verified': False,
   'learn': 1,
   'learner': 1,
   'new': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'shop': 1,
   'spirit': 1,
   'work': 1},
  'F'),
 ({"'s": 1,
   '...': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'h',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'biggest': 1,
   'bpo': 1,
   'copi': 1,
   'current': 1,
   'deposit_made': False,
   'editor': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'one': 1,
   'payment_verified': False,
   'philippin': 1,
   'phone_verified': False,
   'profile_complete': True,
   'work': 1},
  'F'),
 ({"'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'z',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'bachelor': 1,
   'current': 1,
   'degre': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'identity_verified': False,
   'journal': 1,
   'kent': 1,
   'name': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'state': 1,
   'univers': 1},
  'F'),
 ({"'s": 1,
   '1.': 1,
   '10': 1,
   '100': 1,
   '2.': 1,
   '3.': 1,
   '4.': 1,
   '5': 1,
   '5.': 1,
   '6.': 1,
   '7.': 1,
   '8.': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 's',
   'Last': '7',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'accuraci': 1,
   'admin': 1,
   'asp': 1,
   'assur': 1,
   'case': 1,
   'check': 2,
   'commerc': 1,
   'confid': 1,
   'control': 1,
   'convers': 1,
   'data': 3,
   'deposit_made': False,
   'develop': 2,
   'dispatch': 1,
   'document': 1,
   'email_verified': True,
   'entri': 1,
   'experi': 1,
   'extract': 1,
   'facebook_connected': False,
   'file': 1,
   'final': 1,
   'follow': 2,
   'group': 1,
   'hold': 1,
   'html': 1,
   'identity_verified': False,
   'instruct': 1,
   'involv': 1,
   'macro': 1,
   'mainli': 1,
   'mine': 1,
   'mysql': 1,
   'oper': 3,
   'payment_verified': False,
   'pdf': 1,
   'person': 1,
   'phone_verified': False,
   'php': 1,
   'processor': 1,
   'profile_complete': True,
   'project': 2,
   'qc': 3,
   'qualiti': 3,
   'rest': 1,
   'scrape': 1,
   'scrapper': 1,
   'screen': 1,
   'script': 1,
   'separ': 1,
   'setup': 1,
   'softwar': 3,
   'special': 1,
   'supervisor': 1,
   'support': 1,
   'team': 2,
   'train': 1,
   'use': 1,
   'vba': 1,
   'vers': 1,
   'web': 1,
   'well': 3,
   'word': 1,
   'work': 1,
   'write': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'almost': 1,
   'alway': 1,
   'base': 1,
   'basi': 1,
   'believ': 1,
   'chanc': 1,
   'client': 2,
   'commit': 1,
   'credibl': 1,
   'deliv': 1,
   'deposit_made': False,
   'effect': 1,
   'email_verified': True,
   'expect': 1,
   'facebook_connected': False,
   'fulfil': 1,
   'get': 1,
   'given': 1,
   'good': 3,
   'identity_verified': False,
   'keep': 1,
   'love': 1,
   'made': 1,
   'make': 1,
   'manner': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'promis': 1,
   'qualiti': 1,
   'relat': 1,
   'rest': 1,
   'simplic': 1,
   'strength': 1,
   'strongli': 1,
   'time': 1,
   'timelin': 1,
   'trust': 1,
   'work': 2,
   'work.i': 1},
  'M'),
 ({'2009': 6,
   '3': 2,
   'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'p',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   '\\xe2\\u20ac\\u0153multi': 2,
   '\\xe2\\u20ac\\u0153pharmaci': 2,
   '\\xe2\\u20ac\\u201c': 2,
   'a+': 2,
   'abil': 3,
   'abl': 2,
   'accept': 1,
   'achiev': 2,
   'adopt': 1,
   'agent': 2,
   'ajax': 2,
   'almost': 2,
   'analyz': 1,
   'appl': 2,
   'applic': 12,
   'approv': 2,
   'april': 2,
   'architectur': 2,
   'area': 2,
   'base': 4,
   'block': 2,
   'challeng': 1,
   'chanc': 2,
   'chang': 1,
   'china': 2,
   'complet': 8,
   'comput': 2,
   'confer': 2,
   'cse': 2,
   'css': 2,
   'current': 2,
   'databas': 2,
   'degre': 2,
   'deposit_made': False,
   'designsoftwar': 2,
   'desir': 2,
   'develop': 6,
   'developmenteduc': 2,
   'developmentmobil': 2,
   'developmentweb': 2,
   'easili': 2,
   'effect': 1,
   'email_verified': True,
   'energi': 2,
   'eng': 2,
   'engag': 2,
   'engin': 7,
   'environ': 1,
   'experi': 4,
   'facebook_connected': False,
   'familiar': 1,
   'final': 2,
   'framework': 1,
   'free': 1,
   'fudan': 2,
   'given': 2,
   'go': 2,
   'goal': 1,
   'got': 4,
   'groceri': 2,
   'highli': 2,
   'hon': 2,
   'html': 2,
   'ide': 5,
   'identity_verified': False,
   'implement': 2,
   'individu': 1,
   'interest': 1,
   'involv': 2,
   'ipad': 2,
   'iphone/ipod': 2,
   'ironon': 2,
   'j2ee': 2,
   'j2se': 4,
   'jade': 1,
   'java': 1,
   'javascript': 2,
   'join': 2,
   'jsp': 2,
   'kind': 1,
   'knowledg': 2,
   'languag': 8,
   'lanka': 2,
   'level': 2,
   'linux': 2,
   'look': 1,
   'ltd': 2,
   'main': 4,
   'manag': 2,
   'management\\xe2\\u20ac\\x9d': 2,
   'mobil': 4,
   'month': 2,
   'moratuwa': 2,
   'moratuwa.experi': 2,
   'mysql': 1,
   'name': 4,
   'netbean': 5,
   'netbeansi': 2,
   'next': 2,
   'non': 2,
   'one': 4,
   'oracl': 1,
   'packag': 2,
   'paper': 2,
   'payment_verified': False,
   'phone_verified': False,
   'platform': 1,
   'player': 1,
   'problem': 1,
   'process': 1,
   'process.i': 1,
   'profil': 1,
   'profile_complete': True,
   'program': 6,
   'project': 19,
   'projects.i': 1,
   'publish': 2,
   'pvt': 2,
   'r': 4,
   'relat': 2,
   'research': 5,
   'scienc': 2,
   'servicesenterpris': 2,
   'seven': 2,
   'shanghai': 2,
   'sm': 2,
   'socket': 3,
   'softwar': 6,
   'sound': 2,
   'special': 2,
   'sql': 2,
   'sqldatabas': 2,
   'sri': 2,
   'stress': 1,
   'success': 6,
   'swing': 2,
   'system': 2,
   'system\\xe2\\u20ac\\x9d': 2,
   'team': 1,
   'technolog': 8,
   'throughout': 2,
   'time': 1,
   'train': 2,
   'two': 4,
   'ubuntu': 2,
   'univers': 6,
   'use': 6,
   'web': 2,
   'well': 5,
   'window': 3,
   'within': 1,
   'work': 11,
   'xml': 2,
   'year': 6},
  'M'),
 ({'.net': 2,
   '2.0': 1,
   '2000': 2,
   '2000.': 1,
   '2005': 1,
   '2007': 1,
   '6.0': 1,
   '9': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='9'>,
   'First': 'k',
   'Last': '9',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'asp': 2,
   'asp.net': 3,
   'audit': 1,
   'basic': 1,
   'c': 2,
   'css': 1,
   'custom': 1,
   'deposit_made': False,
   'e-card': 1,
   'email_verified': True,
   'environ': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'file': 1,
   'flash': 1,
   'framework': 1,
   'frontpag': 1,
   'gym': 1,
   'identity_verified': False,
   'ii': 1,
   'includ': 1,
   'intern': 1,
   'intranet': 1,
   'java': 1,
   'knowledg': 1,
   'learn': 1,
   'lionbridg': 1,
   'manag': 1,
   'moss': 2,
   'ms': 2,
   'patni': 2,
   'payment_verified': False,
   'phone_verified': False,
   'pivot': 1,
   'profici': 1,
   'profile_complete': True,
   'qualiti': 1,
   'report': 1,
   'return': 1,
   'satisfact': 1,
   'script': 1,
   'server': 4,
   'sql': 3,
   'survey': 1,
   'system\\twindow': 1,
   'tax': 1,
   'technolog': 1,
   'titl': 6,
   'tool': 2,
   'use': 1,
   'vb': 1,
   'vb.net': 1,
   'vbscript': 1,
   'visual': 1,
   'websit': 4,
   'window': 1,
   'xml': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'l',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'accuraci': 1,
   'believ': 1,
   'compani': 1,
   'deposit_made': False,
   'email_verified': True,
   'evalu': 1,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'hardwork': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'properli': 1,
   'readi': 1,
   'success': 1,
   'work': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': None,
   'First': 'N',
   'Last': 'y',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'acquir': 1,
   'addit': 1,
   'afraid': 1,
   'also': 1,
   'analysi': 2,
   'analyt': 1,
   'approv': 1,
   'assist': 1,
   'bachelor\\xe2\\u20ac\\u2122': 1,
   'calculu': 1,
   'circuit': 1,
   'commun': 1,
   'cours': 1,
   'cover': 1,
   'creat': 1,
   'degre': 1,
   'deposit_made': False,
   'differ': 1,
   'email_verified': True,
   'engin': 2,
   'excel': 1,
   'experi': 1,
   'facebook_connected': True,
   'found': 1,
   'fundament': 1,
   'gain': 1,
   'identity_verified': False,
   'implement': 1,
   'includ': 5,
   'initi': 1,
   'issu': 1,
   'lab': 1,
   'materi': 1,
   'may': 1,
   'mechatron': 1,
   'monitor': 1,
   'new': 2,
   'organiz': 1,
   'orient': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'physic': 1,
   'potenti': 1,
   'problem': 2,
   'process': 1,
   'product': 1,
   'profile_complete': True,
   'projects.i': 1,
   'regard': 1,
   'risk': 1,
   'robot': 1,
   'run': 1,
   'search': 1,
   'skill': 2,
   'solut': 1,
   'solv': 1,
   'spend': 1,
   'strong': 1,
   'studi': 1,
   'take': 1,
   'team': 1,
   'test': 1,
   'time': 1,
   'train': 1,
   'type': 1,
   'use': 1,
   'work': 1},
  'M'),
 ({"'s": 1,
   '2004': 1,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'also': 1,
   'amazon': 1,
   'articl': 1,
   'author': 1,
   'bestsel': 1,
   'book': 1,
   'check': 1,
   'client': 1,
   'could': 1,
   'cover': 1,
   'current': 1,
   'debt': 1,
   'deposit_made': True,
   'directori': 1,
   'earn': 1,
   'email_verified': True,
   'english': 1,
   'enjoy': 1,
   'entertain': 1,
   'experi': 1,
   'facebook_connected': True,
   'fact': 1,
   'far': 1,
   'freelanc': 1,
   'googl': 1,
   'great': 2,
   'health': 1,
   'high': 1,
   'huge': 1,
   'husband': 1,
   'identity_verified': False,
   'india': 1,
   'level': 1,
   'long-term': 1,
   'math': 1,
   'maya': 1,
   'middl': 1,
   'name': 1,
   'new': 1,
   'partner': 1,
   'payment_verified': False,
   'pet': 1,
   'phone_verified': True,
   'primari': 1,
   'profess': 1,
   'profile_complete': True,
   'rang': 2,
   'revenu': 1,
   'review': 1,
   'school': 2,
   'scienc': 1,
   'search': 1,
   'set': 1,
   'sever': 1,
   'sinc': 1,
   'subject': 1,
   'submit': 1,
   'teach': 1,
   'teacher': 1,
   'turn': 1,
   'way': 1,
   'wide': 1,
   'work.i': 1,
   'write': 3},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 't',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'certifi': 1,
   'challeng': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'good': 1,
   'identity_verified': False,
   'insight': 1,
   'interest': 1,
   'payment_verified': False,
   'phone_verified': False,
   'problem': 1,
   'profile_complete': True,
   'softwar': 1,
   'startup': 1,
   'work': 1},
  'M'),
 ({"'s": 1,
   "'ve": 1,
   '10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'x',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'bachelor': 1,
   'build': 1,
   'comput': 1,
   'degre': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': True,
   'familiar': 1,
   'framework': 1,
   'hold': 1,
   'identity_verified': False,
   'languag': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'scienc': 1,
   'sinc': 1,
   'varieti': 1,
   'websit': 1,
   'wide': 1},
  'M'),
 ({'...': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': None,
   'First': 'F',
   'Last': 'V',
   'Numchar': 3,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='E'>,
   'deposit_made': True,
   'draw': 1,
   'email_verified': True,
   'facebook_connected': False,
   'hand': 1,
   'identity_verified': False,
   'old': 1,
   'payment_verified': True,
   'phone_verified': True,
   'photo': 1,
   'profile_complete': True,
   'restor': 1,
   'sketch': 1,
   'vector': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'o',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'current': 1,
   'decad': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'employ': 1,
   'experi': 1,
   'facebook_connected': False,
   'free': 1,
   'freelanc': 1,
   'identity_verified': False,
   'like': 1,
   'much': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'program': 1,
   'still': 1,
   'time': 1,
   'web': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'achiev': 1,
   'answer': 1,
   'care': 1,
   'client': 3,
   'clients.w': 1,
   'commit': 3,
   'commun': 1,
   'compani': 1,
   'custom': 1,
   'deposit_made': True,
   'educ': 1,
   'email_verified': True,
   'everyth': 1,
   'facebook_connected': True,
   'goal': 1,
   'happen': 1,
   'help': 1,
   'highest': 1,
   'identity_verified': False,
   'innov': 1,
   'level': 1,
   'make': 1,
   'market': 1,
   'may': 1,
   'need': 1,
   'onlin': 1,
   'patient': 1,
   'payment_verified': True,
   'phone_verified': True,
   'power': 1,
   'profession': 1,
   'profile_complete': True,
   'promis': 1,
   'provid': 3,
   'question': 1,
   'regard': 1,
   'respons': 1,
   'see': 1,
   'servic': 3,
   'sincer': 1,
   'succeed': 1,
   'take': 1,
   'time': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'accord': 1,
   'applic': 1,
   'deposit_made': True,
   'email_verified': True,
   'exactli': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'javascript': 1,
   'mysql': 1,
   'payment_verified': True,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'requir': 1,
   'time': 1,
   'web': 1,
   'wordpress': 1},
  'M'),
 ({'.net': 1,
   '9i/10g': 1,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'r',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abil': 1,
   'advantag': 1,
   'app': 1,
   'applic': 1,
   'busi': 1,
   'c': 1,
   'commun': 1,
   'comput': 1,
   'data': 4,
   'db': 1,
   'deposit_made': False,
   'develop': 1,
   'educ': 1,
   'email_verified': True,
   'employ': 1,
   'entri': 2,
   'experi': 3,
   'facebook_connected': False,
   'five': 1,
   'growth': 1,
   'identity_verified': False,
   'java': 1,
   'long-term': 1,
   'master': 1,
   'mca': 1,
   'name': 1,
   'opportun': 1,
   'oracl': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'qualif': 1,
   'seek': 1,
   'skill': 1,
   'softwar': 1,
   'two': 1,
   'valid': 2,
   'within': 1,
   'would': 1,
   'year': 2},
  'M'),
 ({'6': 1,
   '8': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'algorithm': 1,
   'also': 1,
   'c++': 1,
   'challenges.w': 1,
   'charg': 1,
   'check': 1,
   'company.w': 1,
   'deposit_made': False,
   'distribut': 1,
   'dont': 1,
   'email_verified': True,
   'experi': 2,
   'facebook_connected': False,
   'huge': 1,
   'identity_verified': False,
   'index': 1,
   'innov': 1,
   'interest': 1,
   'java': 1,
   'ms': 1,
   'page': 1,
   'payment_verified': False,
   'perl': 1,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'program': 2,
   'programm': 1,
   'python': 1,
   'script': 1,
   'search': 1,
   'small': 1,
   'sourc': 1,
   'studio': 1,
   'team': 1,
   'via': 1,
   'visual': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'8': 1,
   '9+': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='3'>,
   'First': 'a',
   'Last': '3',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'abil': 1,
   'adob': 2,
   'applic': 1,
   'base': 1,
   'center': 1,
   'commun': 1,
   'concept': 1,
   'corpor': 1,
   'css': 1,
   'deposit_made': True,
   'design': 4,
   'direct': 1,
   'dreamweav': 1,
   'email_verified': True,
   'environ': 1,
   'etc': 1,
   'excel': 1,
   'experi': 2,
   'facebook_connected': True,
   'factor': 1,
   'firework': 1,
   'home': 1,
   'html': 1,
   'human': 1,
   'identity_verified': False,
   'illustr': 1,
   'implement': 1,
   'interact': 1,
   'interfac': 3,
   'intranet': 1,
   'javascript': 1,
   'knowledg': 2,
   'macromedia': 2,
   'methodolog': 1,
   'model': 1,
   'overal': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'profile_complete': True,
   'record': 1,
   'site': 2,
   'skill': 1,
   'strategi': 1,
   'success': 1,
   'team': 1,
   'thorough': 1,
   'track': 1,
   'ui': 1,
   'usabl': 1,
   'use': 1,
   'user': 4,
   'user-cent': 1,
   'web': 3,
   'work': 2,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'm',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'access': 1,
   'compos': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'encor': 1,
   'ethic': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'high': 1,
   'identity_verified': False,
   'logic': 1,
   'ms': 1,
   'music': 1,
   'musician': 1,
   'payment_verified': False,
   'pdf': 1,
   'phone_verified': True,
   'pro': 1,
   'produc': 1,
   'profile_complete': True,
   'standard': 1,
   'strong': 1,
   'teacher': 1,
   'web': 1,
   'word': 1,
   'wordpress': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'a',
   'Last': '1',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'ad': 2,
   'agenc': 1,
   'alreadi': 1,
   'campaign': 1,
   'creativ': 1,
   'degre': 1,
   'deposit_made': False,
   'documentari': 1,
   'editor': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'identity_verified': False,
   'journalist': 1,
   'lead': 1,
   'made': 1,
   'magazin': 1,
   'mass': 1,
   'minut': 1,
   'movi': 1,
   'news': 1,
   'payment_verified': False,
   'per': 1,
   'phone_verified': False,
   'profile_complete': True,
   'reput': 1,
   'speed': 1,
   'team': 1,
   'type': 1,
   'websit': 1,
   'well': 2,
   'word': 1,
   'work': 4},
  'M'),
 ({'10': 1,
   '2003': 1,
   '3': 1,
   '4+': 1,
   '5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'v',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'addit': 1,
   'advertis': 1,
   'alreadi': 1,
   'base': 2,
   'cs': 1,
   'css': 2,
   'deposit_made': False,
   'develop': 2,
   'done': 1,
   'email_verified': True,
   'facebook_connected': True,
   'grate': 1,
   'html': 2,
   'i`m': 1,
   'idea': 1,
   'identity_verified': False,
   'includ': 1,
   'integr': 3,
   'joomla': 1,
   'manag': 1,
   'market': 1,
   'mysql': 1,
   'onlin': 5,
   'payment': 3,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'php': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 2,
   'sinc': 1,
   'skill': 1,
   'sm': 1,
   'softwar': 1,
   'stori': 2,
   'system': 1,
   'test': 1,
   'virtuemart': 1,
   'web': 4,
   'websit': 1,
   'year': 1},
  'M'),
 ({'5.5': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'accur': 1,
   'also': 2,
   'applic': 1,
   'area': 2,
   'avail': 1,
   'conveni': 1,
   'crm': 1,
   'data': 1,
   'deposit_made': True,
   'email_verified': True,
   'enabl': 1,
   'entri': 1,
   'especi': 1,
   'experi': 1,
   'facebook_connected': False,
   'gmt': 1,
   'high': 1,
   'hr': 1,
   'identity_verified': False,
   'inform': 1,
   'internet': 1,
   'like': 1,
   'make': 1,
   'meet': 1,
   'mutual': 1,
   'object': 1,
   'offer': 1,
   'onlin': 1,
   'packag': 1,
   'payment_verified': False,
   'per': 1,
   'phone_verified': True,
   'price': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 2,
   'qualiti': 1,
   'reason': 1,
   'report': 1,
   'requir': 1,
   'research': 1,
   'salesforc': 1,
   'servic': 3,
   'shall': 1,
   'softwar': 1,
   'statu': 1,
   'technolog': 1,
   'test': 1,
   'though': 1,
   'time': 3,
   'use': 1,
   'work': 1,
   'zone': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'l',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'graphic': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True},
  'M'),
 ({'1983.': 1,
   '2007': 1,
   '2d': 1,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'air': 1,
   'anim': 1,
   'born': 1,
   'bueno': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'finish': 1,
   'identity_verified': False,
   'illustr': 1,
   'imag': 1,
   'payment_verified': False,
   'phone_verified': False,
   'portfolio': 1,
   'profile_complete': True,
   'sound': 1,
   'studi': 1,
   'uba': 1,
   'univers': 1,
   'work': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'i',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'achiev': 1,
   'array': 1,
   'autom': 1,
   'back': 1,
   'brainstorm': 1,
   'build': 1,
   'comput': 2,
   'dedic': 1,
   'degre': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'end': 1,
   'engin': 1,
   'experi': 1,
   'facebook_connected': False,
   'front': 1,
   'goal': 1,
   'identity_verified': False,
   'initi': 1,
   'intens': 1,
   'knowledg': 1,
   'labor': 1,
   'maintain': 1,
   'method': 1,
   'optim': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'process': 1,
   'profession': 1,
   'profile_complete': True,
   'scienc': 1,
   'script': 1,
   'softwar': 2,
   'use': 1,
   'variou': 1,
   'vast': 1,
   'web': 1,
   'websit': 1},
  'M'),
 ({'12': 1,
   '2': 1,
   '40': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='0'>,
   'First': 't',
   'Last': '9',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'abil': 1,
   'administr': 1,
   'advic': 2,
   'base': 2,
   'basi': 1,
   'branch': 1,
   'busi': 2,
   'career': 1,
   'colleg': 1,
   'column': 1,
   'creat': 1,
   'custom': 1,
   'deposit_made': False,
   'email_verified': True,
   'ex': 1,
   'experi': 1,
   'facebook_connected': False,
   'forum': 1,
   'give': 1,
   'held': 1,
   'identity_verified': False,
   'interest': 1,
   'launch': 1,
   'locat': 1,
   'look': 3,
   'market': 1,
   'need': 1,
   'new': 1,
   'offer': 1,
   'old': 1,
   'open': 1,
   'owner': 1,
   'past': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'prepar': 1,
   'profile_complete': True,
   'public': 2,
   'rais': 1,
   'relat': 1,
   'research': 2,
   'sale': 1,
   'servic': 1,
   'son': 1,
   'subcontractor': 1,
   'support': 1,
   'topic': 2,
   'watch': 1,
   'websit': 1,
   'well': 1,
   'wisconsin': 1,
   'woman': 1,
   'work': 2,
   'would': 1,
   'write': 1,
   'writer': 1,
   'yr': 3},
  'F'),
 ({'30': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'V',
   'Last': '2',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'deposit_made': False,
   'edit': 1,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'high': 1,
   'identity_verified': False,
   'odd': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'proofread': 1,
   'school': 1,
   'teacher': 1,
   'transcrib': 1,
   'year': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='G'>,
   'Digit': None,
   'First': 'G',
   'Last': 'z',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'cm': 1,
   'deposit_made': True,
   'design': 1,
   'ecommerc': 1,
   'email_verified': True,
   'facebook_connected': True,
   'freelanc': 1,
   'graphic': 1,
   'identity_verified': False,
   'much': 1,
   'payment_verified': True,
   'phone_verified': True,
   'photoshop': 1,
   'profile_complete': True,
   'specialis': 1,
   'web': 1,
   'wordpress': 1,
   'xhtml/css': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'c': 1,
   'c++': 1,
   'deposit_made': True,
   'email_verified': True,
   'expert': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'studio': 1,
   'visual': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='1'>,
   'First': 'd',
   'Last': 'g',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'html': 1,
   'identity_verified': False,
   'list': 1,
   'open': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php3': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'servic': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'v',
   'Last': '0',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'administr': 1,
   'avail': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': True,
   'hire': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'secur': 1,
   'specialist': 1,
   'system': 1,
   'web': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'h',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'abil': 3,
   'account': 1,
   'advertis': 1,
   'applic': 1,
   'articl': 1,
   'aspect': 1,
   'command': 1,
   'comput': 1,
   'confid': 1,
   'consid': 1,
   'copy-writ': 1,
   'coral': 1,
   'craigslist': 1,
   'custom': 1,
   'deposit_made': False,
   'design': 4,
   'draw': 1,
   'edit': 1,
   'email_verified': True,
   'employ': 1,
   'experi': 1,
   'expert': 1,
   'expertis': 1,
   'facebook_connected': True,
   'field': 1,
   'flash': 1,
   'free': 1,
   'good': 2,
   'graphic': 2,
   'grate': 1,
   'grip': 1,
   'hand': 1,
   'highli': 1,
   'identity_verified': False,
   'illustr': 1,
   'independ': 1,
   'knowledg': 1,
   'logo': 2,
   'make': 1,
   'market': 1,
   'meet': 1,
   'member': 1,
   'ms': 1,
   'mx': 1,
   'need': 1,
   'network': 1,
   'offic': 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 2,
   'post': 1,
   'pressur': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 1,
   'review': 1,
   'scienc': 1,
   'serv': 1,
   'servic': 1,
   'strong': 1,
   'team': 3,
   'use': 1,
   'web': 1,
   'web-design': 1,
   'well': 2,
   'work': 4,
   'would': 1,
   'write': 2},
  'M'),
 ({"'ve": 1,
   '--': 5,
   '2.': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': None,
   'First': 'V',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ajax': 1,
   'align': 1,
   'also': 1,
   'bellow': 1,
   'cm': 1,
   'cmmi': 2,
   'coordin': 1,
   'css': 1,
   'databas': 1,
   'db': 1,
   'definit': 1,
   'deposit_made': False,
   'develop': 1,
   'disciplin': 1,
   'ejb': 1,
   'email_verified': True,
   'engin': 2,
   'exper': 1,
   'experienc': 1,
   'extj': 1,
   'facebook_connected': False,
   'find': 1,
   'govern': 1,
   'gwt': 1,
   'hibern': 1,
   'highli': 1,
   'hs': 1,
   'html': 1,
   'identity_verified': False,
   'implement': 1,
   'java': 3,
   'jboss': 1,
   'jpa': 1,
   'jqueri': 1,
   'jsf': 1,
   'jsp': 1,
   'level': 1,
   'link': 1,
   'mainli': 1,
   'ms': 1,
   'mysql': 1,
   'oracl': 3,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'platform': 1,
   'pm': 1,
   'portlet': 1,
   'postgresql': 1,
   'process': 2,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'python': 1,
   'qa': 1,
   'rubi': 1,
   'rup': 1,
   'script': 1,
   'server': 1,
   'servlet': 1,
   'skill': 2,
   'soa': 2,
   'softwar': 2,
   'sql': 2,
   'suit': 1,
   'summari': 1,
   'sybas': 1,
   'technolog': 1,
   'tomcat': 1,
   'top': 1,
   'uml': 1,
   'use': 1,
   'web': 2,
   'weblog': 1,
   'webspher': 1,
   'work': 1,
   'xhtml': 1},
  'M'),
 ({'.i': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
   'First': 'a',
   'Last': '1',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'affair': 1,
   'also': 1,
   'analyt': 1,
   'carv': 1,
   'challeng': 1,
   'commun': 1,
   'compani': 1,
   'corpor': 1,
   'deposit_made': False,
   'develop': 1,
   'earn': 1,
   'educ': 1,
   'electron': 1,
   'email_verified': True,
   'employees.i': 1,
   'engin': 2,
   'facebook_connected': True,
   'firm': 1,
   'firm.i': 1,
   'futur': 1,
   'good': 1,
   'great': 1,
   'human': 1,
   'identity_verified': False,
   'immers': 1,
   'industri': 1,
   'instrument': 1,
   'ltd': 1,
   'manag': 2,
   'ministri': 1,
   'new': 1,
   'nich': 1,
   'payment_verified': False,
   'phone_verified': False,
   'plan': 1,
   'privat': 1,
   'profile_complete': True,
   'project': 1,
   'pvt': 1,
   'recent': 1,
   'skill': 1,
   'softwar': 1,
   'start': 1,
   'team': 1,
   'want': 1,
   'went': 1,
   'work': 1,
   'worth': 1},
  'M'),
 ({'3': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'h',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'o',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'alt': 1,
   'articl': 1,
   'blog': 2,
   'bookmark': 1,
   'classifi': 1,
   'creat': 2,
   'deposit_made': False,
   'descript': 1,
   'directori': 1,
   'email_verified': True,
   'etc': 2,
   'experi': 1,
   'facebook_connected': True,
   'feed': 2,
   'h1': 1,
   'html': 1,
   'identity_verified': False,
   'implement': 1,
   'keyword': 1,
   'meta': 1,
   'network': 1,
   'optim': 1,
   'page': 4,
   'payment_verified': False,
   'phone_verified': True,
   'post': 1,
   'press': 1,
   'profile_complete': True,
   'releas': 1,
   'rss': 2,
   'sitemap': 2,
   'social': 2,
   'submiss': 7,
   'success': 1,
   'tag': 1,
   'titl': 1,
   'write': 2,
   'xml': 1},
  'M'),
 ({"'s": 1,
   '2005': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'o',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'bachelor': 1,
   'commun': 1,
   'compani': 1,
   'contributor': 1,
   'degre': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'freelancer.com': 1,
   'hold': 1,
   'identity_verified': True,
   'journal': 1,
   'major': 1,
   'mass': 1,
   'news': 1,
   'one': 1,
   'payment_verified': False,
   'phone_verified': True,
   'press': 1,
   'profile_complete': True,
   'rate': 1,
   'regular': 1,
   'releas': 1,
   'sinc': 1,
   'tech': 1,
   'top': 1,
   'websit': 1,
   'writer': 3},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'amazon': 1,
   'commerc': 1,
   'deposit_made': True,
   'e': 1,
   'email_verified': True,
   'etc': 1,
   'expert.': 1,
   'facebook_connected': False,
   'financi': 1,
   'flipkart': 1,
   'freelanc': 1,
   'hardwar': 1,
   'identity_verified': False,
   'like': 1,
   'onlin': 1,
   'payment_verified': True,
   'phone_verified': False,
   'product': 1,
   'profession': 1,
   'profile_complete': True,
   'sell': 2,
   'servic': 1,
   'site': 1,
   'snapdeal': 1,
   'variou': 1},
  'M'),
 ({'11i': 1,
   '1999': 1,
   '2009': 2,
   '28': 2,
   '85': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'k',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '\\xe2\\u20ac\\u201c': 2,
   'abil': 1,
   'account': 12,
   'accur': 1,
   'achiev': 1,
   'action': 1,
   'activ': 2,
   'age': 1,
   'agil': 4,
   'agreement': 1,
   'alloc': 2,
   'alto': 1,
   'american': 2,
   'analys': 1,
   'analysi': 2,
   'appli': 1,
   'april': 1,
   'area': 1,
   'articl': 1,
   'asia': 1,
   'associ': 2,
   'asst': 1,
   'audit': 1,
   'award': 1,
   'balanc': 1,
   'bank': 5,
   'belt': 2,
   'benchmark': 1,
   'better': 1,
   'book': 1,
   'build': 2,
   'buildup': 1,
   'busi': 7,
   'cash': 1,
   'caus': 1,
   'center': 4,
   'central': 1,
   'certif': 2,
   'certifi': 1,
   'chain': 2,
   'challeng': 1,
   'china': 4,
   'chines': 1,
   'clear': 3,
   'clearanc': 1,
   'client': 4,
   'clients\\xe2\\u20ac\\u2122': 1,
   'close': 1,
   'coe': 1,
   'collect': 1,
   'commit': 1,
   'commun': 2,
   'compani': 1,
   'complianc': 3,
   'conduct': 1,
   'consum': 1,
   'continu': 1,
   'contract': 1,
   'control': 1,
   'corpor': 2,
   'cost': 8,
   'cpc': 1,
   'current': 1,
   'custom': 2,
   'daili': 2,
   'data': 2,
   'date': 1,
   'decis': 1,
   'deliveri': 1,
   'depart': 1,
   'deposit_made': False,
   'develop': 3,
   'divis': 1,
   'doc': 1,
   'dynam': 1,
   'effect': 3,
   'email_verified': True,
   'ensur': 1,
   'er': 1,
   'especi': 1,
   'excel': 3,
   'exist': 2,
   'expens': 2,
   'experi': 1,
   'exposur': 1,
   'express': 1,
   'extern': 1,
   'f': 1,
   'face': 1,
   'facebook_connected': False,
   'facilit': 1,
   'financ': 3,
   'financi': 1,
   'focu': 4,
   'formul': 1,
   'function': 2,
   'gb': 1,
   'gener': 1,
   'give': 1,
   'global': 5,
   'green': 1,
   'grievanc': 1,
   'gross': 1,
   'group': 1,
   'growth': 1,
   'guidanc': 1,
   'hand': 1,
   'handl': 1,
   'head': 1,
   'hon': 1,
   'honeywel': 3,
   'hong': 1,
   'hotel': 1,
   'hr': 1,
   'identity_verified': False,
   'implement': 4,
   'imprest': 2,
   'improv': 2,
   'includ': 1,
   'individu': 1,
   'institut': 1,
   'interact': 2,
   'intern': 2,
   'internationalmanag': 1,
   'internet': 1,
   'interperson': 1,
   'inventori': 1,
   'involv': 2,
   'issu': 2,
   'japa': 2,
   'japan': 1,
   'job': 1,
   'karvi': 1,
   'knowledg': 3,
   'kong': 1,
   'lead': 1,
   'leader': 1,
   'ledger': 1,
   'legaci': 1,
   'legal': 1,
   'level': 1,
   'line': 1,
   'locat': 2,
   'mainten': 1,
   'make': 2,
   'manag': 7,
   'map': 1,
   'market': 2,
   'match': 1,
   'matrix': 1,
   'meet': 1,
   'mi': 3,
   'million': 2,
   'monthli': 1,
   'motiv': 1,
   'movement': 1,
   'multi': 1,
   'n\\ttransit': 2,
   'nation': 1,
   'new': 2,
   'niit': 1,
   'non': 1,
   'nov-2005': 1,
   'objectiveto': 1,
   'off-shor': 1,
   'onlin': 2,
   'oper': 4,
   'optim': 1,
   'optimum': 1,
   'oracl': 1,
   'order': 1,
   'organ': 1,
   'organis': 1,
   'organiz': 1,
   'outstand': 1,
   'p2p': 2,
   'pacif': 1,
   'palo': 1,
   'paper': 1,
   'paramet': 1,
   'part': 2,
   'partner': 1,
   'pay': 2,
   'payabl': 3,
   'payment': 2,
   'payment_verified': False,
   'payrol': 1,
   'peopl': 2,
   'people\\xe2\\u20ac\\u2122': 1,
   'per': 2,
   'perform': 1,
   'phone_verified': False,
   'plan': 1,
   'plant': 3,
   'point': 1,
   'polici': 1,
   'prc': 2,
   'procedur': 1,
   'process': 11,
   'procur': 8,
   'product': 1,
   'profession': 1,
   'profile_complete': True,
   'program': 2,
   'progress': 1,
   'project': 13,
   'propos': 1,
   'purchas': 1,
   'put': 1,
   'qualiti': 2,
   'queri': 2,
   'r': 1,
   'receiv': 1,
   'reconcili': 6,
   'recruit': 1,
   'reduc': 1,
   'region': 1,
   'relat': 2,
   'relationship': 3,
   'remot': 1,
   'render': 1,
   'report': 4,
   'republ': 1,
   'request': 1,
   'requir': 1,
   'resolut': 1,
   'resourc': 3,
   'respect': 1,
   'respons': 1,
   'review': 1,
   'rfp': 1,
   'rich': 1,
   'root': 1,
   'run': 1,
   'sale': 2,
   'scan': 1,
   'servic': 7,
   'set': 1,
   'setup': 1,
   'share': 3,
   'situat': 1,
   'skill': 2,
   'smooth': 1,
   'solut': 3,
   'special': 1,
   'specialist-': 1,
   'ssc': 2,
   'stakehold': 2,
   'standard': 1,
   'strategi': 1,
   'streamlin': 2,
   'sub': 1,
   'success': 1,
   'suppli': 2,
   'support': 2,
   'suspens': 1,
   'sync': 1,
   'system': 2,
   'team': 10,
   'technolog': 2,
   'templat': 1,
   'till': 1,
   'time': 1,
   'toward': 1,
   'train': 2,
   'transfer': 2,
   'transit': 3,
   'two': 1,
   'understand': 1,
   'unit': 1,
   'univers': 1,
   'usd': 1,
   'user': 1,
   'util': 1,
   'variou': 1,
   'vendor': 3,
   'voucher': 1,
   'weekli': 1,
   'well': 2,
   'wing': 2,
   'work': 4,
   'worldwid': 1,
   'years\\xe2\\u20ac\\u2122': 1,
   'zero': 1},
  'F'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'd',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'consult': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'engin': 1,
   'experi': 1,
   'facebook_connected': True,
   'field': 1,
   'identity_verified': False,
   'local': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'structur': 2,
   'work': 1,
   'yr': 1},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'ana': 1,
   'deposit_made': False,
   'desaign': 1,
   'email_verified': True,
   'facebook_connected': False,
   'grapic': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'surya': 1},
  'M'),
 ({'..': 1,
   '...': 42,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
   'First': 'l',
   'Last': '4',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'deposit_made': False,
   'email_verified': True,
   'excel': 2,
   'facebook_connected': False,
   'identity_verified': False,
   'internet': 1,
   'knowledg': 1,
   'ms.': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'surf': 1,
   'word': 1},
  'M'),
 ({'2005': 1,
   '2checkout': 1,
   '6.0': 1,
   '9i/10g/11g': 1,
   '9x': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '\\xe2\\u20ac\\u201c': 1,
   'abap': 1,
   'access': 2,
   'acrobat': 1,
   'actionscript': 1,
   'activ': 2,
   'activex': 1,
   'ad': 1,
   'admin': 1,
   'adob': 1,
   'advertis': 2,
   'ajax': 1,
   'alt': 1,
   'amazon': 1,
   'analysi': 2,
   'analyt': 2,
   'analyz': 1,
   'anim': 1,
   'anywher': 1,
   'apach': 4,
   'api': 1,
   'articl': 1,
   'asp': 1,
   'asp.net': 1,
   'aspdotnetstorefront': 1,
   'astra': 2,
   'azur': 2,
   'banner': 1,
   'bcp': 1,
   'bea': 1,
   'blog': 3,
   'bookmark': 1,
   'borland': 1,
   'box': 1,
   'br': 1,
   'bugzilla': 1,
   'build': 1,
   'busi': 3,
   'button': 2,
   'c': 1,
   'c++': 1,
   'c/c++': 1,
   'cakephp': 1,
   'cam': 1,
   'campaign': 1,
   'cart': 1,
   'ce': 1,
   'center': 1,
   'cgi': 1,
   'cgi/perl': 1,
   'channel': 1,
   'check': 1,
   'checkout': 2,
   'cic': 1,
   'classifi': 1,
   'clear': 1,
   'client': 1,
   'cluster': 1,
   'cobol': 1,
   'coda': 1,
   'codeignit': 1,
   'com': 2,
   'comment': 3,
   'competitor': 1,
   'composit': 1,
   'consult': 1,
   'content': 1,
   'control': 2,
   'convert': 1,
   'coreldraw': 1,
   'creation': 3,
   'crystal': 1,
   'css': 1,
   'custom': 1,
   'cv': 1,
   'cyber': 1,
   'data': 2,
   'databas': 2,
   'db2': 1,
   'dedic': 2,
   'deliv': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 6,
   'devexpress': 1,
   'dhtml': 1,
   'director': 2,
   'directori': 3,
   'div': 1,
   'dm': 1,
   'dn': 1,
   'dom': 1,
   'domain': 1,
   'dotnetnuk': 1,
   'dreamweav': 1,
   'drupal': 2,
   'eagl': 1,
   'eclips': 1,
   'editor': 1,
   'ejb': 1,
   'email': 2,
   'email_verified': True,
   'endeavor': 1,
   'engin': 1,
   'enterpris': 1,
   'entiti': 1,
   'erwin': 1,
   'excel': 1,
   'experienc': 1,
   'explain': 1,
   'fab': 1,
   'facebook': 1,
   'facebook_connected': False,
   'feed': 1,
   'firework': 1,
   'flash': 2,
   'flexibl': 1,
   'forum': 1,
   'foundat': 1,
   'framework': 1,
   'frontpag': 1,
   'ftp': 1,
   'gateway': 1,
   'googl': 3,
   'grail': 1,
   'graph': 2,
   'gwt': 1,
   'h1': 1,
   'high': 1,
   'host': 1,
   'hp-ux': 1,
   'html': 1,
   'hyperlink': 1,
   'hyperv': 1,
   'ibm': 2,
   'idea': 1,
   'identity_verified': False,
   'ii': 2,
   'illustr': 1,
   'improv': 1,
   'index': 1,
   'informatica': 1,
   'innov': 1,
   'intellig': 1,
   'interbas': 1,
   'jadasit': 2,
   'java': 1,
   'javascript': 1,
   'jcl': 1,
   'jdbc': 1,
   'jira': 1,
   'jmeter': 1,
   'joomla': 1,
   'jqueri': 1,
   'json': 1,
   'jsp': 2,
   'jstl': 1,
   'kentico': 2,
   'keyword': 2,
   'keyword/phras': 1,
   'knockoutj': 1,
   'lab': 1,
   'lamp': 1,
   'like': 3,
   'link': 7,
   'linux': 1,
   'list': 1,
   'live': 1,
   'load': 2,
   'loader': 1,
   'loadrunn': 1,
   'log': 1,
   'lotu': 1,
   'mac': 1,
   'magento': 1,
   'manag': 2,
   'manageengin': 1,
   'market': 3,
   'mc-credit': 2,
   'mc-debit': 2,
   'md': 1,
   'media': 2,
   'mesh': 2,
   'meta': 1,
   'method': 1,
   'metro': 1,
   'mfc': 1,
   'microsoft': 8,
   'migrat': 1,
   'model': 1,
   'modx': 1,
   'monitor': 1,
   'ms': 5,
   'ms-access': 1,
   'msf': 1,
   'mt': 1,
   'multithread': 1,
   'mvc': 1,
   'mvp': 1,
   'mvvm': 1,
   'mysql': 3,
   'netbean': 1,
   'network': 2,
   'nopcommerc': 1,
   'note': 1,
   'notepad++': 1,
   'nuke': 2,
   'nunit': 1,
   'obie': 1,
   'object': 1,
   'one': 1,
   'ood': 1,
   'oop': 1,
   'open': 1,
   'optim': 5,
   'oracl': 1,
   'oscommerc': 1,
   'outsid': 1,
   'pagemak': 1,
   'panic': 1,
   'payment': 1,
   'payment_verified': False,
   'paypal': 1,
   'pdf': 1,
   'perform': 3,
   'phone_verified': True,
   'photoshop': 2,
   'php': 2,
   'pl/sql': 1,
   'plan': 1,
   'post': 1,
   'postgresql': 1,
   'powerpoint': 1,
   'ppc': 1,
   'press': 1,
   'prestashop': 1,
   'prism': 1,
   'profession': 1,
   'profil': 1,
   'profile_complete': True,
   'project': 4,
   'puls': 1,
   'pump': 1,
   'python': 1,
   'qc': 1,
   'qtp': 1,
   'qualifi': 1,
   'qualiti': 3,
   'queri': 1,
   'quest': 1,
   'quick': 1,
   'ration': 3,
   'releas': 1,
   'report': 1,
   'ria': 1,
   'rmi': 1,
   'robot': 1,
   'rss': 2,
   'rubi': 1,
   'runner': 1,
   'rup': 1,
   'samurai': 1,
   'satisfact': 1,
   'search': 1,
   'seo': 2,
   'server': 3,
   'servic': 3,
   'servlet': 1,
   'share': 1,
   'sharepoint': 1,
   'ship': 1,
   'siebel': 1,
   'silk': 2,
   'silverlight': 1,
   'silverstrip': 1,
   'simul': 4,
   'sitemap': 1,
   'sm': 1,
   'soa': 1,
   'soap': 1,
   'social': 4,
   'softwar': 1,
   'solari': 1,
   'sort': 1,
   'sourc': 1,
   'sourcesaf': 1,
   'speedi': 1,
   'spring': 1,
   'sqa': 1,
   'sql': 3,
   'sql*plu': 1,
   'sqlite': 1,
   'ssa': 1,
   'ssh': 1,
   'ssi': 1,
   'ssl': 1,
   'ssr': 1,
   'star': 1,
   'starteam': 1,
   'stream': 1,
   'stripe': 1,
   'structur': 1,
   'struts2': 1,
   'studio': 4,
   'submiss': 8,
   'subvers': 1,
   'suit': 1,
   'svn': 1,
   'swing': 1,
   'sybas': 1,
   'symfoni': 1,
   'sync': 1,
   'system': 2,
   't-sql': 1,
   'tag': 1,
   'team': 5,
   'test': 6,
   'tester': 1,
   'three': 1,
   'titl': 1,
   'toad': 1,
   'tool': 1,
   'tower': 1,
   'transpar': 1,
   'tune': 2,
   'two': 1,
   'umbraco': 1,
   'uml': 1,
   'unix': 1,
   'use': 1,
   'user': 1,
   'util': 2,
   'valid': 1,
   'valu': 1,
   'vb': 1,
   'vb.net': 1,
   'vbscript': 1,
   'version': 3,
   'video': 1,
   'view': 1,
   'virtuemart-': 1,
   'visio': 1,
   'visual': 4,
   'vpn': 1,
   'vss': 1,
   'w3c': 1,
   'wamp': 1,
   'way': 4,
   'wcf': 1,
   'wealth': 1,
   'web': 1,
   'webform': 1,
   'webload': 1,
   'websit': 2,
   'win': 1,
   'window': 5,
   'winform': 1,
   'wizard': 2,
   'wm': 1,
   'word': 1,
   'wordpress': 1,
   'work': 4,
   'workbench': 1,
   'wpf': 1,
   'writer': 1,
   'wsdl': 1,
   'xampp': 1,
   'xhtml': 1,
   'xi': 1,
   'xml': 2,
   'xp': 1,
   'xpath': 1,
   'xsl': 1,
   'xslt': 1,
   'yii': 1,
   'yui': 1,
   'zen': 1,
   'zend': 3},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'adob': 2,
   'banner': 1,
   'corel': 1,
   'deposit_made': True,
   'design': 2,
   'draw': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'html': 1,
   'identity_verified': False,
   'illustr': 1,
   'logo': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'php': 1,
   'profile_complete': True},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='5'>,
   'First': 'b',
   'Last': '5',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'css3': 1,
   'deposit_made': False,
   'develop': 3,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'good': 1,
   'html5': 1,
   'identity_verified': False,
   'java': 1,
   'javascript': 1,
   'look': 1,
   'need': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'skill': 1,
   'strong': 1,
   'websit': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'sincer': 1,
   'want': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'ahead': 1,
   'certainli': 1,
   'commit': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'forward': 1,
   'hard': 1,
   'identity_verified': False,
   'look': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 2,
   'submit': 1,
   'worker': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'best': 1,
   'countri': 1,
   'deposit_made': True,
   'descript': 1,
   'email_verified': True,
   'facebook_connected': False,
   'fast': 1,
   'feedback': 1,
   'honest': 1,
   'identity_verified': False,
   'payment_verified': True,
   'peopl': 1,
   'phone_verified': False,
   'profile_complete': True,
   'variou': 1,
   'work': 1},
  'M'),
 ({'.a': 1,
   'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'f',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'art': 1,
   'blank': 1,
   'cinema': 1,
   'color': 1,
   'commun': 1,
   'degre': 1,
   'deposit_made': False,
   'design': 3,
   'email_verified': True,
   'etern': 1,
   'even': 1,
   'experiment': 1,
   'facebook_connected': False,
   'graphic': 2,
   'identity_verified': False,
   'imag': 1,
   'import': 1,
   'ingredi': 1,
   'interest': 1,
   'involv': 1,
   'logo': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photographi': 1,
   'profession': 1,
   'profile_complete': True,
   'space': 1,
   'student': 1,
   'task': 1,
   'type': 1,
   'typographi': 1,
   'visual': 1,
   'websit': 1},
  'M'),
 ({'--': 1,
   '15': 1,
   '2006': 1,
   '2013': 1,
   '23': 1,
   '60': 1,
   '7': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': None,
   'First': 'V',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   '\\tlevel': 2,
   'convers': 1,
   'data': 3,
   'deposit_made': False,
   'do': 1,
   'earlier': 2,
   'email_verified': True,
   'english': 1,
   'entri': 1,
   'etc': 1,
   'excel': 1,
   'facebook_connected': True,
   'feb': 2,
   'file': 1,
   'format': 1,
   'hindi': 1,
   'identity_verified': False,
   'know': 1,
   'member': 1,
   'ms': 1,
   'offic': 1,
   'payment_verified': False,
   'perl': 2,
   'phone_verified': True,
   'powerpoint': 1,
   'process': 1,
   'profile_complete': True,
   'program': 1,
   'script': 1,
   'sinc': 1,
   'speed': 1,
   'statu': 1,
   'transcript': 1,
   'translat': 1,
   'type': 2,
   'usernam': 1,
   'well-vers': 1,
   'window': 1,
   'word': 1,
   'wpm.i': 1},
  'M'),
 ({"''": 8,
   '...': 3,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'k',
   'Last': '1',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   '``': 12,
   'accur': 1,
   'adher': 1,
   'also': 1,
   'client': 1,
   'defin': 1,
   'definit': 1,
   'deliv': 1,
   'deposit_made': True,
   'detail-ori': 1,
   'done': 1,
   'effect': 1,
   'email_verified': True,
   'estim': 2,
   'excel': 3,
   'extrem': 1,
   'facebook_connected': True,
   'fast': 2,
   'forward': 1,
   'futur': 1,
   'gave': 1,
   'good': 2,
   'great': 1,
   'help': 1,
   'high': 1,
   'highli': 3,
   'identity_verified': False,
   'inform': 1,
   'job': 2,
   'knowledg': 1,
   'let': 1,
   'look': 1,
   'manner': 1,
   'next': 1,
   'origin': 1,
   'outstand': 1,
   'payment_verified': True,
   'phone_verified': True,
   'prefer': 1,
   'profession': 1,
   'profile_complete': True,
   'provid': 7,
   'qualiti': 2,
   'quick': 1,
   'recommend': 3,
   'requir': 1,
   'respons': 2,
   'satisfi': 1,
   'schedul': 1,
   'skill': 1,
   'talk': 1,
   'thank': 2,
   'time': 2,
   'use': 2,
   'valentin': 2,
   'well': 1,
   'work': 6,
   'worker': 1},
  'M'),
 ({'16': 1,
   '2': 1,
   '2006': 1,
   '2007': 1,
   '2009': 1,
   '27': 1,
   '4': 1,
   '70': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'z',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   '\\t': 1,
   'access': 1,
   'account': 1,
   'accur': 1,
   'appoint': 1,
   'appropri': 1,
   'april': 1,
   'assign': 1,
   'assist': 1,
   'ave.': 3,
   'b2b/b2c': 1,
   'bldg': 1,
   'build': 1,
   'campaign': 2,
   'career': 1,
   'carri': 1,
   'center': 2,
   'citi': 2,
   'client': 1,
   'clients-': 1,
   'coordin': 1,
   'copy/past': 1,
   'creativ': 1,
   'crm': 1,
   'custom': 1,
   'data': 1,
   'de': 1,
   'deposit_made': False,
   'direct': 1,
   'email_verified': True,
   'estat': 1,
   'etc': 2,
   'excel': 1,
   'expect': 1,
   'facebook_connected': False,
   'februari': 1,
   'gil': 2,
   'group': 1,
   'growth': 1,
   'guidelin': 1,
   'identity_verified': False,
   'inbound': 1,
   'inc': 1,
   'intern': 1,
   'lead': 1,
   'leav': 1,
   'makati': 2,
   'manag': 1,
   'market': 1,
   'may': 1,
   'meet': 1,
   'networking-': 1,
   'open': 1,
   'outbound': 1,
   'paseo': 1,
   'payment_verified': False,
   'peoplesupport': 1,
   'person': 1,
   'philippin': 3,
   'phone_verified': False,
   'process': 1,
   'profile_complete': True,
   'provid': 1,
   'puyat': 2,
   'real': 1,
   'relat': 1,
   'repres': 1,
   'respons': 1,
   'roxa': 1,
   'sale': 2,
   'salesforc': 1,
   'sever': 1,
   'social': 1,
   'supervisor': 1,
   'support': 1,
   'time': 1,
   'virtual': 1,
   'workflow': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ajax': 1,
   'css': 1,
   'deposit_made': False,
   'done': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'jqueri': 1,
   'mani': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'use': 1},
  'F'),
 ({"'m": 1,
   '16': 1,
   '17': 1,
   '18': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'area': 1,
   'complianc': 1,
   'copywrit': 1,
   'degre': 1,
   'deposit_made': False,
   'distribut': 1,
   'email_verified': True,
   'experi': 3,
   'facebook_connected': True,
   'fit': 1,
   'focus': 1,
   'food': 1,
   'health': 1,
   'hi': 1,
   'identity_verified': True,
   'inform': 1,
   'lifetim': 1,
   'manag': 1,
   'mine': 1,
   'oper': 1,
   'organ': 1,
   'passion': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': True,
   'profile_complete': True,
   'restaur': 1,
   'safeti': 1,
   'system': 1,
   'technolog': 1,
   'wareh': 1,
   'year': 3},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'h',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'also': 1,
   'concentr': 1,
   'content': 1,
   'creat': 1,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'experi': 1,
   'facebook_connected': False,
   'guid': 3,
   'help': 1,
   'identity_verified': False,
   'main': 1,
   'mainli': 1,
   'onlin': 1,
   'optim': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'quick': 1,
   'search': 1,
   'start': 1,
   'task': 1,
   'troubleshoot': 1,
   'user': 1,
   'write': 1},
  'M'),
 ({"'ve": 2,
   '.net': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'j',
   'Last': '8',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'believ': 1,
   'best': 1,
   'c': 1,
   'crystal': 1,
   'deposit_made': False,
   'email_verified': True,
   'expertis': 1,
   'facebook_connected': False,
   'give': 1,
   'identity_verified': False,
   'like': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'server': 1,
   'sql': 1,
   'technolog': 1,
   'variou': 1,
   'work': 2},
  'M'),
 ({"'m": 1,
   "'ve": 2,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'o',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'also': 1,
   'basi': 1,
   'clip': 1,
   'collabor': 1,
   'compani': 1,
   'confirm': 1,
   'continu': 1,
   'curiou': 1,
   'deadline-ori': 1,
   'deposit_made': False,
   'dig': 1,
   'email_verified': True,
   'expert': 1,
   'facebook_connected': True,
   'fact': 1,
   'fb': 1,
   'freelanc': 1,
   'happi': 1,
   'hone': 1,
   'identity_verified': False,
   'includ': 1,
   'inform': 1,
   'instagram': 1,
   'journal': 1,
   'mani': 1,
   'market': 1,
   'media': 1,
   'much': 1,
   'number': 1,
   'onlin': 1,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': False,
   'pinterest': 1,
   'prepar': 1,
   'profile_complete': True,
   'public': 1,
   'report': 1,
   'research': 2,
   'resourc': 1,
   'result': 1,
   'share': 1,
   'skill': 1,
   'social': 1,
   'spend': 1,
   'stori': 1,
   'strong': 1,
   'time': 2,
   'twitter': 1,
   'websit': 1,
   'work': 1,
   'write': 1,
   'writer': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'applic': 1,
   'c': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'expert': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'interest': 1,
   'intern': 1,
   'kernel': 1,
   'linux': 2,
   'network': 2,
   'particularli': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'program': 1,
   'wide': 1},
  'M'),
 ({'--': 7,
   '9000': 2,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'e',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   '\\xc3\\xa0': 1,
   '\\xc3\\xa1rea': 1,
   'acli': 2,
   'acquir': 1,
   'aerospac': 1,
   'alto': 2,
   'analysi': 2,
   'angola': 2,
   'ano': 1,
   'argentina': 2,
   'artex': 2,
   'automot': 1,
   'bahrein': 2,
   'berlitz': 2,
   'born': 1,
   'br': 2,
   'brazil': 1,
   'busi': 1,
   'cabo': 1,
   'cape': 1,
   'case': 4,
   'certifi': 1,
   'client': 1,
   'coast': 1,
   'colombia': 1,
   'commod': 2,
   'como': 2,
   'compani': 4,
   'conhecimento': 1,
   'control': 1,
   'costa': 1,
   'countri': 1,
   'custom': 1,
   'da': 2,
   'de': 5,
   'denmark': 1,
   'deposit_made': True,
   'desd': 1,
   'do': 3,
   'dupont': 2,
   'e': 11,
   'effect': 1,
   'electron': 1,
   'em': 4,
   'email_verified': True,
   'empresa': 2,
   'end': 1,
   'est': 1,
   'experi': 2,
   'experi\\xc3\\xaancia': 2,
   'facebook_connected': False,
   'field': 1,
   'former': 1,
   'franc': 1,
   'fundament': 1,
   'germani': 1,
   'hands-on': 1,
   'hong': 1,
   'identity_verified': False,
   "int'l": 2,
   'intern': 1,
   'iso': 4,
   'japan': 1,
   'ji': 2,
   'knowledg': 1,
   'kong': 1,
   'kuwait': 2,
   'lebanon': 1,
   'leon': 2,
   'live': 1,
   'logist': 1,
   'maxion': 2,
   'measur': 1,
   'medic': 1,
   'meet': 1,
   'mexico': 1,
   'minha': 1,
   'mode': 1,
   'modo': 1,
   'morocco': 1,
   'na': 2,
   'nigeria': 1,
   'para': 1,
   'paraguay': 1,
   'payment_verified': True,
   'phone_verified': True,
   'plan': 1,
   'portug': 2,
   'process': 1,
   'procur': 2,
   'product': 1,
   'profile_complete': True,
   'purchas': 1,
   'qs': 2,
   'qualidad': 2,
   'qualiti': 2,
   'ramo': 1,
   'sale': 1,
   'sap': 1,
   'seneg': 2,
   'servic': 2,
   'sever': 1,
   'share': 1,
   'siemen': 2,
   'sierra': 2,
   'sinc': 1,
   'sistema': 1,
   'spain': 1,
   'splice': 2,
   'statist': 1,
   'sweden': 1,
   'switzerland': 1,
   'system': 1,
   'taiwan': 2,
   'todo': 1,
   'trade': 2,
   'usa': 1,
   'venezuela': 2,
   'volta': 2,
   'work': 1,
   'year': 1},
  'M'),
 ({'15+': 1,
   '201': 1,
   '5+': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'd',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'certifi': 1,
   'cloud': 1,
   'configur': 1,
   'consult': 1,
   'deposit_made': False,
   'dev': 1,
   'email_verified': True,
   'experi': 1,
   'expert': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'salesforc': 1,
   'servic': 1,
   'year': 1},
  'M'),
 ({"''": 1,
   "'s": 1,
   '1000': 1,
   '20': 1,
   '3.0': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': None,
   'First': 'F',
   'Last': 'y',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   '``': 1,
   'actor': 1,
   'adob': 1,
   'audit': 1,
   'averag': 1,
   'channel': 1,
   'deep': 1,
   'deposit_made': True,
   'door': 1,
   'email_verified': True,
   'facebook_connected': True,
   'frank': 3,
   'friendli': 1,
   'guy': 1,
   'hard': 1,
   'identity_verified': False,
   'interfac': 1,
   'jame': 1,
   'next': 1,
   'nt': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'radio': 1,
   'sell': 1,
   'slightli': 1,
   'studio': 1,
   'talent': 1,
   'usb': 1,
   'use': 1,
   'voic': 4,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'j',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'alway': 1,
   'best': 1,
   'deposit_made': False,
   'email_verified': True,
   'excel': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'independ': 1,
   'like': 1,
   'member': 1,
   'offer': 1,
   'payment_verified': False,
   'phone_verified': True,
   'prefer': 1,
   'profile_complete': True,
   'team': 1,
   'work': 3},
  'M'),
 ({'1': 1,
   '5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'assign': 1,
   'consult': 1,
   'current': 1,
   'deposit_made': False,
   'edit': 1,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'hour': 1,
   'identity_verified': False,
   'ms': 1,
   'nich': 1,
   'payment_verified': False,
   'per': 1,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'technic': 1,
   'variou': 1,
   'vers': 1,
   'well': 1,
   'work': 2,
   'write': 1,
   'writer': 1},
  'F'),
 ({"'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'p',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'app': 2,
   'base': 1,
   'c': 1,
   'care': 1,
   'compani': 1,
   'construct': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'everi': 1,
   'experi': 1,
   'facebook_connected': False,
   'free': 1,
   'freelanc': 1,
   'identity_verified': False,
   'japan': 1,
   'night': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'programm': 1,
   'project': 1,
   'small': 1,
   'take': 1,
   'time': 1,
   'websit': 1,
   'work': 1},
  'M'),
 ({"'m": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'contest': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'footag': 1,
   'found': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'place': 1,
   'profile_complete': True,
   'recent': 1,
   'screenwrit': 1,
   'script': 1,
   'short': 1,
   'third': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'I',
   'Last': '1',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'adapt': 1,
   'agil': 1,
   'alway': 1,
   'ambiti': 1,
   'area': 1,
   'coverag': 1,
   'dedic': 1,
   'deposit_made': False,
   'develop': 1,
   'done': 1,
   'email_verified': True,
   'everi': 1,
   'experi': 1,
   'facebook_connected': False,
   'full': 1,
   'get': 1,
   'greedi': 1,
   'hard': 1,
   'identity_verified': False,
   'job': 1,
   'meet': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'requir': 1,
   'sever': 1,
   'step': 1,
   'trust': 1,
   'vast': 1,
   'way': 2,
   'work': 2,
   'young': 1},
  'M'),
 ({'3+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'coreldraw': 1,
   'css': 1,
   'deposit_made': False,
   'design': 1,
   'dreamweav': 1,
   'email_verified': True,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'flash': 1,
   'good': 1,
   'identity_verified': False,
   'illustr': 1,
   'india.i': 1,
   'multimedia': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'profile_complete': True,
   'web': 1,
   'xhtml': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'deliv': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'good': 1,
   'identity_verified': False,
   'interest': 1,
   'job': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'servic': 1,
   'sure': 1,
   'use': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
   'allahabad': 1,
   'cours': 1,
   'deposit_made': False,
   'differ': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'nit': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'teach': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='7'>,
   'First': 'm',
   'Last': '6',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'build': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'entri': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'last': 1,
   'link': 1,
   'lot': 1,
   'one': 1,
   'payment_verified': False,
   'phone_verified': False,
   'privat': 1,
   'profile_complete': True,
   'well': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': True,
   'greec': 1,
   'identity_verified': False,
   'make': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'websit': 1},
  'M'),
 ({'13': 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'd',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'deposit_made': True,
   'email': 1,
   'email_verified': True,
   'experi': 1,
   'expert': 1,
   'exposur': 1,
   'facebook_connected': False,
   'gener': 1,
   'genuin': 1,
   'get': 1,
   'great': 1,
   'identity_verified': False,
   'improv': 1,
   'market': 1,
   'onlin': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'rank': 1,
   'real': 1,
   'sale': 1,
   'se': 1,
   'traffic': 2,
   'visibl': 1,
   'visitor': 1,
   'websit': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'abil': 5,
   'accomplish': 1,
   'adob': 1,
   'client\\xe2\\u20ac\\u2122': 1,
   'cm': 1,
   'coda': 1,
   'creativ': 2,
   'cs5': 1,
   'current': 1,
   'deadlin': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 1,
   'differ': 1,
   'email_verified': True,
   'entail': 1,
   'experi': 1,
   'facebook_connected': False,
   'gener': 1,
   'high': 2,
   'idea': 2,
   'identity_verified': False,
   'learn': 1,
   'maco': 1,
   'main': 1,
   'mobil': 1,
   'new': 2,
   'page': 1,
   'payment_verified': True,
   'phone_verified': True,
   'photoshop': 1,
   'platform': 1,
   'profile_complete': True,
   'program': 1,
   'qualiti': 1,
   'readi': 1,
   'respons': 1,
   'site': 1,
   'skill': 2,
   'support': 1,
   'surround': 1,
   'task': 1,
   'team': 1,
   'tool': 1,
   'vision': 1,
   'work': 3},
  'M'),
 ({"'ve": 1,
   '7': 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'applic': 1,
   'busi': 1,
   'deposit_made': True,
   'desktop': 1,
   'dev': 1,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'former': 1,
   'good': 1,
   'hand': 1,
   'ibm': 1,
   'identity_verified': False,
   'kind': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'sap': 1,
   'server': 1,
   'support': 1,
   'system': 1,
   'web': 1,
   'year': 1},
  'M'),
 ({'2004': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='u'>,
   'africa': 1,
   'agenc': 2,
   'bangladesh': 2,
   'canada': 1,
   'code': 1,
   'com': 1,
   'cut': 1,
   'denmark': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'first': 1,
   'freelanc': 1,
   'hand': 1,
   'identity_verified': False,
   'look': 1,
   'mani': 1,
   'outsourc': 1,
   'payment_verified': False,
   'phone_verified': False,
   'placement': 1,
   'profile_complete': True,
   'project': 1,
   'seven': 1,
   'sinc': 1,
   'system': 1,
   'teeth': 1,
   'uk': 1,
   'web': 4,
   'websit': 1,
   'well': 1,
   'whilst': 1,
   'work': 5,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'abl': 1,
   'background': 1,
   'bank': 1,
   'copywrit': 1,
   'deposit_made': True,
   'differ': 1,
   'done': 1,
   'email_verified': True,
   'english': 1,
   'etc': 1,
   'experi': 1,
   'facebook_connected': False,
   'fast': 1,
   'field': 1,
   'financi': 1,
   'forex': 1,
   'identity_verified': False,
   'learner': 1,
   'manag': 1,
   'new': 1,
   'open': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'rewrit': 1,
   'russian': 1,
   'sinc': 1,
   'task': 1,
   'three': 1,
   'topic': 1,
   'translat': 1,
   'write': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='3'>,
   'First': 'e',
   'Last': '9',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'also': 1,
   'beij': 1,
   'china': 1,
   'current': 1,
   'degre': 1,
   'deposit_made': False,
   'econom': 1,
   'email_verified': True,
   'engin': 3,
   'facebook_connected': False,
   'hr': 1,
   'identity_verified': False,
   'master': 2,
   'mba': 1,
   'mechan': 1,
   'pakistan': 1,
   'payment_verified': False,
   'phd': 1,
   'phone_verified': False,
   'power': 2,
   'profile_complete': True,
   'thermal': 2},
  'M'),
 ({"'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'almost': 1,
   'content': 1,
   'current': 1,
   'decad': 1,
   'deposit_made': True,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'firm': 1,
   'identity_verified': False,
   'media': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'produc': 1,
   'profile_complete': True,
   'social': 1,
   'work': 1,
   'worth': 1,
   'write': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 't',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'advanc': 1,
   'alway': 1,
   'asian': 1,
   'assur': 1,
   'audio-visu': 1,
   'background': 1,
   'base': 1,
   'control': 1,
   'cover': 1,
   'custom': 1,
   'customiz': 1,
   'deliveri': 1,
   'deposit_made': False,
   'disciplin': 1,
   'e-learn': 1,
   'effici': 1,
   'email_verified': True,
   'essenti': 1,
   'establish': 1,
   'european': 1,
   'experienc': 1,
   'expertis': 2,
   'facebook_connected': False,
   'fit': 1,
   'high': 1,
   'identity_verified': False,
   'industri': 2,
   'juncoast': 3,
   'knowledg': 1,
   'local': 2,
   'manag': 1,
   'mani': 1,
   'materi': 1,
   'member': 1,
   'one': 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pool': 1,
   'profile_complete': True,
   'programm': 1,
   'project': 4,
   'prove': 1,
   'qualiti': 2,
   'select': 1,
   'servic': 1,
   'softwar': 1,
   'special': 2,
   'strict': 1,
   'success': 2,
   'system': 1,
   'talent': 2,
   'team': 2,
   'time': 1,
   'two': 1,
   'websit': 1,
   'work': 1,
   'workflow': 1,
   'year': 1,
   'young': 1},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'assur': 1,
   'challeng': 1,
   'chanc': 1,
   'commit': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'give': 1,
   'idea': 1,
   'identity_verified': False,
   'look': 1,
   'love': 1,
   'make': 1,
   'new': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'real': 1,
   'regret': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'y',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'ca': 1,
   'commun': 1,
   'continu': 1,
   'current': 1,
   'degre': 1,
   'deposit_made': True,
   'educ': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'inform': 1,
   "n't": 2,
   'need': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'visual': 1,
   'want': 1,
   'write': 1,
   'writer': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>,
   'abil': 1,
   'allow': 1,
   'capabl': 2,
   'deposit_made': False,
   'eager': 1,
   'educ': 1,
   'email_verified': True,
   'envis': 1,
   'expand': 1,
   'experi': 1,
   'facebook_connected': False,
   'fill': 2,
   'forward': 1,
   'identity_verified': False,
   'interest': 1,
   'jack': 1,
   'learn': 1,
   'look': 1,
   'mani': 2,
   'new': 1,
   'payment_verified': True,
   'phone_verified': True,
   'prepar': 1,
   'profile_complete': True,
   'role': 2,
   'skill': 1,
   'trade': 1,
   'varieti': 1,
   'well': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'f',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'also': 1,
   'articl': 1,
   'author': 1,
   'deposit_made': False,
   'email_verified': True,
   'essay': 2,
   'experi': 1,
   'extens': 1,
   'ezin': 1,
   'facebook_connected': False,
   'financ': 1,
   'global': 1,
   'identity_verified': False,
   'intern': 1,
   'market': 1,
   'master': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'scienc': 1,
   'work': 1,
   'write': 1,
   'writer': 1},
  'M'),
 ({"''": 1,
   '3d': 2,
   'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'x',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   '``': 1,
   'architectur': 1,
   'comput': 1,
   'deposit_made': True,
   'email_verified': True,
   'experi': 1,
   'exterior': 1,
   'facebook_connected': True,
   'graduat': 1,
   'graphic': 1,
   'http': 1,
   'identity_verified': False,
   'interior': 1,
   'la': 1,
   'love': 1,
   'model': 1,
   'onlin': 1,
   'payment_verified': True,
   'phone_verified': True,
   'portfolio': 1,
   'profile_complete': True,
   'refer': 1,
   'rome': 1,
   'sapienza': 1,
   'univers': 1,
   'us': 1,
   'year': 1},
  'M'),
 ({"'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'd',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'appeal': 1,
   'creat': 1,
   'custom': 1,
   'deposit_made': False,
   'digit': 1,
   'discuss': 1,
   'email_verified': True,
   'facebook_connected': False,
   'finish': 1,
   'focus': 1,
   'goal': 1,
   'identity_verified': False,
   'market': 1,
   'need': 1,
   'payment_verified': False,
   'phone_verified': False,
   'print': 1,
   'product': 1,
   'profession': 1,
   'profile_complete': True,
   'solut': 1,
   'target': 1,
   'work': 1},
  'M'),
 ({'--': 2,
   '6.': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'account': 1,
   'adept': 1,
   'also': 1,
   'analysi': 2,
   'assist': 1,
   'audit': 2,
   'capabl': 1,
   'client': 2,
   'cloud': 1,
   'commun': 2,
   'concept': 1,
   'content': 1,
   'creativ': 1,
   'data': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'digit': 2,
   'email': 1,
   'email_verified': True,
   'experienc': 1,
   'facebook_connected': True,
   'focu': 1,
   'full': 1,
   'host': 1,
   'identity_verified': False,
   'manag': 3,
   'market': 2,
   'media': 1,
   'pay-per-click': 1,
   'payment_verified': True,
   'phone_verified': True,
   'portfolio': 1,
   'profil': 1,
   'profile_complete': True,
   'properti': 1,
   'research': 1,
   'sale': 1,
   'sem': 1,
   'seo': 1,
   'servic': 1,
   'social': 1,
   'strategi': 1,
   'strong': 1,
   'virtual': 1,
   'web': 1,
   'well-round': 1,
   'wordpress': 1,
   'write': 1},
  'F'),
 ({'...': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
   'First': 'c',
   'Last': '2',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'brighten': 1,
   'deposit_made': False,
   'earn': 1,
   'email_verified': True,
   'facebook_connected': False,
   'futur': 1,
   'identity_verified': False,
   'money': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'want': 1,
   'well': 1},
  'M'),
 ({'...': 1,
   '2d': 1,
   '3d': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'o',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'confid': 1,
   'deposit_made': False,
   'detail': 1,
   'done': 1,
   'edit': 1,
   'email_verified': True,
   'facebook_connected': False,
   'get': 1,
   'good': 1,
   'identity_verified': False,
   'job': 2,
   'level': 1,
   'model': 1,
   "n't": 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': False,
   'precis': 1,
   'profile_complete': True,
   'reliabl': 1},
  'M'),
 ({"''": 2,
   "'s": 1,
   '10': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='9'>,
   'First': 'g',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'abil': 1,
   'ambit': 1,
   'busi': 1,
   'cheer': 1,
   'deposit_made': True,
   'email_verified': True,
   'expand': 1,
   'experi': 1,
   'facebook_connected': False,
   'fool': 1,
   'good': 1,
   'hope': 1,
   'identity_verified': False,
   'import': 1,
   'mang': 1,
   'mood': 1,
   'motto': 1,
   'normal': 1,
   'ordinari': 1,
   'organ': 1,
   'payment_verified': False,
   'perfect': 1,
   'person': 2,
   'phone_verified': True,
   'profile_complete': True,
   'pursuit': 1,
   'serious': 1,
   'speed': 1,
   'studi': 1,
   'style': 1,
   'success': 1,
   'univers': 1,
   'web': 1,
   'work': 3,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'h',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'base': 1,
   'believ': 1,
   'busi': 1,
   'ca': 1,
   'commun': 1,
   'complet': 2,
   'constant': 1,
   'deposit_made': True,
   'design': 1,
   'done': 1,
   'email_verified': True,
   'ensur': 1,
   'facebook_connected': False,
   'get': 1,
   'hill': 1,
   'identity_verified': False,
   'job': 1,
   'logo': 1,
   'open': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'quickli': 1,
   'rapidli': 1,
   'satisfact': 1,
   'small': 1,
   'special': 1,
   'specif': 1,
   'websit': 1,
   'west': 1},
  'M'),
 ({"'m": 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abl': 2,
   'accord': 1,
   'adjust': 1,
   'administr': 1,
   'also': 1,
   'analyt': 1,
   'bank': 1,
   'capabl': 1,
   'compani': 1,
   'complet': 1,
   'cours': 1,
   'deposit_made': False,
   'differ': 1,
   'dilig': 1,
   'ecommerc': 1,
   'email_verified': True,
   'employe': 1,
   'excel': 1,
   'extrem': 1,
   'facebook_connected': True,
   'financ': 1,
   'gain': 2,
   'graduat': 1,
   'hard': 1,
   'highli': 1,
   'honest': 1,
   'hour': 1,
   'html': 1,
   'huge': 1,
   'identity_verified': False,
   'interest': 1,
   'javascript': 1,
   'knowledg': 2,
   'lot': 1,
   'magento': 1,
   'mani': 1,
   'motiv': 1,
   'mysql': 1,
   'need': 2,
   'object': 1,
   'opencart': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'plenti': 1,
   'prestashop': 1,
   'profil': 1,
   'profile_complete': True,
   'program': 1,
   'provid': 1,
   'put': 1,
   'reliabl': 1,
   'respons': 1,
   'section': 2,
   'skill': 1,
   'sometim': 1,
   'spread': 1,
   'support': 1,
   'thank': 1,
   'view': 1,
   'want': 2,
   'web': 1,
   'wordpress': 1,
   'work': 2,
   'world': 1,
   'year': 1,
   'zencart': 1},
  'F'),
 ({'100': 1,
   '300': 1,
   '50': 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'x',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'across': 1,
   'also': 3,
   'among': 1,
   'articl': 1,
   'avail': 1,
   'base': 2,
   'career': 1,
   'compani': 1,
   'content': 5,
   'countri': 1,
   'creativ': 1,
   'deposit_made': False,
   'develop': 5,
   'done': 1,
   'east': 1,
   'educ': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'furnish': 1,
   'gener': 1,
   'head': 1,
   'identity_verified': False,
   'india': 1,
   'inform': 1,
   'lifestyl': 1,
   'local': 1,
   'ltd': 1,
   'magazin': 2,
   'manpow': 1,
   'miscellan': 1,
   'newspap': 2,
   'north': 1,
   'other': 1,
   'payment_verified': False,
   'person': 2,
   'phone_verified': False,
   'poem': 2,
   'portfolio': 1,
   'previou': 2,
   'profile_complete': True,
   'publish': 1,
   'pvt': 1,
   'refer': 1,
   'regular': 2,
   'request': 1,
   'sampl': 2,
   'serv': 1,
   'short': 1,
   'sikkim': 1,
   'stori': 1,
   'team': 1,
   'total': 1,
   'travel': 1,
   'weblog': 1,
   'websit': 2,
   'work': 2,
   'writer': 2,
   'written': 1},
  'M'),
 ({'5': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'A',
   'Last': '8',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'compani': 1,
   'deposit_made': False,
   'devic': 1,
   'done': 1,
   'electr': 1,
   'email_verified': True,
   'engin': 1,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'graduat': 1,
   'identity_verified': False,
   'institut': 1,
   'jersey': 1,
   'look': 1,
   'new': 1,
   'part': 1,
   'partner': 1,
   'payment_verified': False,
   'phone_verified': True,
   'posit': 1,
   'profile_complete': True,
   'remot': 1,
   'reput': 1,
   'softwar': 1,
   'solid': 1,
   'state': 1,
   'studi': 1,
   'technolog': 1,
   'time': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'convers': 1,
   'data': 3,
   'deposit_made': False,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'name': 1,
   'payment_verified': False,
   'phone_verified': False,
   'process': 1,
   'profile_complete': True,
   'qualif': 1,
   'ravi': 1,
   'technic': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"'ve": 1,
   '20': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'l',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'advertis': 1,
   'companies.i': 1,
   'daniel': 1,
   'deposit_made': False,
   'done': 1,
   'edit': 1,
   'email_verified': True,
   'experi': 2,
   'facebook_connected': True,
   'graphic': 1,
   'highest': 1,
   'identity_verified': False,
   'job': 1,
   'knowledg': 1,
   'look': 1,
   'lot': 1,
   'major': 1,
   'motion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'post': 1,
   'product': 1,
   'production.i': 1,
   'profession': 1,
   'profile_complete': True,
   'sampl': 1,
   'station': 1,
   'take': 1,
   'thank': 1,
   'tv': 1,
   'video': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({"'s": 1,
   '...': 1,
   '20+': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'applic': 1,
   'buyer': 1,
   'deposit_made': True,
   'design': 4,
   'design.w': 1,
   'email_verified': True,
   'exclus': 1,
   'experi': 1,
   'facebook_connected': False,
   'forth': 1,
   'game': 1,
   'goal': 1,
   'graphic': 1,
   'identity_verified': False,
   'industri': 1,
   'littl': 1,
   'logo': 1,
   'main': 1,
   'materi': 1,
   'mobil': 1,
   "n't": 1,
   'packag': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'show': 1,
   'suppli': 1,
   'team': 1,
   'templat': 1,
   'trade': 1,
   'use': 1,
   'web': 1,
   'year': 1},
  'M'),
 ({'3com': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'd',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'activ': 1,
   'administr': 1,
   'base': 1,
   'build': 1,
   'cisco': 1,
   'deploy': 2,
   'deposit_made': False,
   'design': 2,
   'directori': 1,
   'email_verified': True,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'hyper-v': 1,
   'identity_verified': False,
   'implement': 1,
   'infrastructur': 1,
   'knowledg': 1,
   'linux': 1,
   'manag': 1,
   'microsoft': 1,
   'minim': 1,
   'monitor': 1,
   'network': 1,
   'new': 1,
   'open': 1,
   'open-sourc': 1,
   'payment_verified': False,
   'phone_verified': True,
   'physic': 1,
   'profile_complete': True,
   'project': 1,
   'restructur': 1,
   'server': 2,
   'softwar': 1,
   'sourc': 1,
   'special': 1,
   'specialist': 1,
   'strong': 1,
   'system': 1,
   'tco': 1,
   'team': 1,
   'technolog': 2,
   'transform': 1,
   'util': 1,
   'vpn': 1,
   'window': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='0'>,
   'First': 'n',
   'Last': '1',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'advertis': 1,
   'art': 2,
   'artist': 1,
   'campaign': 1,
   'colleg': 1,
   'creat': 1,
   'deep': 1,
   'degre': 1,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'face': 1,
   'facebook_connected': False,
   'financ': 1,
   'fine': 1,
   'four': 1,
   'graduat': 1,
   'graphic': 1,
   'holi': 1,
   'identity_verified': False,
   'industri': 1,
   'major': 1,
   'makeup': 1,
   'mini': 1,
   'moonlight': 1,
   'neck': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'profile_complete': True,
   'skill': 1,
   'spirit': 1,
   'telecommun': 1,
   'thesi': 1,
   'top': 1,
   'two': 1,
   'well': 1,
   'work': 2,
   'year': 2},
  'F'),
 ({'3dsmax': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
   'First': 'm',
   'Last': '0',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'cad': 1,
   'coredraw': 1,
   'deposit_made': True,
   'design': 3,
   'dreamweav': 1,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'good': 1,
   'identity_verified': False,
   'like': 1,
   'logo': 1,
   'mani': 1,
   'max': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photo': 1,
   'photoshop': 1,
   'profile_complete': True,
   'project': 1,
   'websit': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'e',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'brief': 1,
   'capabl': 1,
   'deposit_made': False,
   'email_verified': True,
   'execut': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'good': 1,
   'guarante': 1,
   'hi': 1,
   'high': 1,
   'identity_verified': False,
   'learn': 1,
   'name': 1,
   'new': 1,
   'order': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'qualiti': 1,
   'quit': 1,
   'space': 1,
   'time': 1,
   'willing': 1},
  'F'),
 ({"'m": 1,
   '...': 2,
   '200': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'g',
   'Numchar': 3,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'believ': 1,
   'best': 1,
   'cheapest': 1,
   'commun': 1,
   'complet': 1,
   'custom': 1,
   'data': 1,
   'deposit_made': True,
   'design9': 1,
   'designing3': 1,
   'email_verified': True,
   'entri': 1,
   'expert': 1,
   'facebook': 2,
   'facebook_connected': True,
   'fan': 1,
   'follow': 1,
   'good': 1,
   'googl': 1,
   'hello': 1,
   'honesti': 1,
   'identity_verified': False,
   'internet': 2,
   'joomla': 1,
   'linkedin': 1,
   'logo': 1,
   'make': 1,
   'market': 2,
   'mini': 1,
   'network': 1,
   'new': 1,
   'page': 2,
   'payment_verified': True,
   'phone_verified': True,
   'php': 1,
   'plu': 1,
   'press': 1,
   'profile_complete': True,
   'profit': 1,
   'provid': 1,
   'qualiti': 2,
   'reach': 1,
   'satisfact': 2,
   'servic': 2,
   'shall': 1,
   'social': 1,
   'solut': 1,
   'timelin': 1,
   'twitter': 1,
   'video': 1,
   'way': 1,
   'websit': 3,
   'word': 1,
   'youtub': 1},
  'F'),
 ({'.net': 1,
   '2010/2013': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'd',
   'Last': '6',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'c': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'sharepoint': 1},
  'M'),
 ({"'ll": 1,
   'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'catch': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': True,
   'help': 1,
   'identity_verified': True,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'success': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='1'>,
   'First': 'K',
   'Last': 't',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(6, 7), match='a'>,
   'american': 1,
   'base': 1,
   'contact': 1,
   'copywrit': 1,
   'deposit_made': False,
   'discuss': 1,
   'editor': 1,
   'email_verified': True,
   'end': 1,
   'facebook_connected': False,
   'fifteen': 1,
   'freelanc': 1,
   'hesit': 1,
   'identity_verified': False,
   'look': 1,
   'make': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pleas': 1,
   'polish': 1,
   'profession': 1,
   'profile_complete': True,
   'proof': 1,
   'reader': 1,
   'requir': 1,
   'search': 1,
   'shine': 1,
   'uk': 1,
   'work': 1,
   'year': 1},
  'F'),
 ({'2.0': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'o',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   '\\xc3\\xa0': 2,
   'afin': 2,
   'analys': 1,
   'au': 1,
   'client': 1,
   'commun': 1,
   'connaiss': 2,
   'critiqu': 1,
   'cs': 1,
   'cs3': 4,
   'dan': 3,
   'de': 13,
   'deposit_made': False,
   'domain': 1,
   'dreamweav': 1,
   'du': 1,
   'effect': 1,
   'email_verified': True,
   'en': 3,
   'et': 5,
   'expertis': 1,
   'facebook_connected': False,
   'flash': 1,
   'fort': 1,
   'html': 1,
   'identity_verified': False,
   'illustr': 2,
   'imag': 1,
   'indesign': 1,
   'la': 3,
   'le': 6,
   'linux': 1,
   'm\\xc3\\xaam': 1,
   'mac': 1,
   'messag': 1,
   'observ': 1,
   'organis': 1,
   'ou': 1,
   'page': 1,
   'payment_verified': False,
   'pc': 1,
   'phone_verified': False,
   'photoshop': 1,
   'php': 1,
   'pro': 1,
   'profile_complete': True,
   'quark': 1,
   'que': 1,
   'satisfact': 1,
   'se': 1,
   'situat': 1,
   'son': 1,
   'sur': 2,
   'text': 1,
   'travail': 2,
   'un': 2,
   'vo': 1,
   'xml': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='1'>,
   'First': 'g',
   'Last': 'b',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
   'best': 1,
   'client': 1,
   'come': 1,
   'commun': 1,
   'deposit_made': True,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'good': 1,
   'graphic': 1,
   'identif': 1,
   'identity_verified': False,
   'need': 1,
   'part-tim': 1,
   'passion': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'realli': 1,
   'valu': 1,
   'visual': 1,
   'web': 1},
  'M'),
 ({'5': 1,
   '51': 1,
   '9i': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'addit': 1,
   'alway': 1,
   'appoint': 1,
   'attribut': 1,
   'basic': 1,
   'bd': 1,
   'best': 1,
   'case': 1,
   'certifi': 3,
   'code': 1,
   'confid': 1,
   'content': 1,
   'cours': 1,
   'data': 1,
   'databas': 2,
   'dba': 2,
   'dear': 1,
   'deliveri': 1,
   'deposit_made': False,
   'design': 3,
   'develop': 2,
   'dhaka': 1,
   'dhanmondi': 1,
   'diploma': 1,
   'durat': 1,
   'effort': 1,
   'email_verified': True,
   'end': 1,
   'entri': 1,
   'experi': 1,
   'experienc': 1,
   'extra': 1,
   'facebook_connected': False,
   'field': 1,
   'finish': 2,
   'form': 1,
   'freelanc': 1,
   'fulli': 1,
   'h': 1,
   'hard': 1,
   'honesti': 1,
   'id': 1,
   'identity_verified': False,
   'job': 1,
   'local': 1,
   'ltd.': 1,
   'main': 1,
   'manag': 1,
   'ms': 1,
   'newcom': 1,
   'oper': 1,
   'oracl': 3,
   'organ': 1,
   'outsourc': 1,
   'patienc': 1,
   'payment_verified': False,
   'per': 1,
   'phone_verified': False,
   'pl/sql': 1,
   'play': 1,
   'profession': 3,
   'profile_complete': True,
   'programm': 1,
   'provid': 2,
   'qualif': 1,
   'qualiti': 1,
   'r': 1,
   'report': 1,
   'requir': 1,
   'satisfi': 1,
   'server': 1,
   'softwar': 1,
   'specif': 1,
   'sql': 3,
   'three': 1,
   'time': 1,
   'urgent': 1,
   'use': 1,
   'web': 1,
   'websit': 1,
   'work': 4,
   'xhtml': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'academ': 1,
   'air': 1,
   'argentina': 1,
   'bueno': 1,
   'creativ': 1,
   'critic': 1,
   'cultur': 1,
   'de': 1,
   'deposit_made': False,
   'drama': 1,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'film': 1,
   'identity_verified': False,
   'interest': 1,
   'linguist': 1,
   'literari': 1,
   'literatur': 2,
   'nativ': 1,
   'payment_verified': False,
   'philosophi': 1,
   'phone_verified': False,
   'polit': 1,
   'profile_complete': True,
   'scienc': 1,
   'social': 1,
   'spanish': 2,
   'speaker': 1,
   'special': 1,
   'student': 1,
   'subject': 1,
   'universidad': 1,
   'write': 1},
  'M'),
 ({'--': 8,
   '2000': 1,
   '8i': 1,
   '98': 1,
   'Caps': <_sre.SRE_Match object; span=(6, 7), match='B'>,
   'Digit': None,
   'First': 'h',
   'Last': 'a',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'c': 1,
   'c++': 1,
   'css': 1,
   'deposit_made': False,
   'designing\\t': 1,
   'email_verified': True,
   'facebook_connected': True,
   'html': 1,
   'identity_verified': False,
   'java': 1,
   'joomla': 1,
   'languag': 1,
   'mysql': 1,
   'oracl': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 2,
   'profici': 1,
   'profile_complete': True,
   'python': 1,
   'script': 1,
   'softwar': 1,
   'system': 1,
   'window': 1,
   'xml': 1},
  'M'),
 ({'3dsmax': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'd',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'anyth': 1,
   'archicad': 1,
   'architectur': 2,
   'complet': 1,
   'deposit_made': False,
   'distanc': 1,
   'effect': 1,
   'email_verified': True,
   'ethic': 1,
   'facebook_connected': False,
   'go': 1,
   'good': 2,
   'happi': 1,
   'identity_verified': False,
   'im': 1,
   'incept': 1,
   'make': 1,
   'mani': 1,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': True,
   'photoshop': 1,
   'produc': 1,
   'profici': 1,
   'profile_complete': True,
   'project': 1,
   'qualiti': 1,
   'technologist': 1,
   'version': 1,
   'way': 1,
   'will': 1,
   'work': 3},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'also': 1,
   'blog': 1,
   'blogger': 1,
   'current': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 2,
   'game': 1,
   'identity_verified': False,
   'latest': 1,
   'media': 1,
   'nich': 1,
   'offer': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'review': 1,
   'servic': 1,
   'social': 1,
   'special': 1,
   'tech': 1,
   'technolog': 1,
   'updat': 1,
   'web': 1,
   'write': 1,
   'writer': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
   'First': 's',
   'Last': '2',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'adob': 1,
   'aim': 1,
   'alway': 1,
   'bgh': 1,
   'current': 1,
   'custom': 2,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'experi': 1,
   'expert': 1,
   'facebook_connected': False,
   'field': 1,
   'get': 1,
   'happi': 1,
   'host': 2,
   'identity_verified': False,
   'keep': 1,
   'kind': 1,
   'like': 1,
   'mainli': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'servic': 1,
   'softwar': 1,
   'solut': 2,
   'suppli': 1,
   'web': 2,
   'work': 2},
  'M'),
 ({'7': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'v',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'area': 1,
   'dear': 1,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'flyer': 1,
   'follow': 1,
   'forward': 1,
   'identity_verified': False,
   'interest': 1,
   'look': 1,
   'madam': 1,
   'payment_verified': False,
   'phone_verified': False,
   'poster': 1,
   'profession': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'servic': 1,
   'sir': 1,
   'site': 1,
   'video': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"'m": 2,
   "'ve": 1,
   '3d': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'M',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'anim': 1,
   'deposit_made': False,
   'effect': 1,
   'email_verified': True,
   'engin': 1,
   'experi': 1,
   'facebook_connected': False,
   'game': 1,
   'identity_verified': False,
   'like': 1,
   'mani': 1,
   'mari': 1,
   'max': 1,
   'maya': 1,
   'model': 1,
   'motionbuild': 1,
   'mudbox': 1,
   'nuke': 1,
   'other': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'profile_complete': True,
   'project': 1,
   'rigger': 1,
   'textur': 1,
   'unity3d': 2,
   'unreal': 1,
   'well': 1,
   'work': 1,
   'year': 1,
   'zbrush': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'capabl': 1,
   'deliveri': 1,
   'deposit_made': False,
   'email_verified': True,
   'ensur': 1,
   'environ': 1,
   'facebook_connected': False,
   'fast-pac': 1,
   'identity_verified': False,
   'independ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'specialist': 1,
   'time': 1,
   'work': 3},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'n',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'autom': 1,
   'case': 1,
   'creation': 1,
   'current': 1,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'function': 1,
   'identity_verified': False,
   'long': 1,
   'manag': 1,
   'nine': 1,
   'payment_verified': False,
   'phone_verified': False,
   'plan': 1,
   'profile_complete': True,
   'qa': 1,
   'rich': 1,
   'seek': 1,
   'softwar': 1,
   'term': 1,
   'test': 5,
   'work': 1,
   'year': 1},
  'M'),
 ({'.net': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'D',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'algorithm': 1,
   'also': 1,
   'asp.net': 1,
   'azur': 1,
   'background': 1,
   'c': 1,
   'contest': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'java': 1,
   'judg': 1,
   'languag': 1,
   'microsoft': 1,
   'mostli': 1,
   'mvc': 1,
   'onlin': 1,
   'particip': 1,
   'past': 1,
   'payment_verified': True,
   'phone_verified': True,
   'problem': 1,
   'profile_complete': True,
   'program': 1,
   'python': 1,
   'relat': 1,
   'solid': 1,
   'solv': 1,
   'sport': 1,
   'structur': 1,
   'technolog': 1,
   'window': 1,
   'work': 1},
  'M'),
 ({'200': 1,
   '50': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'n',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'abl': 1,
   'accordingli': 1,
   'almost': 1,
   'although': 1,
   'anyth': 1,
   'articl': 3,
   'award': 2,
   'base': 1,
   'bid': 2,
   'busi': 1,
   'choic': 1,
   'comment': 1,
   'compet': 1,
   'consid': 1,
   'consider': 1,
   'creativ': 1,
   'data': 1,
   'day': 1,
   'deadlin': 1,
   'deliv': 1,
   'depend': 1,
   'deposit_made': False,
   'detail': 1,
   'divers': 1,
   'e-book': 1,
   'email_verified': True,
   'employ': 1,
   'entri': 1,
   'experi': 1,
   'facebook_connected': False,
   'five': 2,
   'forward': 1,
   'freelanc': 1,
   'guarante': 1,
   'hard': 1,
   'identity_verified': False,
   'includ': 1,
   'job': 2,
   'job.mi': 1,
   'later': 1,
   'list': 1,
   'look': 1,
   'meet': 1,
   'much': 1,
   'orient': 1,
   'payment_verified': False,
   'phone_verified': False,
   'previou': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'readi': 1,
   'regard': 1,
   'requir': 1,
   'servic': 1,
   'similar': 1,
   'special': 1,
   'sure': 1,
   'thank': 1,
   'truli': 1,
   'utmost': 1,
   'varieti': 1,
   'work': 3,
   'worker': 1,
   'write': 1,
   'writer': 1,
   'written': 1,
   'year': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'e',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'area': 1,
   'child': 1,
   'deposit_made': False,
   'dj': 1,
   'drop': 1,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'femal': 1,
   'identity_verified': False,
   'look': 1,
   'messag': 1,
   'narrat': 1,
   'payment_verified': False,
   'philadelphia': 1,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'prompt': 1,
   'talent': 1,
   'voic': 2},
  'F'),
 ({'100': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'u',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'accuraci': 1,
   'advanc': 1,
   'deliveri': 1,
   'deposit_made': False,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'good': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'take': 1,
   'time': 1},
  'M'),
 ({"'m": 3,
   "'ve": 1,
   '8': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'm',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'advic': 1,
   'also': 1,
   'bangladesh.i': 1,
   'beauti': 1,
   'code': 4,
   'cool': 1,
   'creat': 1,
   'cross': 1,
   'cross-brows': 1,
   'css': 1,
   'css3': 1,
   'debug': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'devic': 3,
   'dhaka': 1,
   'dynam': 1,
   'email': 1,
   'email_verified': True,
   'end': 1,
   'engag': 1,
   'engin': 1,
   'exist': 1,
   'facebook_connected': False,
   'follow': 1,
   'front': 1,
   'front-end': 2,
   'give': 1,
   'happi': 1,
   'hire': 1,
   'html5': 2,
   'identity_verified': False,
   'improv': 1,
   'interfac': 1,
   'javascript': 1,
   'large-scal': 1,
   'list': 1,
   'loss': 1,
   'mass': 1,
   'mean': 1,
   'modern': 2,
   'newslett': 1,
   'nice': 1,
   'one': 2,
   'optim': 1,
   'payment_verified': False,
   'perform': 1,
   'phone_verified': False,
   'profile_complete': True,
   'program': 2,
   'project': 2,
   'qualiti': 1,
   'review': 3,
   'search': 1,
   'sinc': 2,
   'small': 1,
   'stack': 1,
   'tag': 1,
   'techniqu': 1,
   'test': 3,
   'use': 1,
   'user': 1,
   'want': 1,
   'web': 2,
   'well': 1,
   'without': 1,
   'workshop': 1,
   'year': 1},
  'M'),
 ({"'m": 2,
   '.net.i': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
   'First': 'o',
   'Last': '7',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'certifi': 1,
   'code': 1,
   'databas': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'forms.mi': 1,
   'four': 1,
   'fulli': 1,
   'identity_verified': False,
   'microsoft': 1,
   'newest': 1,
   'oracl': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'servic': 1,
   'sql': 1,
   'technolog': 1,
   'wcf': 1,
   'web': 1,
   'window': 1,
   'work': 1,
   'wpf': 1,
   'year': 1},
  'M'),
 ({'-year': 2,
   '1.': 1,
   '3': 2,
   '5': 1,
   '6': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'basic': 3,
   'commun': 1,
   'coordin': 1,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'english': 1,
   'experi': 4,
   'facebook_connected': False,
   'familiar': 1,
   'html': 1,
   'identity_verified': False,
   'imag': 1,
   'javascript': 1,
   'joomla': 2,
   'jqueri': 1,
   'know': 1,
   'linux': 1,
   'main': 1,
   'month': 1,
   'mysql': 1,
   'oscommerc': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'php': 1,
   'platform': 1,
   'profile_complete': True,
   'recent': 1,
   'skill': 2,
   'slice': 1,
   'svn': 1,
   'use': 3,
   'well': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'u',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'build': 1,
   'career': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'job': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'respect': 1,
   'want': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 'f',
   'Last': '2',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'data': 2,
   'deposit_made': False,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'manipul': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'queri': 1,
   'valid': 1,
   'variou': 2,
   'work': 2,
   'written': 1,
   'year': 1},
  'F'),
 ({'.net': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'c': 1,
   'custom': 1,
   'deposit_made': False,
   'email_verified': True,
   'enterpris': 1,
   'experienc': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'inventori': 1,
   'oracl': 1,
   'payment_verified': False,
   'phone_verified': False,
   'plan': 1,
   'profile_complete': True,
   'relat': 1,
   'resourc': 1,
   'sql': 1,
   'vb': 1},
  'M'),
 ({"'m": 2,
   '60': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'avail': 1,
   'base': 2,
   'becom': 1,
   'coast': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'england': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'howev': 1,
   'identity_verified': False,
   'kent': 1,
   'london': 1,
   'look': 1,
   'mile': 1,
   'north': 1,
   'payment_verified': False,
   'phone_verified': False,
   'place': 1,
   'profile_complete': True,
   'right': 1,
   'seem': 1,
   'sure': 1,
   'us': 1,
   'work': 3},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'v',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'aggress': 1,
   'attitud': 1,
   'believ': 1,
   'complet': 1,
   'consult': 1,
   'deposit_made': True,
   'effici': 1,
   'email_verified': True,
   'facebook_connected': False,
   'field': 1,
   'give': 1,
   'help': 2,
   'identity_verified': False,
   'impart': 1,
   'knowledg': 1,
   'maximum': 1,
   'other': 2,
   'payment_verified': False,
   'perfect': 1,
   'period': 1,
   'person': 1,
   'phone_verified': False,
   'pleasur': 1,
   'product': 1,
   'profile_complete': True,
   'provid': 1,
   'short': 1,
   'skill': 1,
   'systemat': 1,
   'task': 1,
   'te': 1,
   'time': 1,
   'tri': 1,
   'use': 1,
   'variou': 1,
   'within': 1,
   'work': 3},
  'F'),
 ({"'m": 2,
   "'ve": 2,
   '2007': 1,
   '203': 1,
   '3': 1,
   '9': 1,
   'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'e',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'abil': 1,
   'almost': 1,
   'app': 1,
   'articl': 1,
   'bad': 1,
   'build': 1,
   'busi': 1,
   'campaign': 1,
   'could': 1,
   'current': 1,
   'dabbl': 1,
   'decemb': 1,
   'deposit_made': False,
   'email_verified': True,
   'employ': 1,
   'erp': 1,
   'etc.i': 1,
   'experi': 1,
   'facebook_connected': True,
   'familiar': 1,
   'fan': 1,
   'forward': 1,
   'good': 1,
   'handl': 1,
   'hi': 1,
   'identity_verified': False,
   'j.': 1,
   'learn': 1,
   'littl': 1,
   'maintain': 1,
   'mani': 1,
   'microsoft': 1,
   'mountain': 1,
   'new': 1,
   'offic': 1,
   'past': 1,
   'payment_verified': False,
   'pdf': 1,
   'phone_verified': True,
   'poem': 2,
   'poetri': 1,
   'portfolio': 1,
   'present': 1,
   'prior': 1,
   'product': 1,
   'profile_complete': True,
   'relationship': 1,
   'reput': 1,
   'servic': 1,
   'sinc': 1,
   'skill': 1,
   'softwar': 1,
   'soon': 1,
   'space': 1,
   'stephen': 1,
   'telemarket': 1,
   'thing': 1,
   'time.i': 1,
   'virtual': 1,
   'well': 1,
   'work': 3,
   'write': 1,
   'writer': 1,
   'written': 1,
   'year': 3,
   'yoga': 1},
  'M'),
 ({'...': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'convert': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'email_verified': True,
   'facebook_connected': False,
   'html/css': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'plugin': 1,
   'profile_complete': True,
   'psd': 1,
   'respons': 1,
   'theme': 3,
   'wordpress': 1},
  'M'),
 ({"'m": 1,
   '15.': 1,
   '2': 2,
   'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'anoth': 1,
   'deposit_made': True,
   'disast': 1,
   'editor': 1,
   'email_verified': True,
   'enjoy': 2,
   'facebook_connected': False,
   'fl': 1,
   'form': 1,
   'identity_verified': False,
   'increas': 1,
   'knowledg': 1,
   'live': 1,
   'major': 1,
   'need': 1,
   'newspap': 2,
   'one': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'report': 1,
   'sinc': 1,
   'small': 1,
   'sunni': 1,
   'work': 1,
   'write': 1},
  'F'),
 ({'--': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   '``': 2,
   'account': 1,
   'almost': 1,
   'also': 1,
   'applic': 1,
   'basic': 1,
   'book': 1,
   'cm': 1,
   'compos': 1,
   'comput': 2,
   'computer': 1,
   'coreldraw': 1,
   'creat': 1,
   'custom': 1,
   'data': 2,
   'deposit_made': False,
   'document': 1,
   'done': 1,
   'drupal': 1,
   'dtp': 2,
   'email_verified': True,
   'english': 1,
   'etc': 3,
   'exam': 1,
   'experi': 1,
   'facebook_connected': False,
   'fairli': 1,
   'familiar': 1,
   'filter': 1,
   'format': 2,
   'game': 1,
   'good': 1,
   'googl': 1,
   'great': 1,
   'gujarati': 1,
   'hindi': 1,
   'hundr': 1,
   'identity_verified': False,
   'includ': 1,
   'internet': 1,
   'joomla': 1,
   'know': 1,
   'languag': 1,
   'made': 1,
   'magic': 1,
   'marathi': 1,
   'master': 1,
   'mess': 1,
   'ms-offic': 2,
   'onlin': 1,
   'paper': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'practic': 1,
   'process': 1,
   'profile_complete': True,
   'say': 1,
   'search': 1,
   'student': 1,
   'tackl': 1,
   'task': 1,
   'taught': 1,
   'these': 1,
   'thousand': 1,
   'typeset': 1,
   'wordpress': 1,
   'wow': 1},
  'M'),
 ({"'ll": 1,
   '16': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'h',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'assign': 1,
   'assur': 1,
   'back': 1,
   'birth': 1,
   'come': 1,
   'compani': 2,
   'comput': 3,
   'dear': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'fashion': 3,
   'field': 1,
   'financ': 1,
   'free': 1,
   'garment': 1,
   'hardwar': 1,
   'hi': 1,
   'identity_verified': False,
   'indian': 1,
   'industri': 1,
   'intern': 2,
   'invest': 1,
   'lastli': 1,
   'leadership': 1,
   'manufactur': 1,
   'market': 1,
   'multi': 1,
   'next': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profil': 1,
   'profile_complete': True,
   'program': 1,
   'reader': 1,
   'rest': 1,
   'safe': 1,
   'sale': 1,
   'sam': 1,
   'say': 1,
   'still': 1,
   'sure': 1,
   'time': 1,
   'total': 1,
   'tri': 1,
   'work': 4,
   'year': 1},
  'M'),
 ({"'m": 1,
   '10': 1,
   '15': 1,
   '2': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='Y'>,
   'Digit': None,
   'First': 'Y',
   'Last': 'F',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'agenc': 1,
   'air': 1,
   'also': 1,
   'app': 1,
   'argentina': 1,
   'base': 1,
   'brand': 2,
   'bueno': 1,
   'coca-cola': 1,
   'compani': 1,
   'corpor': 1,
   'cours': 1,
   'creativ': 1,
   'custom': 1,
   'dedic': 1,
   'degre': 1,
   'deposit_made': True,
   'design': 16,
   'digit': 2,
   'ebook': 1,
   'email_verified': True,
   'etc': 1,
   'experi': 2,
   'facebook_connected': False,
   'field': 1,
   'focu': 1,
   'freelanc': 2,
   'full-tim': 1,
   'graphic': 2,
   'high': 1,
   'ident': 1,
   'identity_verified': False,
   'includ': 1,
   'innov': 1,
   'interact': 1,
   'interfac': 1,
   'like': 1,
   'logo': 1,
   'mani': 2,
   'media': 1,
   'mobil': 1,
   'new': 1,
   'notch': 1,
   'number': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'portfolio': 1,
   'profession': 1,
   'profile_complete': True,
   'prototyp': 1,
   'provid': 1,
   'qualiti': 1,
   'relat': 1,
   'reliabl': 1,
   'see': 1,
   'servic': 1,
   'soni': 1,
   'startup': 1,
   'top': 1,
   'ui': 2,
   'user': 2,
   'ux': 2,
   'web': 1,
   'well': 2,
   'wirefram': 1,
   'work': 2,
   'year': 2},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'r',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'japanes': 1,
   'love': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'spanish': 1,
   'speak': 1,
   'type': 1,
   'write': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'y',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'analog': 1,
   'deposit_made': True,
   'design': 1,
   'digit': 1,
   'electron': 1,
   'email_verified': True,
   'embed': 1,
   'engin': 1,
   'experi': 1,
   'facebook_connected': True,
   'good': 1,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'set': 1,
   'skill': 1,
   'system': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'app': 1,
   'backend': 1,
   'basic': 1,
   'complex': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'everyth': 1,
   'facebook_connected': False,
   'frontend': 1,
   'identity_verified': False,
   'javascript': 1,
   'love': 1,
   'mainli': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'web': 2,
   'websit': 1,
   'wordpress': 1,
   'work': 1},
  'M'),
 ({'2d': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='4'>,
   'First': 'p',
   'Last': 'o',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'anim': 1,
   'brazil': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'game': 1,
   'identity_verified': False,
   'live': 1,
   'name': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'tradit': 1,
   'web': 1,
   'work': 1},
  'M'),
 ({"'d": 1,
   "'m": 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'h',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'advanc': 1,
   'alway': 1,
   'camtasia': 1,
   'creat': 2,
   'deadlin': 1,
   'deposit_made': False,
   'email_verified': True,
   'exampl': 1,
   'facebook_connected': False,
   'happi': 1,
   'high': 1,
   'identity_verified': False,
   'meet': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pride': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'request': 1,
   'studio': 1,
   'thank': 1,
   'upon': 1,
   'user': 1,
   'video': 2,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'y',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'best': 1,
   'bring': 1,
   'complet': 1,
   'condit': 1,
   'confid': 1,
   'critic': 1,
   'deposit_made': False,
   'design': 5,
   'email_verified': True,
   'enjoy': 1,
   'experi': 1,
   'experienc': 1,
   'facebook_connected': False,
   'frame': 1,
   'good': 1,
   'graphic': 3,
   'hard': 1,
   'hire': 1,
   'identity_verified': False,
   'mani': 1,
   'output': 1,
   'outsourc': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'promis': 1,
   'respons': 1,
   'stipul': 1,
   'talent': 1,
   'task': 1,
   'time': 1,
   'utmost': 1,
   'within': 1,
   'work': 2,
   'worker': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'aliv': 1,
   'api': 1,
   'applic': 2,
   'base': 1,
   'big': 1,
   'bring': 1,
   'cakephp': 1,
   'codeignit': 1,
   'deposit_made': True,
   'develop': 1,
   'dream': 1,
   'email_verified': True,
   'expert': 1,
   'facebook_connected': True,
   'friendli': 1,
   'idea': 1,
   'identity_verified': False,
   'implement': 1,
   'jqueri': 1,
   'meet': 1,
   'mysql': 1,
   'nepal': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'see': 1,
   'servic': 1,
   'small': 1,
   'team': 1,
   'tool': 1,
   'us': 1,
   'use': 1,
   'vari': 1,
   'web': 3},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 's',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'confid': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'hard': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'worker': 1},
  'M'),
 ({'3': 1,
   'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'c',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
   'also': 1,
   'build': 1,
   'cgi': 1,
   'colleg': 1,
   'css': 1,
   'current': 1,
   'custom': 1,
   'data': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'english': 1,
   'experi': 1,
   'facebook_connected': False,
   'html': 1,
   'identity_verified': False,
   'industri': 1,
   'java': 1,
   'larg': 1,
   'major': 2,
   'manag': 1,
   'mysql': 1,
   'network': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'scale': 1,
   'servic': 1,
   'technolog': 1,
   'telecom': 1,
   'variou': 1,
   'web': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({"'ve": 1,
   '200': 1,
   '8': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'u',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'includ': 1,
   'intern': 1,
   'jqueri': 1,
   'mysql': 1,
   'past': 1,
   'payment_verified': True,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'project': 2,
   'web': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': None,
   'First': 'N',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'anoth': 1,
   'best': 1,
   'client': 1,
   'compani': 2,
   'dear': 1,
   'deposit_made': False,
   'deserv': 1,
   'design': 2,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'galleri': 1,
   'identity_verified': False,
   'inform': 1,
   'make': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'portal': 1,
   'portfolio': 2,
   'profession': 1,
   'profile_complete': True,
   'remark': 1,
   'see': 1,
   'strive': 1,
   'uniqu': 1,
   'way': 1,
   'work': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'v',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'achiev': 1,
   'alway': 1,
   'assur': 1,
   'dedic': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'given': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'qualiti': 1,
   'timelin': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'deposit_made': False,
   'email_verified': True,
   'extra': 1,
   'facebook_connected': True,
   'find': 1,
   'identity_verified': False,
   'job': 1,
   'local': 1,
   'money': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'small': 1,
   'tri': 1,
   'tv': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='1'>,
   'First': 'n',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'adob': 1,
   'amount': 1,
   'android': 1,
   'app': 1,
   'balsamiq': 1,
   'brand': 1,
   'build': 1,
   'class': 1,
   'compani': 1,
   'creativ': 1,
   'deposit_made': False,
   'design': 2,
   'disappoint': 1,
   'dot': 2,
   'email_verified': True,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': True,
   'great': 1,
   'hire': 1,
   'icon': 1,
   'identity_verified': False,
   'illustr': 1,
   'io': 1,
   'keynot': 1,
   'logo': 3,
   'mobil': 2,
   'mock': 1,
   'much': 1,
   'name': 1,
   'payment_verified': True,
   'phone_verified': False,
   'photoshop': 1,
   'profile_complete': True,
   'reach': 1,
   'scratch': 1,
   'sketch': 1,
   'sure': 1,
   'ui': 1,
   'ui/ux': 1,
   'work': 2,
   'world': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'k',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   'comput': 1,
   'current': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'especi': 1,
   'experi': 1,
   'facebook_connected': False,
   'frontend': 1,
   'identity_verified': False,
   'mani': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'scienc': 1,
   'studi': 1,
   'switzerland': 1,
   'technolog': 1,
   'web': 2,
   'year': 1,
   'young': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
   'First': 'm',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'actual': 1,
   'anim': 1,
   'attempt': 1,
   'build': 2,
   'comprehend': 1,
   'connect': 1,
   'daili': 1,
   'deposit_made': False,
   'design': 4,
   'desktop': 1,
   'develop': 1,
   'digit': 1,
   'email_verified': True,
   'experi': 2,
   'facebook_connected': True,
   'film': 1,
   'help': 2,
   'i\\xe2\\u20ac\\u2122m': 1,
   'identity_verified': False,
   'illustr': 1,
   'individu': 1,
   'interfac': 1,
   'ios/android': 1,
   'know-how': 1,
   'latest': 2,
   'love': 1,
   'make': 1,
   'mind': 1,
   'onlin': 1,
   'other': 1,
   'passion': 1,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': True,
   'pro': 1,
   'profile_complete': True,
   'ration': 1,
   'real': 1,
   'refus': 1,
   'sens': 1,
   'skill': 1,
   'someth': 1,
   'startup': 1,
   'stun': 1,
   'tool': 1,
   'trend': 1,
   'ui/ux': 1,
   'video': 1,
   'web': 1,
   'websit': 1,
   'wordpress': 2,
   'year': 1},
  'M'),
 ({"''": 1,
   '..': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
   'First': 's',
   'Last': '0',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '``': 1,
   'add': 1,
   'also': 1,
   'background': 1,
   'banner': 1,
   'base': 1,
   'believ': 1,
   'best': 1,
   'book': 1,
   'club': 1,
   'collect': 1,
   'color': 1,
   'confid': 1,
   'correct': 1,
   'deposit_made': False,
   'design': 5,
   'edit': 2,
   'email_verified': True,
   'etc': 1,
   'experi': 1,
   'expert': 1,
   'facebook_connected': False,
   'fashion': 1,
   'full': 1,
   'garment': 1,
   'graphic': 1,
   'i\\xe2\\u20ac\\u2122m': 1,
   'identity_verified': False,
   'imag': 1,
   'manipul': 1,
   'much': 1,
   'object': 1,
   'parti': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photo': 1,
   'photoshop': 1,
   'poster': 1,
   'profession': 1,
   'profile_complete': True,
   'remov': 2,
   'respons': 1,
   'retouch': 2,
   't-shirt': 1,
   'theme': 1,
   'type': 1,
   'wear': 2,
   'word': 1,
   'work': 2},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'addit': 1,
   'articl': 1,
   'content': 1,
   'current': 1,
   'deposit_made': False,
   'edit': 1,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'french': 1,
   'hundr': 1,
   'identity_verified': False,
   'japanes': 1,
   'music': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'proofread': 1,
   'sever': 1,
   'spanish': 1,
   'translat': 1,
   'two': 1,
   'write': 1,
   'writer': 1,
   'written': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'alway': 1,
   'assign': 1,
   'creat': 1,
   'creativ': 1,
   'deliv': 1,
   'deposit_made': False,
   'email_verified': True,
   'ensur': 1,
   'excit': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'love': 1,
   'new': 1,
   'paper': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pleasantli': 1,
   'profile_complete': True,
   'put': 1,
   'soul': 1,
   'surpris': 1,
   'task': 1,
   'thank': 1,
   'whenev': 1,
   'world': 2,
   'write': 1},
  'M'),
 ({'3': 1,
   '5+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'k',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'american': 1,
   'applic': 1,
   'best': 2,
   'brand': 2,
   'challeng': 1,
   'classifi': 1,
   'client': 1,
   'compani': 1,
   'competit': 1,
   'content': 1,
   'cover': 2,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'end': 1,
   'european': 1,
   'execut': 1,
   'experi': 1,
   'experienc': 1,
   'extens': 1,
   'facebook_connected': True,
   'fashion': 1,
   'financ': 1,
   'given': 1,
   'high': 1,
   'identity_verified': False,
   'includ': 1,
   'increas': 1,
   'industry.i': 1,
   'insight': 1,
   'intern': 1,
   'landscap': 1,
   'love': 1,
   'mani': 1,
   'market': 4,
   'media': 1,
   'mobil': 1,
   'money': 1,
   'mortgag': 1,
   'onlin': 2,
   'optim': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pleasur': 1,
   'possibl': 1,
   'presenc': 1,
   'profile_complete': True,
   'properti': 1,
   'save': 1,
   'search': 1,
   'seo': 1,
   'social': 1,
   'strategi': 1,
   'success': 1,
   'travel': 1,
   'uk': 1,
   'vertic': 1,
   'work': 4,
   'year': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'm',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'api': 1,
   'applic': 1,
   'architectur': 1,
   'aw': 1,
   'busi': 1,
   'capac': 2,
   'cdn': 1,
   'cloud': 2,
   'compani': 2,
   'demand': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 1,
   'either': 1,
   'email_verified': True,
   'enterpris': 1,
   'even': 1,
   'experienc': 1,
   'facebook_connected': False,
   'fruit': 1,
   'gateway': 1,
   'googl': 1,
   'guru': 1,
   'identity_verified': False,
   'individu': 1,
   'invest': 1,
   'kind': 1,
   'larg': 1,
   'level': 1,
   'load': 1,
   'love': 3,
   'mainten': 1,
   'make': 1,
   'manag': 2,
   'mid-level': 1,
   'mongodb': 1,
   'mostli': 1,
   'nodej': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'platform': 3,
   'profession': 1,
   'profile_complete': True,
   'programm': 1,
   'project': 1,
   'scalabl': 1,
   'scale': 1,
   'secur': 1,
   'small': 1,
   'solut': 1,
   'storag': 1,
   'sustain': 1,
   'web': 1,
   'whole': 1,
   'work': 2,
   'would': 1},
  'M'),
 ({'14': 1,
   '2d': 1,
   '3d': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'anim': 1,
   'architectur': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'graphic': 1,
   'identity_verified': False,
   'industri': 1,
   'logo': 1,
   'media': 1,
   'motion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'work': 1,
   'year': 1},
  'M'),
 ({'15': 5,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'm',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'ago': 5,
   'c++': 5,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'guy': 5,
   'identity_verified': True,
   'linux': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 5,
   'profile_complete': True,
   'sinc': 5,
   'sql': 1,
   'sqllinux': 4,
   'year': 5},
  'M'),
 ({"'s": 1,
   '.net': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'A',
   'Last': '6',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'asp': 1,
   'asp.net': 1,
   'beyond': 1,
   'c/c': 1,
   'casino': 1,
   'corpor': 1,
   'databas': 1,
   'deposit_made': True,
   'done': 1,
   'email_verified': True,
   'expect': 1,
   'facebook_connected': False,
   'financ': 1,
   'first': 1,
   'get': 1,
   'group': 1,
   'host': 1,
   'identity_verified': False,
   'joomla': 1,
   'lot': 1,
   'manag': 1,
   'mortgag': 1,
   'mysql': 1,
   'one': 1,
   'oracl': 2,
   'payment_verified': True,
   'perform': 1,
   'phone_verified': True,
   'php': 1,
   'profession': 1,
   'profile_complete': True,
   'roof': 1,
   'script': 1,
   'tech': 1,
   'techi': 1,
   'work': 1,
   'would': 1},
  'M'),
 ({'2007': 1,
   'Caps': <_sre.SRE_Match object; span=(5, 6), match='I'>,
   'Digit': None,
   'First': 't',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'advertis': 1,
   'also': 2,
   'around': 1,
   'auckland': 1,
   'avail': 1,
   'base': 1,
   'basi': 1,
   'cat': 1,
   'clock': 1,
   'conveni': 1,
   'cover': 1,
   'current': 1,
   'daili': 1,
   'day': 1,
   'deposit_made': True,
   'design': 1,
   'differ': 1,
   'discuss': 1,
   'document': 1,
   'email_verified': True,
   'end': 1,
   'facebook_connected': False,
   'financi': 1,
   'first': 1,
   'free': 1,
   'freelanc': 1,
   'get': 1,
   'happi': 1,
   'hesit': 1,
   'highli': 1,
   'identity_verified': False,
   'immedi': 1,
   'industri': 1,
   'italian': 2,
   'legal': 2,
   'local': 1,
   'manag': 1,
   'might': 1,
   'nativ': 1,
   'new': 1,
   'payment_verified': False,
   'perform': 1,
   'phone_verified': True,
   'pleas': 1,
   'press': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 3,
   'quit': 1,
   'receiv': 1,
   'releas': 1,
   'reliabl': 1,
   'respons': 1,
   'script': 2,
   'show': 1,
   'sinc': 1,
   'sites.i': 1,
   'specif': 1,
   'technic': 1,
   'test': 1,
   'text': 2,
   'therefor': 1,
   'time': 3,
   'tools.i': 1,
   'touch': 1,
   'trado': 1,
   'translat': 6,
   'trial': 1,
   'urgent': 1,
   'use': 1,
   'varieti': 1,
   'web': 1,
   'work': 3,
   'zealand': 1,
   'zone': 3},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'r',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'expos': 1,
   'facebook_connected': False,
   'field': 1,
   'freelanc': 1,
   'give': 1,
   'identity_verified': False,
   'knowledg': 1,
   'need': 1,
   'new': 1,
   'opportun': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pleas': 1,
   'profile_complete': True,
   'work': 1},
  'M'),
 ({"''": 1,
   '1': 1,
   '1981': 1,
   '19th': 1,
   '32': 1,
   '5.': 1,
   '7.': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   '\\xe2\\u20ac\\u201c': 2,
   'administr': 1,
   'agre': 1,
   'also': 1,
   'among': 1,
   'arabia': 1,
   'arteri': 1,
   'articl': 1,
   'basic': 1,
   'build': 1,
   'busi': 1,
   'cancer': 1,
   'certif': 1,
   'chief': 1,
   'china': 1,
   'comput': 1,
   'continu': 1,
   'control': 1,
   'deposit_made': True,
   'develop': 1,
   'diagnosi': 1,
   'diploma': 1,
   'diseas': 1,
   'dissert': 1,
   'dutch': 1,
   'dynam': 1,
   'e': 1,
   'email_verified': True,
   'engin': 2,
   'english': 1,
   'excel': 1,
   'experi': 1,
   'exploit': 1,
   'facebook_connected': False,
   'form': 1,
   'freelanc': 1,
   'given': 1,
   'globe': 1,
   'health': 4,
   'help': 1,
   'human': 1,
   'identity_verified': False,
   'introduct': 1,
   'januari': 1,
   'journal': 2,
   'knowledg': 1,
   'learn': 1,
   'manag': 2,
   'medic': 2,
   'method': 1,
   'ministri': 1,
   'motion': 1,
   'new': 1,
   'nois': 1,
   'other': 1,
   'paper': 1,
   'pass': 1,
   'patient': 1,
   'payment_verified': False,
   'peripher': 1,
   'phone_verified': True,
   'polici': 1,
   'post-gradu': 1,
   'pp': 1,
   'precis': 1,
   'profession.i': 1,
   'profile_complete': True,
   'program': 1,
   'publish': 2,
   'rapport': 1,
   'research': 3,
   'retir': 2,
   'review': 1,
   'saudi': 1,
   'scienc': 1,
   'sever': 2,
   'strateg': 1,
   'student': 1,
   'top': 1,
   'topic': 1,
   'uk': 1,
   'us': 1,
   'way': 1,
   'windowsnt': 1,
   'woman': 1,
   'workbook': 2,
   'worker': 1,
   'write': 2,
   'writer': 1,
   'year': 1,
   'zealand': 1},
  'M'),
 ({'4': 1,
   '5': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'adult': 1,
   'avail': 1,
   'biggest': 1,
   'budapest': 1,
   'children': 1,
   'co.': 1,
   'commun': 1,
   'concept': 1,
   'convey': 1,
   'custom': 1,
   'deposit_made': True,
   'document': 1,
   'email_verified': True,
   'english': 1,
   'esl': 1,
   'experi': 3,
   'facebook_connected': False,
   'foreign': 1,
   'hungari': 1,
   'hungarian': 2,
   'idea': 1,
   'identity_verified': False,
   'languag': 2,
   'manag': 1,
   'materi': 1,
   'motiv': 1,
   'nativ': 1,
   'necessari': 1,
   'offic': 1,
   'one': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'sampl': 1,
   'self': 1,
   'servic': 1,
   'skill': 1,
   'teach': 1,
   'trade': 1,
   'translat': 4,
   'work': 1,
   'year': 2},
  'F'),
 ({'5+': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '\\xe2\\u20ac\\xa2': 2,
   'area': 1,
   'assur': 1,
   'base': 1,
   'compani': 1,
   'content': 1,
   'custom': 2,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'e-commerc': 1,
   'email_verified': True,
   'end': 2,
   'enterpris': 2,
   'experi': 1,
   'facebook_connected': True,
   'follow': 1,
   'identity_verified': False,
   'includ': 1,
   'java\\xe2\\u20ac\\xa2': 1,
   'learn': 1,
   'manag': 1,
   'management\\xe2\\u20ac\\xa2': 2,
   'microsoft': 4,
   'offer': 1,
   'offshor': 1,
   'open': 1,
   'payment_verified': False,
   'phone_verified': False,
   'platform': 1,
   'point': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 1,
   'qa': 1,
   'qualiti': 1,
   'rang': 2,
   'relationship': 1,
   'resourc': 1,
   'share': 1,
   'softwar': 3,
   'solut': 2,
   'solutions\\xe2\\u20ac\\xa2': 2,
   'sourc': 1,
   'system\\xe2\\u20ac\\xa2': 1,
   'technolog': 1,
   'testing\\xe2\\u20ac\\xa2': 1,
   'web': 1,
   'wide': 1,
   'year': 1},
  'M'),
 ({'-1.': 1,
   '40': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'a.': 1,
   'cost': 1,
   'data': 1,
   'deliv': 1,
   'deposit_made': False,
   'desktop': 1,
   'email_verified': True,
   'energi': 1,
   'engin': 1,
   'engineer2': 1,
   'expertis': 1,
   'facebook_connected': False,
   'hii': 1,
   'identity_verified': False,
   'industri': 2,
   'manag': 1,
   'market': 1,
   'master': 1,
   'mcp': 1,
   'mechan': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'power': 1,
   'process': 1,
   'profile_complete': True,
   'qualiti': 1,
   'support': 3,
   'team': 2,
   'time': 1,
   'work': 2},
  'F'),
 ({"'m": 1,
   '...': 1,
   '20': 1,
   'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'administr': 2,
   'cm': 1,
   'comput': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'internet': 1,
   'joomla': 1,
   'microsoft': 1,
   'name': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photographi': 1,
   'profile_complete': True,
   'research': 1,
   'skill': 1,
   'top': 1,
   'web': 1,
   'wordpress': 1,
   'year': 1},
  'M'),
 ({"'m": 1,
   '18': 1,
   '8': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='5'>,
   'First': 'E',
   'Last': '0',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'compact': 1,
   'corpor': 1,
   'deposit_made': True,
   'design': 5,
   'disc': 1,
   'email_verified': True,
   'exper': 1,
   'experi': 2,
   'facebook_connected': False,
   'forward': 1,
   'freelanc': 1,
   'graphic': 1,
   'help': 1,
   'identity_verified': False,
   'imag': 1,
   'interact': 1,
   'logo': 1,
   'look': 1,
   'mora': 1,
   'need': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'put': 1,
   'rang': 1,
   'servic': 1,
   'sinc': 1,
   'web': 1,
   'wide': 1,
   'year': 1},
  'M'),
 ({"'d": 1,
   "'ll": 2,
   "'re": 1,
   "'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'adob': 1,
   'autom': 1,
   'back': 1,
   'bring': 1,
   'busi': 4,
   'campaign': 1,
   'creation': 1,
   'css': 1,
   'custom': 1,
   'deposit_made': False,
   'design-': 1,
   'dive': 1,
   'email_verified': True,
   'end': 1,
   'eye': 1,
   'facebook_connected': False,
   'foundat': 1,
   'get': 1,
   'graphic': 1,
   'grow': 1,
   'hand': 1,
   'hear': 1,
   'help': 1,
   'html': 1,
   'identity_verified': False,
   'illustr': 1,
   'includ': 1,
   'indesign': 1,
   'land': 1,
   'limit': 1,
   'love': 1,
   'manag': 2,
   'market': 1,
   'media': 1,
   'membership': 1,
   'oper': 1,
   'page': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'place': 1,
   'plan': 1,
   'process': 2,
   'product': 1,
   'profile_complete': True,
   'review': 1,
   'scale': 1,
   'set': 3,
   'setup': 1,
   'site': 1,
   'skill': 1,
   'social': 1,
   'someth': 1,
   'special': 1,
   'standard': 1,
   'system': 1,
   'take': 1,
   'team': 1,
   'time': 1,
   'togeth': 1,
   'webinar': 1,
   'websit': 1,
   'work': 1,
   'world': 1},
  'F'),
 ({'2.0': 1,
   '7': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'l',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'adob': 1,
   'ajax': 1,
   'also': 1,
   'area': 1,
   'build': 1,
   'busi': 1,
   'business.i': 1,
   'compani': 1,
   'compet': 1,
   'complet': 1,
   'core': 1,
   'css3': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'dhtml': 1,
   'dnn': 1,
   'dot': 1,
   'dream': 1,
   'email_verified': True,
   'end-end': 1,
   'experi': 1,
   'facebook_connected': True,
   'follow': 1,
   'good': 1,
   'ground': 1,
   'html5': 1,
   'identity_verified': False,
   'includ': 1,
   'jqueri': 1,
   'last': 1,
   'lie': 1,
   'manag': 1,
   'mysql': 1,
   'net': 1,
   'new': 1,
   'nuke': 1,
   'oop': 1,
   'opportun': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'rang': 1,
   'seek': 1,
   'site': 1,
   'small': 1,
   'softwar': 1,
   'sql': 1,
   'start': 1,
   'test': 1,
   'use': 1,
   'weaver': 1,
   'web': 1,
   'websit': 2,
   'wide': 1,
   'year': 1},
  'M'),
 ({"'ll": 1,
   "'m": 1,
   "'s": 1,
   '1985.': 1,
   '2009.': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
   'First': 'e',
   'Last': '5',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'absolut': 1,
   'accur': 1,
   'ad': 1,
   'add': 1,
   'aim': 1,
   'alway': 1,
   'articl': 2,
   'aspect': 1,
   'assign': 2,
   'auckland': 1,
   'august': 1,
   'bachelor': 1,
   'blog': 1,
   'born': 1,
   'ca': 1,
   'color': 1,
   'confid': 1,
   'content': 2,
   'copi': 1,
   'copywrit': 1,
   'definit': 1,
   'degre': 1,
   'delight': 1,
   'deliv': 1,
   'deposit_made': True,
   'ebook': 1,
   'email_verified': True,
   'everi': 1,
   'experi': 1,
   'expertli': 1,
   'facebook_connected': False,
   'feel': 1,
   'fiji': 2,
   'freelanc': 1,
   'gener': 1,
   'give': 1,
   'great': 1,
   'hardwork': 1,
   'high': 2,
   'honest': 1,
   'identity_verified': True,
   'includ': 1,
   'interest': 1,
   'island': 1,
   'life': 1,
   'march': 1,
   'money': 1,
   'motiv': 1,
   "n't": 1,
   'new': 2,
   'newslett': 1,
   'occasion': 1,
   'passion': 1,
   'payment_verified': True,
   'phone_verified': True,
   'post': 1,
   'power': 1,
   'pride': 1,
   'produc': 1,
   'profile_complete': True,
   'project': 1,
   'pursu': 1,
   'qualiti': 1,
   'rather': 1,
   'read': 1,
   'requir': 1,
   'research': 1,
   'self': 1,
   'seo': 1,
   'sinc': 1,
   'someth': 3,
   'specialti': 1,
   'standard': 1,
   'structur': 1,
   'studi': 1,
   'subject': 1,
   'submit': 1,
   'take': 3,
   'technolog': 1,
   'tell': 1,
   'times.i': 1,
   'univers': 1,
   'wast': 1,
   'way': 1,
   'web': 1,
   'well': 1,
   'whatev': 1,
   'work': 3,
   'worth': 1,
   'write': 2,
   'written': 1,
   'zealand': 1},
  'F'),
 ({'12': 1,
   '15': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
   'Digit': None,
   'First': 'B',
   'Last': 'i',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'account': 1,
   'comput': 1,
   'cpa': 1,
   'deposit_made': False,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'properti': 1,
   'softwar': 1,
   'year': 2},
  'M'),
 ({"'m": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 'g',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'app': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'mobil': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'web': 1},
  'M'),
 ({'4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'h',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'certifi': 1,
   'crm': 2,
   'deposit_made': False,
   'develop': 2,
   'dynam': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'ms': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'yr': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'cm': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'host': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'seo': 1,
   'special': 1,
   'virtuemart': 1,
   'websit': 1,
   'work': 1},
  'M'),
 ({"'d": 1,
   "'m": 1,
   '12': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abil': 2,
   'abl': 1,
   'accomplish': 2,
   'account': 1,
   'adapt': 1,
   'apt': 1,
   'back': 1,
   'background': 1,
   'best': 2,
   'brochur': 1,
   'budget': 2,
   'busi': 2,
   'class': 1,
   'client': 1,
   'commun': 1,
   'comput': 1,
   'conclus': 1,
   'conscienti': 1,
   'contact': 1,
   'convers': 1,
   'creativ': 1,
   'data': 2,
   'deadlin': 2,
   'deposit_made': False,
   'design-': 3,
   'detail': 1,
   'directli': 1,
   'document': 1,
   'dreamweaver-': 1,
   'effect': 1,
   'email_verified': True,
   'endeavor': 1,
   'enthusiasm': 1,
   'entry-': 1,
   'excel': 1,
   'expertis': 1,
   'extract': 1,
   'facebook_connected': True,
   'fast': 1,
   'feel': 1,
   'field': 1,
   'first': 1,
   'focus': 1,
   'free': 1,
   'freelanc': 1,
   'fuse': 1,
   'get': 1,
   'goal': 2,
   'googl': 1,
   'graphic': 1,
   'highli': 1,
   'hire': 1,
   'hour': 1,
   'html-': 1,
   'humor': 1,
   'identity_verified': False,
   'includ': 1,
   'internet': 1,
   'known': 1,
   'linkedin-': 1,
   'love': 1,
   'manag': 1,
   'meet': 1,
   'ms': 1,
   'multipl': 1,
   'object': 1,
   'organ': 2,
   'orient': 2,
   'payment_verified': True,
   'phone_verified': True,
   'photoshop': 1,
   'pleas': 1,
   'priorit': 1,
   'prioriti': 1,
   'processing-': 1,
   'profile_complete': True,
   'provid': 2,
   'question': 1,
   'research-': 1,
   'result': 1,
   'satisfact': 1,
   'scienc': 1,
   'search-': 1,
   'self': 1,
   'servic': 1,
   'set': 1,
   'skill': 2,
   'spreadsheet': 1,
   'starter': 1,
   'task': 1,
   'therefor': 1,
   'tight': 1,
   'time': 1,
   'time-': 1,
   'varieti': 1,
   'versatil': 1,
   'websit': 1,
   'websites-': 1,
   'within': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'awar': 1,
   'busi': 2,
   'cheap': 1,
   'compani': 1,
   'demand': 1,
   'deposit_made': True,
   'develop': 1,
   'dynam': 1,
   'effect': 1,
   'effici': 1,
   'email_verified': True,
   'engin': 2,
   'facebook_connected': False,
   'give': 1,
   'good': 1,
   'high': 1,
   'identity_verified': False,
   'look': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'provid': 1,
   'rank': 1,
   'search': 2,
   'seo': 1,
   'solut': 3,
   'suitabl': 1,
   'therefor': 1,
   'web': 2,
   'well': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'c': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'experienc': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'learn': 1,
   'machin': 1,
   'payment_verified': True,
   'phone_verified': False,
   'process': 1,
   'profile_complete': True,
   'python': 1},
  'M'),
 ({"'m": 1,
   '10': 1,
   '110': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'p',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'adword': 1,
   'android': 4,
   'api': 1,
   'app': 4,
   'applic': 4,
   'applications-': 1,
   'backend': 1,
   'best': 1,
   'book': 1,
   'client': 1,
   'complet': 2,
   'content': 1,
   'creation': 1,
   'custom': 1,
   'deliveri': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 5,
   'development-': 3,
   'email': 1,
   'email_verified': True,
   'engin': 1,
   'engine-': 1,
   'extra': 1,
   'facebook_connected': True,
   'feel': 1,
   'free': 1,
   'give': 1,
   'googl': 1,
   'identity_verified': False,
   'import': 1,
   'infograph': 1,
   'inform': 1,
   'io': 2,
   'manag': 1,
   'marketing-': 3,
   'messag': 1,
   'mobil': 2,
   'optim': 1,
   'passion': 1,
   'payment_verified': True,
   'phone_verified': True,
   'port': 2,
   'portal': 1,
   'profile_complete': True,
   'promotion-': 1,
   'question': 1,
   'satisfact': 1,
   'search': 1,
   'send': 1,
   'seo': 1,
   'servic': 1,
   'share': 1,
   'softwar': 2,
   'solut': 2,
   'solution-': 1,
   'support.-': 1,
   'system-': 1,
   'test': 2,
   'us': 2,
   'web': 3,
   'work': 1},
  'M'),
 ({"'m": 1,
   "'ve": 1,
   '30': 1,
   'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'c',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   '\\\\': 1,
   'awesom': 1,
   'cairo': 1,
   'career': 1,
   'craft': 1,
   'current': 1,
   'deposit_made': False,
   'egypt': 1,
   'email_verified': True,
   'enthusiast': 1,
   'facebook_connected': True,
   'hi': 1,
   'home': 1,
   'identity_verified': False,
   'influenc': 1,
   'live': 1,
   'mani': 1,
   'name': 1,
   'old': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'spend': 1,
   'technolog': 1,
   'thing': 1,
   'time': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': '9',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='i'>,
   'also': 1,
   'asp.net': 1,
   'c': 1,
   'deposit_made': False,
   'done': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'like': 1,
   'microsoft': 1,
   'ms': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'server': 1,
   'skill': 1,
   'sql': 1,
   'ssi': 1,
   'ssr': 1,
   'technolog': 1},
  'M'),
 ({"'m": 4,
   '1983': 1,
   '3': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'l',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'account': 1,
   'algol': 1,
   'almost': 1,
   'applic': 2,
   'associ': 1,
   'better': 1,
   'c': 1,
   'citizen': 1,
   'class': 1,
   'client': 1,
   'commun': 1,
   'compani': 1,
   'convers': 1,
   'danish': 1,
   'delphi': 1,
   'deposit_made': False,
   'done': 1,
   'dotnetnuk': 1,
   'drupal': 1,
   'els': 1,
   'email_verified': True,
   'embed': 1,
   'everybodi': 1,
   'facebook_connected': False,
   'follow': 1,
   'forth': 1,
   'fortran': 1,
   'found': 1,
   'get': 2,
   'happi': 1,
   'hat': 1,
   'host': 2,
   'hous': 1,
   'identity_verified': False,
   'joomla': 1,
   'keep': 1,
   'kind': 2,
   'known': 1,
   'languag': 1,
   'like': 3,
   'live': 1,
   'magento': 1,
   'mani': 3,
   'method': 2,
   'microprocessor': 1,
   'more.i': 1,
   'much': 1,
   'network': 1,
   'ocommerc': 1,
   'one': 1,
   'pascal': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'program': 3,
   'programm': 1,
   'protocol': 1,
   'result': 2,
   'seo': 2,
   'setup': 1,
   'sinc': 1,
   'softwar': 2,
   'special': 1,
   'std': 1,
   'structur': 1,
   'surveil': 1,
   'tag': 1,
   'techniqu': 1,
   'text': 1,
   'thing': 1,
   'thorough': 1,
   'titl': 1,
   'top': 1,
   'use': 1,
   'way': 1,
   'white': 1,
   'wordpress': 1,
   'work': 6,
   'world': 1,
   'year': 1,
   'years.i': 1},
  'M'),
 ({'2001': 1,
   '2005': 4,
   '2006': 2,
   '2008': 5,
   '2009': 2,
   '2010': 2,
   '65': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'v',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   '\\t': 13,
   '\\xe2\\u20ac\\u201c': 7,
   '\\xe2\\u20ac\\xa2\\tparticip': 1,
   '\\xe2\\u20ac\\xa2\\tprofici': 1,
   'activ': 1,
   'administr': 1,
   'advanc': 1,
   'also': 1,
   'appoint': 2,
   'appropri': 1,
   'approxim': 1,
   'arriv': 1,
   'assist': 1,
   'attend': 1,
   'attent': 1,
   'avail': 1,
   'barron': 2,
   'basi': 1,
   'busi': 2,
   'check': 1,
   'choir': 2,
   'class': 1,
   'client': 2,
   'club': 1,
   'code': 1,
   'colleg': 1,
   'collier': 2,
   'complet': 1,
   'comput': 1,
   'correct': 1,
   'cours': 1,
   'custom': 1,
   'customers\\xe2\\u20ac\\u2122': 1,
   'deadlin': 1,
   'degre': 1,
   'deliv': 2,
   'depart': 1,
   'deposit_made': False,
   'design': 1,
   'diploma': 1,
   'director': 1,
   'dish': 1,
   'drama': 1,
   'effici': 1,
   'email_verified': True,
   'ensur': 2,
   'equal': 1,
   'everi': 1,
   'excel': 2,
   'experi': 1,
   'facebook_connected': False,
   'file': 1,
   'find': 1,
   'first': 1,
   'fl': 3,
   'fraud': 1,
   'french': 1,
   'fresh': 1,
   'friendli': 1,
   'furnish': 1,
   'get': 1,
   'govern': 1,
   'gpa': 1,
   'graphic': 1,
   'guest': 2,
   'head': 1,
   'hewitt': 1,
   'high': 3,
   'highest': 1,
   'hollywood': 1,
   'honor': 2,
   'hotlin': 1,
   'hour': 1,
   'html': 1,
   'human': 1,
   'i.e': 1,
   'identity_verified': False,
   'inform': 3,
   'innov': 1,
   'input': 1,
   'inspect': 1,
   'involv': 1,
   'italian': 1,
   'jan.': 4,
   'job': 1,
   'jrotc': 2,
   'juli': 1,
   'leader': 3,
   'leadership': 1,
   'letter': 1,
   'list': 2,
   'long': 2,
   'maintain': 1,
   'manag': 1,
   'march': 1,
   'may': 1,
   'member': 1,
   'met': 2,
   'miami': 2,
   'microsoft': 1,
   'multi-task': 1,
   'napl': 2,
   'new': 2,
   'nile': 1,
   'nov.': 4,
   'ny': 1,
   'oh': 5,
   'oper': 1,
   'order': 2,
   'page': 1,
   'payment_verified': False,
   'payrol': 1,
   'perform': 1,
   'person': 1,
   'phone': 1,
   'phone_verified': False,
   'pleas': 1,
   'posit': 1,
   'powerpoint': 1,
   'prepar': 1,
   'present': 1,
   'pressur': 1,
   'product': 1,
   'profile_complete': True,
   'program': 1,
   'provid': 1,
   'rank': 1,
   'receiv': 4,
   'refer': 1,
   'reform': 1,
   'refund': 1,
   'regular': 1,
   'report': 1,
   'request': 1,
   'requir': 1,
   'resourc': 1,
   'restaur': 1,
   'return': 2,
   'rigid': 1,
   'sale': 1,
   'satisfact': 1,
   'satisfi': 1,
   'schedul': 1,
   'school': 2,
   'second': 1,
   'section': 2,
   'sept.': 1,
   'set': 1,
   'shift': 1,
   'skill': 2,
   'spanish': 1,
   'special': 1,
   'succeed': 1,
   'tabl': 2,
   'take': 1,
   'task': 1,
   'tax': 3,
   'theater': 1,
   'time': 1,
   'toward': 1,
   'union': 1,
   'updat': 1,
   'upon': 1,
   'use': 2,
   'variou': 3,
   'varsiti': 2,
   'web': 1,
   'weekli': 1,
   'west': 1,
   'without': 1,
   'word': 1,
   'work': 3,
   'would': 1,
   'wpm': 1,
   'year': 2,
   'york': 1},
  'M'),
 ({"'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'm',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'also': 1,
   'alway': 1,
   'applic': 1,
   'belgrad': 1,
   'believ': 1,
   'compani': 1,
   'consid': 1,
   'couchdb': 1,
   'data': 1,
   'deposit_made': False,
   'develop': 1,
   'distribut': 1,
   'email_verified': True,
   'emerg': 1,
   'especi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'javascript': 1,
   'librari': 1,
   'like': 1,
   'locat': 1,
   'mani': 1,
   'model': 1,
   'nosql': 1,
   'one': 1,
   'page': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'prove': 1,
   'recommend': 2,
   'relat': 1,
   'reliabl': 1,
   'run': 1,
   'sens': 1,
   'serbia': 1,
   'site': 1,
   'softwar': 1,
   'solut': 2,
   'special': 1,
   'store': 1,
   'system': 1,
   'technolog': 1,
   'today': 1,
   'tradit': 1,
   'valu': 1,
   'web': 1,
   'world': 1},
  'M'),
 ({"'m": 1,
   '2009': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'K',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'android': 1,
   'app': 1,
   'deposit_made': True,
   'email_verified': True,
   'english': 1,
   'experienc': 1,
   'facebook_connected': True,
   'freelanc': 1,
   'game': 1,
   'german': 1,
   'good': 1,
   'html': 1,
   'identity_verified': False,
   'inform': 1,
   'io': 1,
   'knowledg': 1,
   'languag': 1,
   'local': 1,
   'mobil': 1,
   'nativ': 1,
   'payment_verified': False,
   'perform': 1,
   'phone': 1,
   'phone_verified': True,
   'php': 1,
   'plain': 1,
   'platforms.i': 1,
   'portugues': 2,
   'profile_complete': True,
   'relat': 1,
   'sinc': 1,
   'special': 1,
   'support': 1,
   'text': 1,
   'translat': 3,
   'visit': 1,
   'websit': 1,
   'window': 1},
  'M'),
 ({"''": 1,
   '12': 1,
   '8': 1,
   '800': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
   'First': 'v',
   'Last': 'y',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '``': 1,
   'across': 1,
   'adult': 1,
   'alway': 2,
   'articles-': 1,
   'audienc': 1,
   'blog': 1,
   'break': 1,
   'busi': 2,
   'captiv': 1,
   'compat': 1,
   'content': 3,
   'content-': 4,
   'deliv': 3,
   'deposit_made': True,
   'descriptions-': 1,
   'develop': 1,
   'easi': 1,
   'effort': 1,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'good': 1,
   'great': 1,
   'identity_verified': True,
   'internet': 1,
   'keyword': 2,
   'make': 1,
   'market': 2,
   'media': 1,
   "n't": 1,
   'need': 1,
   'nich': 1,
   'offer': 1,
   'onlin': 2,
   'payment_verified': False,
   'phone_verified': True,
   'posts-': 2,
   'press': 1,
   'product': 1,
   'profile_complete': True,
   'project': 1,
   'punctual': 1,
   'read': 1,
   'releas': 1,
   'requir': 1,
   'research': 1,
   'sale': 2,
   'seo': 1,
   'services-': 1,
   'social': 1,
   'success': 1,
   'uniqu': 1,
   'web': 1,
   'write': 1,
   'year': 2},
  'M'),
 ({"'ll": 1,
   "'s": 1,
   '3d': 2,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'achiev': 1,
   'architectur': 1,
   'bottom': 1,
   'brand': 2,
   'bring': 1,
   'budgetari': 1,
   'build': 1,
   'case': 1,
   'client': 1,
   'compani': 1,
   'concept': 1,
   'constraint': 1,
   'continu': 1,
   'creativ': 1,
   'deposit_made': False,
   'design': 4,
   'develop': 1,
   'display': 1,
   'dynam': 1,
   'email_verified': True,
   'enjoy': 1,
   'event': 2,
   'exhibit': 1,
   'experi': 1,
   'explain': 1,
   'exterior': 1,
   'facebook_connected': True,
   'give': 1,
   'graphic': 1,
   'guidelin': 1,
   'hello': 1,
   'hope': 2,
   'idea': 1,
   'identity_verified': False,
   'includ': 1,
   'india': 1,
   'interior': 1,
   'intern': 1,
   'jargon': 1,
   'job': 1,
   'kiosk': 1,
   'let': 1,
   'limit': 1,
   'line': 1,
   'offer': 1,
   'order': 1,
   'payment_verified': False,
   'phone_verified': False,
   'posit': 1,
   'profile_complete': True,
   'regard': 1,
   'respons': 1,
   'retail': 1,
   'seeker': 1,
   'servic': 1,
   'space': 2,
   'stage': 1,
   'stall': 1,
   'success': 1,
   'talk': 1,
   'trust': 1,
   'venu': 2,
   'vimal': 1,
   'visual': 2,
   'warm': 1,
   'work': 3,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'K',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'done': 1,
   'email_verified': True,
   'extra': 1,
   'facebook_connected': False,
   'get': 1,
   'go': 1,
   'hardwork': 1,
   'identity_verified': False,
   'job': 1,
   'mile': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'will': 1},
  'F'),
 ({'05': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'd',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'content': 1,
   'deposit_made': False,
   'electr': 1,
   'email_verified': True,
   'engin': 1,
   'experi': 1,
   'facebook_connected': False,
   'good': 1,
   'identity_verified': False,
   'ms': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'skill': 1,
   'telecommun': 1,
   'year': 1},
  'M'),
 ({'--': 3,
   '.net': 2,
   '/sql': 3,
   '100': 1,
   '10th': 1,
   '11': 1,
   '12th': 2,
   '13': 1,
   '14': 1,
   '15th': 1,
   '18th': 1,
   '1995': 1,
   '1997': 1,
   '1998': 3,
   '1st': 2,
   '2000': 2,
   '2001': 2,
   '2002': 2,
   '2003': 2,
   '2004': 4,
   '2005': 3,
   '2005.': 1,
   '2006': 4,
   '2007': 3,
   '2008': 3,
   '20th': 3,
   '21': 1,
   '21st': 1,
   '24th': 2,
   '25th': 1,
   '27': 1,
   '27th': 1,
   '2nd': 1,
   '3': 2,
   '30th': 5,
   '31st': 4,
   '3rd': 2,
   '5': 3,
   '50': 1,
   '5th': 1,
   '6': 4,
   '6th': 1,
   '7': 2,
   '7th': 1,
   '9': 3,
   '9001:2000': 4,
   'Caps': <_sre.SRE_Match object; span=(8, 9), match='I'>,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='0'>,
   'First': 's',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'abil': 1,
   'achiev': 1,
   'acquaint': 1,
   'activ': 2,
   'analysi': 3,
   'applic': 2,
   'apr': 2,
   'april': 2,
   'asp': 1,
   'asp.net': 1,
   'assur': 1,
   'australia': 1,
   'australian': 2,
   'backup': 1,
   'base': 1,
   'basic': 1,
   'big': 1,
   'british': 2,
   'busi': 2,
   'c': 2,
   'career': 2,
   'certif': 1,
   'client': 5,
   'client-serv': 2,
   'code': 1,
   'compani': 6,
   'complet': 2,
   'configur': 1,
   'consult': 4,
   'coordin': 1,
   'craft': 1,
   'cross-funct': 1,
   'cyber': 1,
   'cycl': 2,
   'czech': 2,
   'data': 1,
   'dec': 2,
   'decemb': 1,
   'decent': 1,
   'dedic': 1,
   'demonstr': 1,
   'deposit_made': False,
   'design': 5,
   'develop': 7,
   'differ': 1,
   'divers': 2,
   'dutch': 1,
   'email_verified': True,
   'energet': 1,
   'entir': 1,
   'etc': 2,
   'except': 1,
   'experi': 5,
   'experienc': 1,
   'export': 1,
   'exposur': 3,
   'facebook_connected': False,
   'fairli': 1,
   'fast': 1,
   'februari': 1,
   'focu': 1,
   'follow-through': 1,
   'formerli': 2,
   'franc': 1,
   'full': 1,
   'gamma': 1,
   'gener': 1,
   'germani': 1,
   'global': 1,
   'group': 1,
   'grow': 2,
   'handl': 1,
   'hardcor': 1,
   'hardwar': 1,
   'highli': 1,
   'hospit': 1,
   'hous': 3,
   'identity_verified': False,
   'implement': 2,
   'includ': 1,
   'india': 4,
   'inform': 1,
   'infosystem': 1,
   'intrasoft': 1,
   'involv': 2,
   'iso': 4,
   'jan': 2,
   'januari': 1,
   'javascript': 1,
   'jul': 1,
   'jun': 1,
   'june': 1,
   'kanika': 2,
   'knowledg': 2,
   'known': 1,
   'languag': 1,
   'larg': 1,
   'lead': 2,
   'leader': 2,
   'leader/manag': 3,
   'level': 2,
   'life': 1,
   'limit': 10,
   'logic': 1,
   'ltd.': 9,
   'major': 1,
   'manag': 21,
   'mar': 1,
   'march': 2,
   'matrix': 1,
   'may': 4,
   'meet': 1,
   'model': 1,
   'month': 10,
   'motiv': 1,
   'multin': 1,
   'multipl': 3,
   'n': 1,
   'need': 1,
   'netherland': 1,
   'next': 1,
   'nov': 2,
   'oct': 2,
   'octob': 2,
   'organ': 2,
   'oversea': 1,
   'p': 1,
   'payment_verified': False,
   'phone_verified': False,
   'physic': 1,
   'platform': 1,
   'possess': 1,
   'privat': 4,
   'process': 1,
   'profession': 2,
   'profile_complete': True,
   'program': 1,
   'programm': 3,
   'project': 24,
   'proven': 1,
   'pti': 2,
   'pvt': 7,
   'qualiti': 1,
   'rdbm': 1,
   'record': 1,
   'relat': 1,
   'republ': 1,
   'schedul': 1,
   'sei': 1,
   'senior': 3,
   'sep': 1,
   'sept': 2,
   'server': 5,
   'servic': 1,
   'sever': 1,
   'size': 1,
   'skill': 1,
   'small': 1,
   'softwar': 11,
   'solut': 5,
   'spider': 1,
   'sql': 2,
   'success': 1,
   'summari': 1,
   'support': 1,
   'system': 7,
   'team': 2,
   'technic': 1,
   'techniqu': 1,
   'technolog': 2,
   'throughout': 1,
   'time': 1,
   'tool': 2,
   'track': 1,
   'uk': 2,
   'understand': 1,
   'us': 1,
   'usa': 1,
   'use': 1,
   'variou': 2,
   'vb.net': 1,
   'vision': 1,
   'visual': 1,
   'web': 2,
   'well': 2,
   'work': 18,
   'year': 7},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': None,
   'First': 'E',
   'Last': 't',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'look': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pleas': 1,
   'profile_complete': True,
   'visit': 1,
   'websit': 1,
   'work': 1},
  'F'),
 ({'1-year': 2,
   '2': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 'N',
   'Last': '5',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'administr': 1,
   'algebra': 1,
   'bachelor': 1,
   'busi': 2,
   'compani': 1,
   'corel': 1,
   'deposit_made': False,
   'econom': 1,
   'email_verified': True,
   'english': 2,
   'entrepreneurship': 1,
   'experi': 1,
   'experinc': 4,
   'facebook_connected': False,
   'field': 1,
   'flash': 1,
   'geometri': 1,
   'gmat': 2,
   'gre': 1,
   'home': 1,
   'hr': 1,
   'html': 1,
   'identity_verified': False,
   'kip': 1,
   'lahor': 2,
   'level': 1,
   'manag': 2,
   'market': 2,
   'math': 1,
   'mathemat': 1,
   'mx': 1,
   'part': 2,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'privat': 1,
   'process': 1,
   'profile_complete': True,
   'qualif': 1,
   'relat': 1,
   'sat': 1,
   'scienc': 1,
   'strategi': 1,
   'teach': 2,
   'time': 2,
   'tutor': 1,
   'word': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'x',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'afford': 1,
   'bid': 1,
   'ca': 1,
   'care': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'everi': 1,
   'facebook_connected': False,
   'feel': 1,
   'free': 1,
   'high': 1,
   'identity_verified': False,
   'individu': 1,
   'invit': 1,
   'load': 1,
   'mean': 1,
   "n't": 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'place': 1,
   'precis': 1,
   'profile_complete': True,
   'project': 2},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'h',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'art': 1,
   'assist': 1,
   'complet': 1,
   'consider': 1,
   'contact': 1,
   'crimin': 1,
   'current': 1,
   'degre': 1,
   'deposit_made': False,
   'divers': 1,
   'editori': 1,
   'eleg': 1,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'facebook_connected': True,
   'flexibl': 1,
   'freelanc': 2,
   'happi': 1,
   'hope': 1,
   'human': 1,
   'identity_verified': False,
   'incom': 1,
   'journalist': 1,
   'law': 2,
   'lot': 1,
   'media': 1,
   'payment_verified': False,
   'phd': 1,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'qualifi': 1,
   'rang': 1,
   'reliabl': 1,
   'research': 1,
   'right': 1,
   'skill': 1,
   'spare': 1,
   'style': 1,
   'suit': 1,
   'supplement': 1,
   'tailor': 1,
   'time': 1,
   'undergradu': 1,
   'undertak': 1,
   'uniqu': 1,
   'work': 1,
   'write': 3},
  'F'),
 ({"'s": 1,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'y',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'accept': 1,
   'cart': 1,
   'checkout': 1,
   'cm': 1,
   'commun': 1,
   'connect': 1,
   'content': 1,
   'convert': 1,
   'databas': 2,
   'deploy': 1,
   'deposit_made': True,
   'develop': 3,
   'developmenti': 2,
   'email_verified': True,
   'etc': 1,
   'experi': 3,
   'experienc': 1,
   'facebook_connected': True,
   'field': 1,
   'function': 1,
   'hand-on': 1,
   'html': 1,
   'identity_verified': True,
   'includ': 2,
   'inventori': 1,
   'kind': 1,
   'manag': 4,
   'mani': 1,
   'modul': 1,
   'oop': 1,
   'payment_verified': True,
   'paypal': 1,
   'phone_verified': True,
   'php': 4,
   'plugin': 2,
   'prefer': 1,
   'profile_complete': True,
   'request': 1,
   'server': 1,
   'shop': 1,
   'soap': 1,
   'system': 4,
   'theme': 2,
   'user': 1,
   'vast': 1,
   'web': 1,
   'wide': 1,
   'wordpress': 3,
   'work': 2,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='u'>,
   'applic': 1,
   'creat': 1,
   'deposit_made': True,
   'dynam': 1,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'multimedia': 1,
   'payment_verified': False,
   'phone_verified': False,
   'present': 1,
   'profile_complete': True,
   'web': 1,
   'websit': 1},
  'M'),
 ({'18': 1,
   '2': 1,
   '3d': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='Y'>,
   'Digit': None,
   'First': 'Y',
   'Last': 'i',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'better': 1,
   'blender': 1,
   'degre': 1,
   'deposit_made': True,
   'email_verified': True,
   'english': 1,
   'etc': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'faster': 1,
   'game': 1,
   'identity_verified': False,
   'improv': 1,
   'leisur': 1,
   'less': 1,
   'life': 1,
   'like': 1,
   'make': 2,
   'master': 1,
   'minimum': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'program': 1,
   'programmer/analyst': 1,
   'russian.i': 1,
   'scienc': 1,
   'second': 1,
   'simpl': 1,
   'softwar': 1,
   'task': 1,
   'uniti': 1,
   'vision': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': None,
   'First': 'N',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'articl': 1,
   'creativ': 1,
   'data': 1,
   'definit': 1,
   'deposit_made': False,
   'dilig': 1,
   'effici': 1,
   'email_verified': True,
   'english': 1,
   'entri': 1,
   'excel': 1,
   'excel.i': 1,
   'facebook_connected': False,
   'fast': 1,
   'identity_verified': False,
   'includ': 1,
   'payment_verified': False,
   'person': 2,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'proofread': 1,
   'read': 1,
   'short': 1,
   'skill': 1,
   'type': 1,
   'work': 1,
   'write': 2},
  'F'),
 ({'7+': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='7'>,
   'First': 'r',
   'Last': '7',
   'Numchar': 7,
   'Vowel': None,
   'app': 1,
   'assur': 1,
   'complet': 1,
   'deposit_made': False,
   'design': 3,
   'develop': 3,
   'dhtml': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'forward': 1,
   'html': 1,
   'html5': 1,
   'identity_verified': False,
   'includ': 1,
   'interest': 1,
   'look': 1,
   'mobil': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'project': 2,
   'rang': 1,
   'site': 1,
   'togeth': 1,
   'use': 1,
   'web': 1,
   'websit': 1,
   'wide': 1,
   'work': 1,
   'xhtml': 1,
   'xml': 1},
  'M'),
 ({'31': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'z',
   'Last': '1',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'abdul': 1,
   'achiev': 1,
   'attitud': 1,
   'big': 1,
   'boy': 1,
   'career': 1,
   'competit': 1,
   'cut': 1,
   'day': 1,
   'depart': 1,
   'deposit_made': False,
   'develop': 1,
   'dynam': 1,
   'email_verified': True,
   'energet': 1,
   'excel': 2,
   'except': 1,
   'experi': 1,
   'facebook_connected': False,
   'forward': 1,
   'go': 1,
   'habit': 1,
   'identity_verified': False,
   'inc.': 1,
   'industri': 1,
   'keen': 1,
   'limit': 1,
   'littl': 1,
   'look': 1,
   'matter': 1,
   'offic': 1,
   'pakistan': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'safeti': 1,
   'thing': 1,
   'wast': 1,
   'work': 3,
   'year': 1,
   'young': 1,
   'zohaib': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'y',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'accentur': 2,
   'accord': 1,
   'also': 1,
   'analyst': 2,
   'anticip': 1,
   'appli': 1,
   'assess': 1,
   'assist': 1,
   'background': 1,
   'best': 1,
   'busi': 1,
   'capabl': 1,
   'career': 1,
   'client': 2,
   'coach': 1,
   'committe': 1,
   'consist': 1,
   'current': 1,
   'cycl': 1,
   'daili': 1,
   'deliv': 1,
   'deposit_made': False,
   'develop': 1,
   'duti': 1,
   'email_verified': True,
   'empow': 1,
   'engin': 1,
   'enrol': 1,
   'ensur': 1,
   'facebook_connected': False,
   'follow': 1,
   'function': 1,
   'go': 1,
   'goal': 1,
   'highli': 1,
   'identity_verified': False,
   'individu': 1,
   'lead': 2,
   'life': 1,
   'ltd.': 1,
   'mainli': 1,
   'manger': 1,
   'mauritiu': 1,
   'measur': 1,
   'member': 1,
   'monitor': 1,
   'moreov': 1,
   'motiv': 1,
   'mysql': 1,
   'offshor': 2,
   'oper': 3,
   'oracl': 1,
   'payment_verified': False,
   'peopl': 1,
   'peoplesoft': 1,
   'perform': 1,
   'phone_verified': False,
   'php': 1,
   'pl/sql': 1,
   'plan': 2,
   'prioriti': 1,
   'profile_complete': True,
   'program': 1,
   'progress': 1,
   'recognis': 1,
   'regular': 1,
   'report': 1,
   'respons': 1,
   'risk': 1,
   'send': 1,
   'senior': 1,
   'servic': 1,
   'smoothli': 1,
   'softwar': 1,
   'solut': 1,
   'system': 1,
   'task': 1,
   'team': 3,
   'team\\xe2\\u20ac\\u2122': 1,
   'weekli': 1,
   'work': 1,
   'yearli': 1},
  'M'),
 ({'20': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'assist': 1,
   'b.a': 1,
   'chair': 1,
   'countless': 1,
   'depart': 1,
   'deposit_made': True,
   'educ': 2,
   'email_verified': True,
   'english': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'm.a': 1,
   'payment_verified': False,
   'phone_verified': False,
   'princip': 1,
   'profile_complete': True,
   'report': 1,
   'school': 1,
   'secondari': 2,
   'teacher': 1,
   'written': 1,
   'year': 1},
  'F'),
 ({'--': 4,
   '6': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'm',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'applic': 1,
   'avail': 1,
   'award': 1,
   'awesom': 1,
   'cakephp': 1,
   'codeignit': 1,
   'comput': 1,
   'css': 1,
   'custom': 1,
   'deposit_made': False,
   'development.w': 1,
   'drupal': 1,
   'email': 1,
   'email_verified': True,
   'engin': 1,
   'etc': 1,
   'experi': 1,
   'experience.i': 1,
   'expert': 1,
   'facebook_connected': False,
   'framework': 1,
   'freelanc': 1,
   'goal': 1,
   'gtalk': 1,
   'html': 1,
   'identity_verified': False,
   'javascript': 1,
   'joomla': 1,
   'jqueri': 1,
   'know': 1,
   'magento': 1,
   'main': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pleas': 1,
   'profil': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 1,
   'qualiti': 1,
   'read': 1,
   'scienc': 1,
   'servic': 1,
   'skype': 1,
   'via': 1,
   'visit': 1,
   'web': 1,
   'wordpress': 1,
   'yahoo': 1,
   'year': 1,
   'zend': 1},
  'M'),
 ({'.net': 1,
   '5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'y',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'applic': 1,
   'bug': 1,
   'case': 1,
   'deposit_made': False,
   'develop': 1,
   'director': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'kind': 1,
   'manag': 1,
   'manti': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'plan': 1,
   'profile_complete': True,
   'redmin': 1,
   'report': 1,
   'softwar': 1,
   'test': 4,
   'tool': 2,
   'web': 1,
   'year': 1},
  'M'),
 ({"'s": 1,
   '10': 1,
   '3d': 2,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'b',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'architectur': 1,
   'competit': 1,
   'cost': 1,
   'deposit_made': False,
   'design': 2,
   'easi': 1,
   'effect': 1,
   'email_verified': True,
   'experi': 1,
   'exterior': 1,
   'facebook_connected': False,
   'fast': 1,
   'field': 1,
   'identity_verified': False,
   'industri': 1,
   'interior': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'provid': 1,
   'quick': 1,
   'render': 1,
   'respons': 1,
   'sever': 1,
   'turnaround': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'although': 1,
   'art': 1,
   'ba': 1,
   'bfa': 1,
   'busi': 1,
   'colleg': 1,
   'creat': 1,
   'deposit_made': False,
   'design': 3,
   'develop': 1,
   'diego': 1,
   'draw': 1,
   'either': 1,
   'email_verified': True,
   'facebook_connected': False,
   'fashion': 2,
   'favorit': 1,
   'fiction': 1,
   'human': 1,
   'identity_verified': False,
   'logo': 1,
   'love': 1,
   'opinion': 1,
   'other': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'review': 1,
   'san': 1,
   'sketch': 1,
   'thing': 1,
   'uc': 1,
   'write': 1},
  'F'),
 ({"'m": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'L',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'audio': 1,
   'come': 1,
   'cost-effect': 1,
   'deposit_made': False,
   'detail': 1,
   'ear': 1,
   'edit': 1,
   'email': 1,
   'email_verified': True,
   'facebook_connected': True,
   'file': 1,
   'first': 1,
   'hand': 1,
   'handl': 1,
   'hour': 1,
   'identity_verified': False,
   'mind': 1,
   'offer': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'qualiti': 2,
   'sacrif': 1,
   'thing': 1,
   'time': 1,
   'transcrib': 1,
   'transcript': 1,
   'two': 1,
   'valu': 1,
   'whenev': 1,
   'without': 1,
   'work': 1},
  'M'),
 ({"'d": 1,
   "'re": 3,
   "'ve": 3,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='4'>,
   'First': 'k',
   'Last': '5',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'access': 1,
   'allow': 1,
   'also': 2,
   'assist': 1,
   'best': 1,
   'blog': 1,
   'bunch': 1,
   'class': 1,
   'client': 1,
   'clients.w': 1,
   'come': 1,
   'compon': 1,
   'content': 3,
   'creat': 1,
   'custom': 1,
   'day': 2,
   'deploy': 1,
   'deposit_made': False,
   'design': 2,
   'develop': 1,
   'drupal': 1,
   'dynam': 1,
   'e-commerc': 3,
   'edit': 1,
   'email_verified': True,
   'expert': 2,
   'extend': 1,
   'facebook_connected': False,
   'flexibl': 2,
   'fort': 1,
   'glad': 1,
   'good': 1,
   'got': 1,
   'identity_verified': False,
   'joomla': 2,
   'like': 1,
   'list': 1,
   'lm': 1,
   'magento': 1,
   'manag': 2,
   'need': 2,
   'ocommerc': 1,
   'open': 1,
   'opensourc': 1,
   'part': 1,
   'payment_verified': False,
   'phone_verified': False,
   'platform': 2,
   'power': 1,
   'profile_complete': True,
   'program': 1,
   'scalabl': 1,
   'servic': 1,
   'shini': 1,
   'skin': 1,
   'sourc': 1,
   'style': 1,
   'system': 1,
   'theme': 1,
   'umbraco': 1,
   'web': 2,
   'websit': 3,
   'without': 1,
   'wordpress': 2,
   'work': 1,
   'world': 1},
  'F'),
 ({"'ve": 1,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'add': 1,
   'agenc': 1,
   'alway': 1,
   'background': 1,
   'best': 1,
   'build': 1,
   'care': 1,
   'client': 2,
   'close': 1,
   'complex': 1,
   'deadlin': 1,
   'deposit_made': True,
   'develop': 5,
   'digit': 1,
   'email_verified': True,
   'enabl': 1,
   'enhanc': 1,
   'everi': 2,
   'experi': 1,
   'expertis': 1,
   'extern': 1,
   'facebook_connected': False,
   'focu': 1,
   'front-end': 1,
   'ground': 1,
   'guarante': 1,
   'handl': 1,
   'identity_verified': False,
   'keep': 1,
   'knowledg': 1,
   'mainli': 1,
   'mani': 1,
   'meet': 1,
   'passion': 1,
   'past': 1,
   'payment_verified': True,
   'phone_verified': True,
   'presenc': 1,
   'profile_complete': True,
   'project': 2,
   'qualiti': 1,
   'relationship': 1,
   'sever': 1,
   'site': 1,
   'strong': 1,
   'supplier': 1,
   'take': 1,
   'tight': 1,
   'time': 1,
   'understand': 1,
   'valu': 1,
   'websit': 4,
   'work': 4,
   'year': 1},
  'M'),
 ({'6': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'Digit': None,
   'First': 'O',
   'Last': 'm',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'abl': 1,
   'analysi': 1,
   'cycl': 1,
   'databas': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 5,
   'email_verified': True,
   'enjoy': 1,
   'experi': 1,
   'facebook_connected': False,
   'familiar': 1,
   'full': 1,
   'identity_verified': False,
   'implement': 1,
   'integr': 1,
   'learn': 1,
   'new': 1,
   'payment_verified': False,
   'phone_verified': False,
   'product': 1,
   'profile_complete': True,
   'singl': 1,
   'softwar': 2,
   'system': 1,
   'team': 1,
   'thing': 1,
   'tri': 1,
   'web': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 's',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'deposit_made': False,
   'develop': 1,
   'drupal': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'framework': 1,
   'great': 1,
   'identity_verified': False,
   'joomla': 1,
   'like': 1,
   'mysql': 1,
   'numer': 1,
   'opencart': 1,
   'opensourc': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'popular': 1,
   'profile_complete': True,
   'use': 1,
   'websit': 1,
   'wordpress': 2,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'g',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'abl': 1,
   'advantag': 1,
   'asid': 1,
   'busi': 1,
   'chines': 1,
   'compani': 1,
   'current': 1,
   'definit': 1,
   'deposit_made': False,
   'email_verified': True,
   'english': 2,
   'ethic': 1,
   'facebook_connected': True,
   'good': 1,
   'hard': 1,
   'hope': 1,
   'identity_verified': False,
   'japanes': 1,
   'kill': 1,
   'know': 1,
   'korean': 1,
   'languag': 3,
   'like': 1,
   'long': 1,
   'minim': 1,
   'nation': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profici': 1,
   'profile_complete': True,
   'relationship': 1,
   'supervis': 1,
   'take': 1,
   'term': 1,
   'train': 1,
   'trainer': 1,
   'trust': 1,
   'valu': 1,
   'without': 1,
   'work': 4,
   'would': 1},
  'F'),
 ({'2d': 1,
   '3': 1,
   '5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'analysi': 1,
   'android': 1,
   'appli': 1,
   'applic': 1,
   'auto': 3,
   'base': 1,
   'build': 1,
   'captcha': 1,
   'client': 2,
   'command': 2,
   'core': 2,
   'crawl': 1,
   'data': 2,
   'deposit_made': True,
   'design': 1,
   'desktop': 1,
   'eclips': 1,
   'email_verified': True,
   'engin': 1,
   'experi': 1,
   'facebook_connected': True,
   'fake': 1,
   'game': 3,
   'hibern': 1,
   'http': 1,
   'identity_verified': False,
   'io': 1,
   'ip': 1,
   'java': 5,
   'languag': 3,
   'libgdx': 1,
   'logic': 1,
   'member': 2,
   'mssql': 1,
   'multi': 2,
   'multithread': 1,
   'mysql': 2,
   'payment_verified': False,
   'phone_verified': True,
   'platform': 1,
   'poker': 1,
   'posit': 2,
   'process': 1,
   'profile_complete': True,
   'project': 6,
   'proxi': 1,
   'receiv': 1,
   'run': 1,
   'send': 1,
   'server': 3,
   'smartfox': 1,
   'strut': 1,
   'tcp': 1,
   'udp': 1,
   'ui': 1,
   'use': 1,
   'user': 1,
   'web': 1,
   'websit': 1,
   'written': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'j',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'hp': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'selenium': 1,
   'test': 1,
   'web': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'blog': 1,
   'check': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'analys': 1,
   'autocad': 1,
   'corpor': 1,
   'data': 1,
   'demand': 1,
   'deposit_made': False,
   'design-': 1,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'expertise-': 1,
   'facebook_connected': False,
   'follow': 1,
   'formula': 1,
   'identity_verified': False,
   'layout': 1,
   'payment_verified': True,
   'phone_verified': True,
   'plan': 1,
   'profile_complete': True,
   'sourc': 1,
   'year': 1},
  'M'),
 ({"'ve": 1,
   'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'g',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
   'administration-': 1,
   'analysi': 1,
   'automation-': 1,
   'busi': 2,
   'chang': 1,
   'client': 1,
   'compani': 1,
   'corner': 1,
   'corpor': 1,
   'creat': 1,
   'crm': 1,
   'current': 1,
   'databas': 1,
   'decad': 1,
   'deposit_made': False,
   'design': 4,
   'develop': 3,
   'development-': 1,
   'ecommerc': 1,
   'educ': 1,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'focus': 1,
   'global': 1,
   'goal': 1,
   'help': 1,
   'home': 1,
   'ident': 1,
   'identity_verified': False,
   'industri': 2,
   'institut': 1,
   'interfac': 1,
   'intern': 1,
   'internet': 1,
   'last': 1,
   'linux': 1,
   'management-': 1,
   'matter': 1,
   'memor': 1,
   'network': 1,
   'onlin': 1,
   'optim': 2,
   'optimization-': 1,
   'organ': 1,
   'past': 1,
   'payment_verified': False,
   'phone_verified': False,
   'portfolio': 1,
   'post': 1,
   'pre': 1,
   'presenc': 1,
   'process': 1,
   'profile_complete': True,
   'project': 3,
   'renown': 1,
   'scope': 1,
   'search': 1,
   'serv': 1,
   'server': 1,
   'shop': 1,
   'site': 1,
   'size': 1,
   'social': 1,
   'success': 1,
   'team': 1,
   'technic': 1,
   'user': 1,
   'web': 3,
   'well': 2,
   'within': 1,
   'work': 3},
  'M'),
 ({'3': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'ajax': 1,
   'current': 2,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'done': 1,
   'email_verified': True,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'field': 2,
   'freelanc': 2,
   'html': 2,
   'identity_verified': False,
   'javascript': 1,
   'joomla': 1,
   'kerala': 1,
   'locat': 1,
   'member': 1,
   'mysql': 1,
   'name': 1,
   'past': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'program': 1,
   'project': 2,
   'softwar': 1,
   'success': 1,
   'team': 1,
   'web': 2,
   'wordpress': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'2000.': 1,
   '9': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='8'>,
   'First': 'l',
   'Last': '8',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'advertis': 2,
   'compani': 1,
   'cours': 1,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'finish': 1,
   'graduat': 1,
   'graphic': 1,
   'hello': 1,
   'hope': 1,
   'identity_verified': False,
   'li': 1,
   'logo': 1,
   'major': 1,
   'organ': 1,
   'payment_verified': False,
   'perfectli': 1,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'univers': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'100': 1,
   '9': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='3'>,
   'First': 'a',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'afford': 1,
   'alreadi': 1,
   'also': 1,
   'background': 1,
   'chat': 1,
   'commun': 1,
   'custom': 1,
   'deposit_made': True,
   'design': 2,
   'directli': 1,
   'electron': 1,
   'email_verified': True,
   'facebook_connected': True,
   'freelanc': 1,
   'give': 1,
   'graphic': 2,
   'identity_verified': True,
   'inbox': 1,
   'india': 1,
   'intern': 1,
   'internet': 1,
   'item': 1,
   'jingl': 1,
   'kind': 1,
   'lot': 1,
   'market': 1,
   'music': 1,
   'one': 1,
   'one-on-on': 1,
   'outsourc': 1,
   'past': 1,
   'pay': 1,
   'payment_verified': True,
   'per': 1,
   'phone_verified': True,
   'print': 1,
   'produc': 1,
   'profile_complete': True,
   'provid': 2,
   'right': 1,
   'satisfact': 1,
   'satisfi': 1,
   'score': 1,
   'see': 1,
   'servic': 2,
   'sinc': 1,
   'solut': 1,
   'song': 1,
   'time': 2,
   'updat': 1,
   'variou': 1,
   'web': 2,
   'well': 1,
   'work': 1,
   'years.i': 1},
  'M'),
 ({'10': 1,
   '2': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 's',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   '\\t\\t': 2,
   '\\xe2\\u20ac\\xa2\\tgraph': 1,
   '\\xe2\\u20ac\\xa2\\tmicrosoft': 1,
   'apart': 1,
   'appli': 1,
   'bachelor': 1,
   'birth': 2,
   'career': 1,
   'cebu': 2,
   'central': 1,
   'citi': 1,
   'citymobil': 1,
   'comput': 3,
   'cours': 1,
   'decemb': 1,
   'deposit_made': False,
   'design': 2,
   'e.': 1,
   'email_verified': True,
   'erni': 2,
   'experi': 1,
   'f.': 1,
   'facebook_connected': False,
   'graphic': 1,
   'identity_verified': False,
   'inform': 2,
   'institut': 3,
   'internet': 1,
   'israel': 1,
   'ken': 1,
   'knowledg': 1,
   'l.': 1,
   'laboratori': 1,
   'mae': 1,
   'major': 1,
   'mother\\xe2\\u20ac\\u2122': 1,
   'multimedia': 2,
   'name': 2,
   'objectiveto': 1,
   'occup': 1,
   'page': 1,
   'payment_verified': False,
   'phone_verified': False,
   'portfolio': 1,
   'profici': 1,
   'profile_complete': True,
   'sm': 1,
   'staff': 1,
   'street': 1,
   'technolog': 1,
   'v.': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'custom': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'import': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'satisfact': 1,
   'success': 1},
  'M'),
 ({"'re": 1,
   '.net': 2,
   '3d': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='7'>,
   'First': 't',
   'Last': '9',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'ajax': 1,
   'brochur': 1,
   'c': 1,
   'css': 1,
   'deposit_made': False,
   'email_verified': True,
   'event': 1,
   'facebook_connected': False,
   'flash': 1,
   'flex': 1,
   'html': 1,
   'identity_verified': False,
   'illustr': 1,
   'javascript': 1,
   'jqueri': 1,
   'logo': 1,
   'mail': 1,
   'make': 1,
   'manag': 1,
   'nhibern': 1,
   'nuke': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'profile_complete': True,
   'project': 1,
   'readi': 1,
   'servic': 1,
   'tran': 1,
   'xml': 1},
  'M'),
 ({"'m": 3,
   "'s": 2,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'bonu': 1,
   'cash': 1,
   'deposit_made': False,
   'email_verified': True,
   'employ': 1,
   'facebook_connected': False,
   'first': 1,
   'fun': 1,
   'gain': 1,
   'help': 1,
   'hobbi': 1,
   'identity_verified': False,
   'littl': 1,
   'mark': 1,
   'next': 1,
   'nice': 1,
   'other': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pocket': 1,
   'prioriti': 1,
   'profile_complete': True,
   'put': 1,
   'singl': 1,
   'tri': 1,
   'websit': 1,
   'well': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'i',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'assert': 1,
   'believ': 1,
   'commun': 1,
   'creativ': 1,
   'deposit_made': False,
   'driven': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'keep': 1,
   'led': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profess': 1,
   'profile_complete': True,
   'simpl': 1,
   'techniqu': 1,
   'thing': 2,
   'write': 1},
  'M'),
 ({'.net': 3,
   '2.0,3.5,4.0': 1,
   '2000': 1,
   '2003': 2,
   '2005': 1,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '\\t': 1,
   '\\tasp.net': 1,
   '\\thtml': 1,
   '\\tsql': 1,
   '\\tvisual': 1,
   'abil': 1,
   'action': 1,
   'adob': 2,
   'analysi': 1,
   'analyt': 1,
   'attitud': 1,
   'c': 1,
   'cm': 1,
   'code': 1,
   'commun': 1,
   'comput': 1,
   'control': 1,
   'cs3': 2,
   'databas': 1,
   'debug': 1,
   'degre': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'excel': 1,
   'facebook_connected': False,
   'framework': 1,
   'googl': 1,
   'host': 1,
   'html5': 1,
   'identity_verified': False,
   'implement': 1,
   'includ': 2,
   'independ': 1,
   'integr': 1,
   'interfac': 1,
   'item': 1,
   'javascript': 3,
   'jqueri': 1,
   'languages\\t': 3,
   'map': 2,
   'markup': 1,
   'master': 1,
   'net': 1,
   'obfusc': 2,
   'oral': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'posit': 1,
   'problem': 2,
   'profile_complete': True,
   'reactor': 2,
   'requir': 1,
   'results-ori': 1,
   'script': 1,
   'server': 1,
   'skill': 1,
   'softwar': 1,
   'solv': 2,
   'sql': 1,
   'store': 1,
   'strong': 1,
   'studio': 2,
   't-sql': 1,
   'team': 1,
   'technic': 1,
   'telerik': 1,
   'univers': 1,
   'use': 1,
   'user': 1,
   'v2': 1,
   'v3': 1,
   'vb.net': 1,
   'version': 1,
   'visual': 1,
   'web': 2,
   'websit': 1,
   'work': 2,
   'written': 1,
   'xml': 1,
   'xpath': 1,
   'xslt': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='0'>,
   'First': 'v',
   'Last': '4',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'build': 1,
   'daili': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'everyday': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'keep': 1,
   'learn': 1,
   'like': 1,
   'motto': 1,
   'new': 2,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'renew': 1,
   'softwar': 1,
   'thing': 2,
   'want': 1},
  'M'),
 ({'.net': 2,
   '2.0': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'abl': 1,
   'ajax': 1,
   'ambit': 1,
   'applic': 1,
   'argentina': 1,
   'asp.net': 1,
   'autom': 1,
   'back': 1,
   'best': 1,
   'c': 1,
   'challeng': 1,
   'client': 1,
   'com': 1,
   'come': 1,
   'commit': 1,
   'commun': 1,
   'compani': 1,
   'cope': 1,
   'css': 1,
   'data': 1,
   'db': 2,
   'definit': 1,
   'deliv': 1,
   'deliveri': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'email_verified': True,
   'end': 1,
   'engin': 1,
   'environ': 1,
   'ethic': 1,
   'excel': 1,
   'experi': 1,
   'expertis': 2,
   'facebook_connected': False,
   'five': 1,
   'form': 1,
   'foundat': 1,
   'foundation-': 1,
   'framework': 2,
   'graduat': 1,
   'honest': 1,
   'html': 1,
   'identity_verified': False,
   'ii': 1,
   'inform': 1,
   'innumer': 1,
   'interop': 1,
   'invok': 1,
   'languag': 1,
   'linkedin': 1,
   'look': 1,
   'make': 1,
   'manner': 1,
   'microsoft': 2,
   'ms': 1,
   'multi-thread': 1,
   'offic': 1,
   'oportun': 1,
   'payment_verified': False,
   'perform': 1,
   'phone_verified': False,
   'platform': 1,
   'possibl': 1,
   'product': 1,
   'profession': 2,
   'profil': 1,
   'profile_complete': True,
   'qualiti': 2,
   'rang': 1,
   'renown': 1,
   'satisfact': 1,
   'server': 2,
   'servic': 3,
   'skill': 1,
   'softwar': 1,
   'sql': 1,
   'synchron': 1,
   'system': 1,
   't-sql': 1,
   'team': 1,
   'time': 1,
   'trigger': 1,
   'troubleshoot': 1,
   'tuning-': 1,
   'univers': 1,
   'virtual': 1,
   'web': 2,
   'wide': 1,
   'win32': 1,
   'window': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'7': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   'brick': 1,
   'build': 1,
   'busi': 1,
   'call': 1,
   'center': 1,
   'commerci': 1,
   'deposit_made': True,
   'email_verified': True,
   'experi': 1,
   'expertis': 2,
   'facebook_connected': False,
   'first': 1,
   'identity_verified': False,
   'major': 1,
   'need': 1,
   'open': 1,
   'payment_verified': False,
   'phone_verified': True,
   'product': 1,
   'profile_complete': True,
   'solut': 2,
   'sourc': 1,
   'suggest': 1,
   'voip': 2,
   'year': 1},
  'M'),
 ({"'ve": 2,
   '15': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'adapt': 1,
   'allow': 1,
   'also': 1,
   'anyth': 1,
   'area': 1,
   'articl': 1,
   'busi': 1,
   'command': 1,
   'concern': 1,
   'content': 1,
   'creation': 1,
   'creativ': 1,
   'current': 1,
   'deliveri': 1,
   'deposit_made': False,
   'educ': 1,
   'email_verified': True,
   'english': 1,
   'experi': 2,
   'expertis': 1,
   'facebook_connected': False,
   'far': 1,
   'firm': 1,
   'flexibl': 1,
   'forward': 1,
   'full': 1,
   'gener': 1,
   'hard-work': 1,
   'identity_verified': False,
   'internet': 1,
   'kind': 2,
   'knowledg': 1,
   'languag': 1,
   'look': 1,
   'mainli': 1,
   'manag': 1,
   'market': 1,
   'materi': 1,
   'newspap': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'possess': 1,
   'press': 1,
   'profile_complete': True,
   'project': 1,
   'projects.i': 1,
   'psycholog': 1,
   'rate': 1,
   'releas': 1,
   'reliabl': 1,
   'requir': 1,
   'schedul': 1,
   'scienc': 1,
   'social': 1,
   'spanish': 1,
   'tackl': 1,
   'time': 1,
   'translat': 4,
   'type': 2,
   'variou': 1,
   'websit': 1,
   'work': 2,
   'write': 1,
   'written': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'e',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': True,
   'idea': 1,
   'identity_verified': False,
   'knowledg': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True},
  'M'),
 ({"'m": 1,
   "'s": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'J',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'aim': 1,
   'alreadi': 1,
   'anoth': 1,
   'anyth': 1,
   'articl': 2,
   'avoid': 2,
   'base': 2,
   'caus': 1,
   'check': 1,
   'client': 3,
   'commun': 1,
   'consider': 1,
   'constantli': 1,
   'crazi': 1,
   'creat': 1,
   'creativ': 2,
   'critic': 1,
   'deposit_made': True,
   'deriv': 1,
   'determin': 1,
   'differ': 1,
   'domain': 1,
   'email_verified': True,
   'everi': 2,
   'exist': 1,
   'facebook_connected': False,
   'fail': 1,
   'freelanc': 1,
   'health': 1,
   'honesti': 1,
   'honestli': 1,
   'hospit': 1,
   'idea': 1,
   'identity_verified': False,
   'integr': 2,
   'keep': 1,
   'lag': 1,
   'life': 2,
   'make': 2,
   'mental': 1,
   'much': 1,
   'new': 2,
   'past': 1,
   'payment_verified': False,
   'perhap': 1,
   'person': 2,
   'phone_verified': False,
   'piec': 2,
   'pleasur': 1,
   'produc': 2,
   'product': 3,
   'profile_complete': True,
   'regret': 2,
   'regularli': 1,
   'requir': 2,
   'respect': 1,
   'satisfact': 1,
   'somewher': 1,
   'still': 1,
   'sure': 1,
   'thing': 1,
   'three': 1,
   'time': 1,
   'tire': 1,
   'tri': 1,
   'troubl': 1,
   'two': 1,
   'unnecessari': 1,
   'util': 1,
   'valu': 1,
   'virtu': 1,
   'word': 2,
   'work': 3,
   'world': 1,
   'would': 1,
   'write': 6,
   'zeal': 1},
  'F'),
 ({'...': 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'n',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'alway': 1,
   'beauti': 1,
   'build': 1,
   'client': 1,
   'creat': 1,
   'deposit_made': False,
   'design': 4,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'field': 1,
   'graphic': 2,
   'identity_verified': False,
   'indonesia': 1,
   'logo': 1,
   'long': 1,
   'look': 1,
   'love': 1,
   'mani': 1,
   'market': 1,
   'outsourc': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'rang': 1,
   'relationship': 1,
   'solut': 1,
   'term': 1,
   'time': 1,
   'uniqu': 1,
   'web': 2,
   'web-servic': 1,
   'wide': 1,
   'work': 3},
  'M'),
 ({'4': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': '7',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'servic': 1,
   'web': 1,
   'work': 1,
   'year': 1,
   'zend': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'p',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='I'>,
   'creativ': 1,
   'deposit_made': True,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'hardwork': 1,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'talent': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'r',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'aim': 1,
   'android': 1,
   'asp.net': 1,
   'css': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': True,
   'html': 1,
   'identity_verified': False,
   'linq': 1,
   'mobil': 1,
   'mysql': 1,
   'new': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'provid': 1,
   'readi': 1,
   'solut': 1,
   'sql': 1,
   'technolog': 3,
   'use': 2,
   'web': 1,
   'work': 1,
   'xhtml': 1},
  'M'),
 ({'.o': 1,
   'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'i',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'admin': 2,
   'also': 1,
   'applic': 1,
   'author': 1,
   'bengal': 1,
   'binari': 1,
   'code': 1,
   'colleg': 1,
   'compani': 1,
   'creat': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 5,
   'display': 2,
   'doc': 1,
   'downlin': 2,
   'email_verified': True,
   'event': 1,
   'facebook_connected': True,
   'format': 1,
   'forum': 1,
   'get': 1,
   'give': 1,
   'graphic': 2,
   'hard': 1,
   'identity_verified': False,
   'import': 2,
   'level': 1,
   'look': 1,
   'matter': 1,
   'mlm': 1,
   'nation': 1,
   'new': 1,
   'panel': 2,
   'parti': 2,
   'payment_verified': False,
   'perfectli': 1,
   'person': 1,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'regist': 1,
   'see': 1,
   'share': 1,
   'tree': 1,
   'updat': 1,
   'use': 1,
   'user': 1,
   'way': 1,
   'websit': 3,
   'west': 1,
   'without': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'i',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
   'accordingli': 1,
   'agil': 1,
   'along': 1,
   'also': 1,
   'approach': 2,
   'ask': 1,
   'blocker': 1,
   'certain': 1,
   'client': 1,
   'coordin': 1,
   'deadlin': 1,
   'deposit_made': False,
   'design': 1,
   'directli': 1,
   'document': 2,
   'done': 1,
   'email_verified': True,
   'engin': 2,
   'execut': 2,
   'experi': 1,
   'expertis': 1,
   'extens': 1,
   'facebook_connected': False,
   'gather': 1,
   'get': 1,
   'happen': 2,
   'help': 1,
   'identity_verified': False,
   'job': 1,
   'lead': 2,
   'make': 1,
   'manag': 1,
   'master': 1,
   'meet': 1,
   'mitig': 1,
   "n't": 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': True,
   'plan': 1,
   'possibl': 1,
   'prepar': 1,
   'profile_complete': True,
   'project': 6,
   'put': 1,
   'remov': 1,
   'requir': 2,
   'resourc': 2,
   'risk': 1,
   'scenario': 1,
   'schedul': 1,
   'scrum': 1,
   'situat': 1,
   'softwar': 6,
   'success': 2,
   'team': 1,
   'technic': 1,
   'test': 2,
   'testing.i': 1,
   'tri': 3,
   'us': 1,
   'use': 1,
   'variou': 2,
   'well': 1,
   'work': 3},
  'M'),
 ({'6': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='7'>,
   'First': 'h',
   'Last': '8',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'accur': 1,
   'comput': 1,
   'contact': 1,
   'depend': 1,
   'deposit_made': False,
   'dual': 1,
   'email_verified': True,
   'facebook_connected': False,
   'fast': 1,
   'first': 1,
   'futur': 1,
   'high': 1,
   'home': 1,
   'honest': 1,
   'identity_verified': False,
   'job': 1,
   'monitor': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'right': 1,
   'speed': 1,
   'time': 1,
   'work': 2,
   'year': 1},
  'F'),
 ({"'ll": 1,
   "'m": 1,
   '100': 3,
   '2008': 1,
   '2009': 1,
   '2011': 1,
   '5': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='i'>,
   'actual': 1,
   'advis': 1,
   'anyth': 1,
   'around': 1,
   'becam': 1,
   'broaden': 1,
   'cake': 1,
   'career': 1,
   'cash': 1,
   'commun': 1,
   'core': 1,
   'current': 1,
   'decid': 1,
   'deliv': 1,
   'deposit_made': True,
   'direct': 2,
   'email_verified': True,
   'engin': 1,
   'excel': 1,
   'facebook_connected': True,
   'flow': 1,
   'focu': 1,
   'free': 1,
   'freelanc': 2,
   'happi': 1,
   'heavi': 1,
   'identity_verified': True,
   'improv': 1,
   'includ': 1,
   'innov': 1,
   'interperson': 1,
   'invest': 1,
   'later': 1,
   'learn': 1,
   'limit': 1,
   'main': 2,
   "n't": 1,
   'payment_verified': True,
   'phone_verified': True,
   'piec': 1,
   'potenti': 1,
   'profile_complete': True,
   'project': 4,
   'punctual': 1,
   'quality-': 1,
   'record': 1,
   'recruit': 1,
   'review': 1,
   'sale': 2,
   'see': 1,
   'sever': 1,
   'skill': 1,
   'small': 2,
   'softwar': 2,
   'spanish': 1,
   'standard': 1,
   'star': 1,
   'start': 1,
   'start-up': 1,
   'take': 1,
   'time': 2,
   'trainer': 1,
   'translat': 1,
   'travel': 2,
   'undertak': 1,
   'want': 1,
   'work': 1,
   'world': 1,
   'write': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'level': 1,
   'offer': 1,
   'oppurtun': 1,
   'optimum': 1,
   'payment_verified': False,
   'perform': 1,
   'phone_verified': False,
   'profile_complete': True,
   'seek': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'r',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'c': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'good': 1,
   'identity_verified': False,
   'mine': 1,
   'payment_verified': True,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'project': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'end': 1,
   'facebook_connected': True,
   'front': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'web': 1},
  'M'),
 ({'10': 1,
   '3': 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'advertis': 1,
   'concept': 2,
   'concern': 1,
   'creat': 1,
   'deposit_made': True,
   'design': 4,
   'email_verified': True,
   'experi': 2,
   'explor': 1,
   'facebook_connected': False,
   'graphic': 1,
   'idea': 1,
   'identity_verified': False,
   'like': 1,
   'logo': 2,
   'payment_verified': True,
   'phone_verified': False,
   'power': 1,
   'profile_complete': True,
   'simpl': 1,
   'specialist': 1,
   'strong': 1,
   'work': 1,
   'year': 2},
  'M'),
 ({'9': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'advertis': 1,
   'approv': 1,
   'area': 1,
   'arrang': 1,
   'assembl': 1,
   'associ': 1,
   'avail': 1,
   'background': 1,
   'cad/cam': 1,
   'call': 1,
   'chang': 2,
   'check': 1,
   'compani': 1,
   'conceptu': 1,
   'consider': 1,
   'conveni': 1,
   'custom': 1,
   'cut': 1,
   'dear': 1,
   'depart': 2,
   'deposit_made': True,
   'design': 5,
   'detail': 1,
   'develop': 1,
   'discuss': 1,
   'draw': 4,
   'educ': 1,
   'email_verified': True,
   'enclos': 1,
   'engin': 3,
   'enquiri': 1,
   'entail': 1,
   'entir': 1,
   'equip': 2,
   'exist': 2,
   'experi': 3,
   'extract': 1,
   'facebook_connected': False,
   'final': 3,
   'first': 1,
   'follow': 1,
   'identifi': 1,
   'identity_verified': False,
   'improv': 2,
   'industri': 1,
   'interview': 2,
   'mainten': 1,
   'manag': 2,
   'mass': 1,
   'meet': 1,
   'model': 4,
   'mutual': 1,
   'new': 1,
   'oper': 1,
   'organ': 1,
   'part': 1,
   'payment_verified': True,
   'pertain': 1,
   'phone_verified': False,
   'plan': 1,
   'problem': 1,
   'procedur': 1,
   'product': 6,
   'profile_complete': True,
   'project': 1,
   'qualif': 1,
   'qualiti': 2,
   'quotat': 1,
   'relat': 1,
   'releas': 1,
   'requir': 2,
   'resolv': 1,
   'respond': 1,
   'resum': 1,
   'sampl': 1,
   'schedul': 1,
   'select': 1,
   'show': 1,
   'sincer': 1,
   'sir': 1,
   'solid': 1,
   'solut': 1,
   'specif': 2,
   'staff': 1,
   'studi': 2,
   'task': 1,
   'team': 1,
   'test': 1,
   'thank': 1,
   'time': 2,
   'tool': 1,
   'total': 1,
   'translat': 1,
   'use': 1,
   'variou': 2,
   'vendor': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'aspect': 3,
   'call': 1,
   'center': 1,
   'comput': 1,
   'conflict': 1,
   'corpor': 1,
   'custom': 2,
   'data': 2,
   'deposit_made': True,
   'edit': 2,
   'email_verified': True,
   'entri': 2,
   'experienc': 4,
   'facebook_connected': False,
   'identity_verified': False,
   'includ': 1,
   'legal': 1,
   'main': 1,
   'medic': 1,
   'ms': 1,
   'offic': 1,
   'oper': 1,
   'order': 1,
   'payment_verified': True,
   'person': 1,
   'phone_verified': True,
   'product': 1,
   'profile_complete': True,
   'program': 1,
   'proofread': 1,
   'resolut': 1,
   'servic': 2,
   'strength': 1,
   'support': 2,
   'system': 1,
   'tech': 1,
   'telephon': 1,
   'transcript': 1,
   'variou': 1,
   'verif': 1,
   'window': 2,
   'write': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'applic': 4,
   'base': 1,
   'call': 1,
   'cm': 1,
   'compani': 2,
   'comput': 1,
   'confidenti': 2,
   'control': 1,
   'creat': 1,
   'current': 1,
   'deposit_made': False,
   'develop': 3,
   'email_verified': True,
   'embed': 1,
   'engin': 1,
   'extens': 1,
   'facebook_connected': True,
   'framework': 1,
   'graduat': 1,
   'help': 1,
   'identity_verified': False,
   'improv': 1,
   'interest': 1,
   'iphon': 1,
   'job': 1,
   'joomla': 1,
   'let': 1,
   'licens': 1,
   'mechan': 1,
   'methodolog': 1,
   'mobil': 1,
   'mostli': 1,
   'mvc': 1,
   'oop': 1,
   'open': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'softwar': 1,
   'someth': 1,
   'sourc': 2,
   'special': 1,
   'technolog': 1,
   'uniqu': 1,
   'use': 2,
   'version': 1,
   'web': 2,
   'work': 5,
   'wrote': 1,
   'xcode': 1,
   'year': 1},
  'M'),
 ({"'s": 1,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'r',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'address': 2,
   'aforesaid': 1,
   'applic': 1,
   'back': 1,
   'backpag': 1,
   'capabl': 1,
   'catalog': 1,
   'classifi': 1,
   'client': 2,
   'clients.5': 1,
   'come': 1,
   'compani': 2,
   'contact': 1,
   'content': 1,
   'continu': 1,
   'convert': 1,
   'copi': 3,
   'cost.mi': 1,
   'data': 2,
   'deposit_made': True,
   'edit': 1,
   'effici': 1,
   'email': 1,
   'email_verified': True,
   'emails.6': 1,
   'enter': 1,
   'especi': 1,
   'excel': 1,
   'exchang': 1,
   'expert': 1,
   'facebook_connected': False,
   'feel': 1,
   'find': 1,
   'forward': 1,
   'fraction': 1,
   'free': 1,
   'high': 1,
   'identity_verified': False,
   'internet': 2,
   'like': 1,
   'link': 1,
   'list': 1,
   'mail': 1,
   'may': 2,
   'ms': 1,
   'name': 1,
   'necessari': 1,
   'new': 1,
   'number': 1,
   'offic': 1,
   'olx': 1,
   'onlin': 1,
   'past': 2,
   'payment_verified': True,
   'phone_verified': True,
   'possibl': 1,
   'post': 1,
   'product': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 3,
   'qualiti': 1,
   'research': 2,
   'satisfi': 1,
   'search': 2,
   'seo': 1,
   'servic': 3,
   'session': 1,
   'sharpen': 1,
   'shop': 1,
   'singer': 1,
   'skill': 1,
   'specialist': 2,
   'termin': 1,
   'time': 1,
   'train': 2,
   'url': 1,
   'websit': 2,
   'websites3': 1,
   'work': 6,
   'would': 2},
  'M'),
 ({"'m": 2,
   "'ve": 1,
   '.net': 2,
   '7+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'angularj': 1,
   'api': 2,
   'applic': 3,
   'asp.net': 1,
   'c': 1,
   'complet': 1,
   'deposit_made': False,
   'desktop': 1,
   'develop': 3,
   'email_verified': True,
   'experi': 1,
   'experienc': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'integr': 2,
   'interest': 1,
   'linq': 1,
   'mani': 1,
   'mvc': 1,
   'page': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 3,
   'servic': 1,
   'signalr': 1,
   'singl': 1,
   'softwar': 1,
   'success': 1,
   'technolog': 2,
   'use': 1,
   'web': 2,
   'websit': 1,
   'window': 1,
   'years\\xe2\\u20ac\\u2122': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 's',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'know': 1,
   'need': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'o',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'artist': 1,
   'board': 1,
   'complet': 1,
   'deposit_made': True,
   'effici': 1,
   'email_verified': True,
   'enabl': 1,
   'entertain': 1,
   'environ': 1,
   'facebook_connected': False,
   'fashion': 1,
   'game': 1,
   'high': 1,
   'identity_verified': False,
   'industry.i': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'qualiti': 1,
   'set': 1,
   'sever': 1,
   'ship': 1,
   'skill': 1,
   'task': 1,
   'time': 1,
   'titl': 1,
   'work': 1},
  'M'),
 ({'1983.': 1,
   '2005': 1,
   '2007': 1,
   '2011': 2,
   '3d': 1,
   '6': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='U'>,
   'Digit': None,
   'First': 'U',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='U'>,
   'accent': 1,
   'art': 1,
   'award': 2,
   'born': 1,
   'citi': 1,
   'competit': 1,
   'deposit_made': False,
   'design': 5,
   'educ': 1,
   'email_verified': True,
   'exhibit': 1,
   'facebook_connected': False,
   'fan': 1,
   'graduat': 1,
   'graphic': 1,
   'home': 1,
   'identity_verified': False,
   'industri': 2,
   'interior': 1,
   'intern': 1,
   'moscow': 1,
   'mount': 1,
   'nation': 1,
   'one': 1,
   'page': 1,
   'pari': 1,
   'particip': 1,
   'payment_verified': False,
   'phone_verified': True,
   'prize': 1,
   'profile_complete': True,
   'receiv': 2,
   'studio': 1,
   'ukrain': 1,
   'visual': 1,
   'wall': 1,
   'work': 1},
  'M'),
 ({'.net': 1,
   '7+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'also': 1,
   'android': 2,
   'applic': 4,
   'autom': 2,
   'base': 2,
   'browser': 1,
   'case': 2,
   'center': 1,
   'certifi': 1,
   'client': 1,
   'compat': 1,
   'contact': 1,
   'cross': 1,
   'cycl': 1,
   'databas': 1,
   'deliv': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'domain': 1,
   'dynam': 1,
   'ecommerc': 1,
   'educ': 1,
   'effici': 1,
   'elearn': 1,
   'email_verified': True,
   'erp': 1,
   'execut': 1,
   'experi': 3,
   'experienc': 1,
   'expert': 1,
   'expertis': 1,
   'facebook_connected': False,
   'financ': 1,
   'function': 1,
   'healthcar': 1,
   'high': 1,
   'highli': 1,
   'hp': 1,
   'identity_verified': False,
   'io': 1,
   'ipad': 1,
   'iphon': 1,
   'istqb': 1,
   'java': 1,
   'jira': 1,
   'jmeter': 1,
   'life': 1,
   'like': 1,
   'look': 1,
   'manag': 2,
   'manti': 1,
   'me.i': 1,
   'mobil': 2,
   'mssql': 1,
   'mysql': 1,
   'network': 1,
   'oracl': 1,
   'payment_verified': False,
   'perform': 1,
   'phone_verified': True,
   'php': 1,
   'plan': 1,
   'platform.i': 1,
   'pleas': 1,
   'profici': 1,
   'profile_complete': True,
   'project': 1,
   'proven': 1,
   'qa': 1,
   'qualiti': 3,
   'quickli': 1,
   'rang': 1,
   'scenario': 1,
   'selenium': 1,
   'servic': 1,
   'skill': 1,
   'soapui': 1,
   'social': 1,
   'softwar': 1,
   'standard': 1,
   'stlc': 1,
   'technolog': 1,
   'test': 12,
   'tester': 1,
   'tool': 1,
   'usabl': 1,
   'use': 4,
   'variou': 1,
   'web': 3,
   'work': 1,
   'year': 1},
  'M'),
 ({'7': 1,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'h',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'area': 1,
   'asp.net': 1,
   'corpor': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experience.mi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profici': 1,
   'profile_complete': True,
   'softwar': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'corpor': 1,
   'dedic': 1,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'experienc': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'recent': 1,
   'softwar': 1,
   'special': 1,
   'spoken': 1,
   'switch': 1,
   'technolog': 1,
   'web': 1,
   'well': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'.net': 1,
   '1': 1,
   '1978': 1,
   '1983': 2,
   '1983.': 1,
   '1985': 1,
   '1985.': 1,
   '1988': 1,
   '1989': 1,
   '1989.': 1,
   '1990': 2,
   '1991': 2,
   '1991.': 2,
   '1992': 1,
   '1993.': 1,
   '1994': 1,
   '1994.': 1,
   '1996': 1,
   '1996.': 1,
   '1997': 1,
   '1999': 1,
   '1999.': 1,
   '2': 2,
   '2000': 1,
   '2001': 1,
   '2002': 1,
   '2002.': 1,
   '2003': 4,
   '2004': 3,
   '2005': 3,
   '2005.': 1,
   '2006': 1,
   '2006.': 1,
   '2007': 3,
   '2007.': 1,
   '2011': 1,
   '3': 1,
   '3.1': 1,
   '3.2': 1,
   '4': 1,
   '400': 1,
   '48': 2,
   '5': 2,
   '5.1': 2,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 't',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   '\\xe2\\u20ac\\u0153inform': 2,
   '\\xe2\\u20ac\\u201c': 1,
   '\\xe2\\u20ac\\x9d': 1,
   'access': 2,
   'accessori': 1,
   'achiev': 1,
   'acm': 1,
   'acrobat': 1,
   'administr': 7,
   'adob': 1,
   'advanc': 4,
   'age\\xe2\\u20ac\\x9d': 2,
   'align': 1,
   'allow': 1,
   'along': 1,
   'american': 1,
   'antholog': 2,
   'aol': 1,
   'appli': 3,
   'applic': 1,
   'april': 2,
   'archiv': 1,
   'area': 2,
   'asp.net': 1,
   'assign': 1,
   'assist': 4,
   'associ': 3,
   'audio': 1,
   'audit': 1,
   'august': 9,
   'award': 1,
   'bachelor': 3,
   'backup': 1,
   'bank': 1,
   'basic': 2,
   'begin': 2,
   'bill': 1,
   'black': 1,
   'bring': 1,
   'busi': 3,
   'call': 1,
   'capella': 3,
   'carolina': 1,
   'cascad': 1,
   'cashier': 3,
   'catalog': 1,
   'cell': 1,
   'cellular': 1,
   'certif': 2,
   'cgi': 1,
   'chang': 1,
   'channel': 1,
   'charlott': 1,
   'check': 1,
   'children': 1,
   'choic': 1,
   'church': 1,
   'cisco': 6,
   'classroom': 3,
   'clean': 1,
   'clerk': 2,
   'club': 1,
   'collect': 2,
   'colleg': 2,
   'commerci': 1,
   'compani': 3,
   'complet': 2,
   'comput': 5,
   'concern': 1,
   'conduct': 1,
   'configur': 1,
   'connect': 2,
   'consist': 2,
   'consum': 1,
   'contest': 1,
   'contractor': 1,
   'control': 1,
   'corpor': 2,
   'creat': 1,
   'creation': 1,
   'creativ': 1,
   'credit': 1,
   'cricket': 1,
   'critiqu': 1,
   'cum': 1,
   'custom': 10,
   'daili': 1,
   'dakota': 9,
   'danc': 1,
   'data': 2,
   'databas': 2,
   'deadlin': 3,
   'decemb': 5,
   'degre': 1,
   'delta': 1,
   'depart': 2,
   'deposit_made': True,
   'design': 2,
   'develop': 2,
   'devil': 7,
   'dhtml': 1,
   'distribut': 1,
   'document': 7,
   'dolphin': 1,
   'dreamweav': 1,
   'dvd': 1,
   'e-busi': 1,
   'editor\\xe2\\u20ac\\u2122': 1,
   'educ': 1,
   'electr': 1,
   'electron': 2,
   'elementari': 1,
   'email_verified': True,
   'engin': 5,
   'entri': 2,
   'environ': 1,
   'equip': 2,
   'establish': 1,
   'estat': 7,
   'ethic': 1,
   'evalu': 2,
   'even': 1,
   'examin': 2,
   'exceed': 2,
   'excel': 1,
   'execut': 4,
   'expect': 3,
   'experi': 1,
   'facebook_connected': True,
   'fall': 1,
   'famili': 1,
   'famou': 2,
   'fargo': 1,
   'farm': 1,
   'field': 1,
   'final': 1,
   'firework': 1,
   'firm': 2,
   'fish': 1,
   'flash': 1,
   'format': 2,
   'freelanc': 1,
   'fuel': 2,
   'fundament': 1,
   'ga': 1,
   'gener': 2,
   'gpa': 3,
   'grand': 1,
   'graphic': 2,
   'group': 2,
   'hardwar': 2,
   'high': 3,
   'holiday': 1,
   'honeywel': 1,
   'hr': 4,
   'html': 1,
   'http': 1,
   'hug': 1,
   'human': 1,
   'hunt': 1,
   'ibm': 1,
   'identity_verified': False,
   'ieee': 2,
   'illustr': 1,
   'imagereadi': 1,
   'inbound': 1,
   'independ': 1,
   'individu': 1,
   'inform': 7,
   'instal': 2,
   'institut': 1,
   'instruct': 2,
   'instructor': 1,
   'insur': 1,
   'intellig': 1,
   'interact': 1,
   'intern': 4,
   'internet': 1,
   'interview': 1,
   'inventori': 2,
   'invest': 2,
   'invisalign': 1,
   'ivn': 2,
   'januari': 1,
   'javascript': 2,
   'jewel': 1,
   'june': 6,
   'lake': 9,
   'lan': 1,
   'larg': 2,
   'laud': 1,
   'law': 4,
   'leas': 2,
   'legal': 4,
   'leonard': 1,
   'level': 1,
   'librari': 1,
   'licens': 2,
   'life': 2,
   'linux': 1,
   'loan': 1,
   'locat': 3,
   'logo': 1,
   'machineri': 1,
   'macromedia': 1,
   'magazin': 1,
   'main': 1,
   'maintain': 2,
   'manag': 5,
   'mani': 1,
   'master': 2,
   'materi': 1,
   'may': 2,
   'medic': 1,
   'medium': 1,
   'meet': 5,
   'member': 4,
   'membership': 2,
   'merchandis': 1,
   'met': 1,
   'methodolog': 1,
   'microcomput': 1,
   'microsoft': 7,
   'middl': 1,
   'minneapoli': 9,
   'minnesota': 15,
   'month': 1,
   'monthli': 1,
   'mortgag': 1,
   'multimedia': 2,
   'mx': 1,
   'mysql': 1,
   'netwar': 2,
   'network': 6,
   'new': 1,
   'nomin': 1,
   'north': 10,
   'northern': 2,
   'novel': 2,
   'novemb': 5,
   'octob': 2,
   'offer': 2,
   'offic': 9,
   'one': 1,
   'oper': 2,
   'optim': 1,
   'order': 4,
   'organ': 1,
   'os': 1,
   'packag': 1,
   'part': 2,
   'part-tim': 5,
   'partial': 1,
   'pass': 1,
   'paul': 2,
   'payment': 1,
   'payment_verified': False,
   'pca': 1,
   'peopl': 1,
   'perl': 1,
   'perman': 1,
   'person': 1,
   'personnel': 4,
   'phone': 2,
   'phone_verified': False,
   'photo': 2,
   'photograph': 5,
   'photographi': 3,
   'photoshop': 1,
   'php': 1,
   'plan': 1,
   'poem': 3,
   'poet': 2,
   'poetri': 1,
   'portrait': 5,
   'posit': 1,
   'powerpoint': 1,
   'pre-school': 1,
   'present': 2,
   'president\\xe2\\u20ac\\u2122': 1,
   'process': 8,
   'processor': 1,
   'produc': 1,
   'product': 4,
   'profession': 5,
   'profile_complete': True,
   'program': 4,
   'project': 5,
   'promot': 1,
   'properti': 3,
   'provid': 2,
   'prudenti': 2,
   'publish': 4,
   'qtr': 4,
   'qualiti': 2,
   'qvc': 1,
   'radio': 1,
   'real': 7,
   'receiv': 1,
   'recognit': 1,
   'record': 3,
   'refresh': 1,
   'region': 2,
   'releas': 1,
   'repres': 4,
   'requir': 1,
   'research': 1,
   'respons': 1,
   'restaur': 1,
   'retail': 3,
   'review': 2,
   'rout': 1,
   'router': 2,
   'sale': 6,
   'satisfact': 1,
   'scan': 1,
   'school': 4,
   'scienc': 3,
   'search': 1,
   'season': 2,
   'secretari': 7,
   'secur': 1,
   'separ': 1,
   'septemb': 1,
   'server': 5,
   'servic': 10,
   'shack': 1,
   'sheet': 1,
   'shop': 1,
   'side': 1,
   'signal': 1,
   'skill': 1,
   'slide': 1,
   'social': 1,
   'societi': 2,
   'softwar': 1,
   'solari': 1,
   'sold': 2,
   'south': 1,
   'special': 2,
   'specialist': 3,
   'spring': 1,
   'sql': 2,
   'st.': 1,
   'state': 2,
   'state-of-the-art': 1,
   'station': 2,
   'stock': 2,
   'store': 4,
   'street': 1,
   'student': 3,
   'studi': 1,
   'studio': 6,
   'style': 1,
   'suit': 1,
   'summer': 1,
   'super': 1,
   'supervis': 2,
   'switch': 3,
   'system': 2,
   'tank': 1,
   'tax': 1,
   'technic': 1,
   'technician': 1,
   'technolog': 8,
   'teeth': 1,
   'telemarket': 2,
   'televis': 1,
   'temporari': 2,
   'throughout': 1,
   'ticket': 1,
   'today\\xe2\\u20ac\\u2122': 2,
   'tool': 1,
   'topolog': 1,
   'train': 1,
   'transact': 1,
   'travel': 3,
   'troubleshoot': 2,
   'two': 1,
   'uml': 1,
   'univers': 4,
   'unix': 2,
   'use': 4,
   'valu': 1,
   'verizon': 1,
   'video': 2,
   'visio': 1,
   'visual': 3,
   'walmart': 1,
   'wang': 1,
   'web': 2,
   'white': 1,
   'window': 1,
   'wing': 1,
   'winner': 1,
   'wireless': 1,
   'word': 6,
   'wordperfect': 2,
   'work': 5,
   'write': 2,
   'xhtml': 1,
   'xml': 2,
   'xp': 2,
   'year': 1,
   'york': 1},
  'F'),
 ({'--': 3,
   '2': 1,
   '25': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'h',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'adept': 1,
   'advanc': 1,
   'android': 2,
   'app': 1,
   'c': 1,
   'cakephp': 1,
   'case': 1,
   'client': 1,
   'codeignit': 1,
   'collabor': 1,
   'cost': 1,
   'deposit_made': True,
   'detect': 1,
   'develop': 7,
   'devic': 1,
   'driver': 2,
   'email_verified': True,
   'face': 2,
   'facebook_connected': False,
   'factori': 1,
   'fix': 1,
   'follow': 1,
   'hand': 1,
   'held': 1,
   'hourli': 1,
   'identity_verified': True,
   'imag': 1,
   'includ': 1,
   'job': 1,
   'laravel': 1,
   'linux': 1,
   'long': 1,
   'magento': 1,
   'maintain': 1,
   'mobil': 1,
   'morph': 1,
   'mvvm': 1,
   'os': 1,
   'pattern': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php/mysql': 1,
   'prefer': 1,
   'profile_complete': True,
   'provid': 1,
   'recognit': 2,
   'relationship': 1,
   'repositori': 1,
   'scraper': 1,
   'scrapi': 1,
   'selenium': 1,
   'server': 1,
   'servic': 1,
   'smile': 1,
   'solut': 1,
   'speech': 1,
   'sql': 1,
   'strive': 1,
   'studio': 1,
   'task': 1,
   'term': 2,
   'us': 1,
   'use': 2,
   'ver': 1,
   'web': 1,
   'webapi': 1,
   'window': 1,
   'wordpress/woocommerc': 1},
  'M'),
 ({'--': 40,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'cart': 1,
   'css': 1,
   'deposit_made': True,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'follow': 1,
   'html': 1,
   'identity_verified': False,
   'industri': 1,
   'onlin': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 2,
   'profile_complete': True,
   'respons': 1,
   'shop': 1,
   'special': 1,
   'websit': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='9'>,
   'First': 'm',
   'Last': '7',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'abl': 1,
   'assign': 1,
   'bilingu': 1,
   'complet': 1,
   'comput': 1,
   'data': 2,
   'dedic': 1,
   'deposit_made': True,
   'develop': 1,
   'effici': 1,
   'email_verified': True,
   'entri': 2,
   'environ': 1,
   'facebook_connected': True,
   'fast-pac': 1,
   'goal-ori': 1,
   'hard': 1,
   'identity_verified': False,
   'last': 1,
   'meticul': 1,
   'multitask': 1,
   'organ': 1,
   'payment_verified': True,
   'phone_verified': True,
   'pressur': 1,
   'problem': 1,
   'profici': 1,
   'profile_complete': True,
   'self-motiv': 1,
   'skill': 4,
   'solv': 1,
   'special': 1,
   'strong': 2,
   'superior': 1,
   'task': 3,
   'technic': 1,
   'time': 1,
   'variou': 2,
   'web': 1,
   'well': 1,
   'work': 4,
   'year': 1},
  'M'),
 ({'300+': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'Digit': None,
   'First': 'O',
   'Last': 'l',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'also': 3,
   'articl': 3,
   'automobil': 1,
   'build': 1,
   'carri': 1,
   'client': 1,
   'cruis': 1,
   'deposit_made': True,
   'done': 2,
   'email_verified': True,
   'etc': 1,
   'except': 1,
   'facebook_connected': True,
   'far': 1,
   'french': 1,
   'gaf': 3,
   'identity_verified': False,
   'medicin': 1,
   'monument': 1,
   'one': 1,
   'page': 1,
   'part': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profil': 1,
   'profile_complete': True,
   'project': 2,
   'quit': 1,
   'research': 1,
   'review': 1,
   'rewrit': 1,
   'secur': 1,
   'seen': 3,
   'spanish': 1,
   'subject': 1,
   'system': 1,
   't-shirt': 1,
   'url': 1,
   'varieti': 1,
   'whose': 1,
   'write': 1,
   'written': 2},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'g',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'alway': 1,
   'app': 1,
   'client': 1,
   'deposit_made': False,
   'develop': 3,
   'email_verified': True,
   'everi': 1,
   'everyth': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'goal': 1,
   'hi': 1,
   'identity_verified': False,
   'independ': 1,
   'keep': 1,
   'orient': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'profile_complete': True,
   'requir': 1,
   'sake': 1,
   'self': 1,
   'technolog': 1,
   'updat': 1,
   'web': 1,
   'will': 1,
   'years.i': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'a',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
   'adept': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'illustr': 1,
   'payment_verified': True,
   'phone_verified': True,
   'portfolio': 1,
   'profile_complete': True,
   'recent': 1,
   'recreat': 1,
   'vector': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='7'>,
   'First': 's',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'commun': 1,
   'deposit_made': False,
   'email_verified': True,
   'excel': 1,
   'expert': 1,
   'facebook_connected': False,
   'great': 1,
   'greet': 1,
   'happi': 1,
   'identity_verified': False,
   'immediately.ch': 1,
   'intermediari': 1,
   'look': 1,
   'part': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'programm': 1,
   'project': 1,
   'role': 1,
   'sever': 1,
   'similar': 1,
   'skill': 1,
   'stan': 1,
   'start': 1,
   'time': 1,
   'work': 2,
   'would': 1,
   'year': 1},
  'M'),
 ({'.net': 1,
   '2.0,3.5,4.0': 1,
   '8.5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'bengal': 1,
   'colleg': 1,
   'comput': 1,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'exp': 1,
   'facebook_connected': False,
   'framework': 1,
   'identity_verified': False,
   'includ': 1,
   'microsoft': 1,
   'pass': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'scienc': 1,
   'ssi': 1,
   'ssr': 1,
   'technolog': 1,
   'univers': 1,
   'wcf': 1,
   'wpf': 1,
   'year': 1},
  'M'),
 ({'.-': 2,
   '10': 1,
   '15+': 1,
   '20+': 1,
   'Caps': <_sre.SRE_Match object; span=(5, 6), match='K'>,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='0'>,
   'First': 'r',
   'Last': 'K',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'android': 2,
   'deposit_made': True,
   'develop': 2,
   'email_verified': True,
   'etc': 1,
   'experi': 2,
   'expert': 1,
   'facebook_connected': False,
   'googl': 1,
   'identity_verified': False,
   'includ': 1,
   'integr': 1,
   'locat': 1,
   'maintenance.-': 1,
   'map': 1,
   'messag': 1,
   'mobil': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profici': 1,
   'profile_complete': True,
   'sdk': 1,
   'servic': 1,
   'softwar': 1,
   'year': 3},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
   'Digit': None,
   'First': 'H',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': False,
   'portfolio': 1,
   'profile_complete': True},
  'M'),
 ({'5': 1,
   'Caps': <_sre.SRE_Match object; span=(5, 6), match='L'>,
   'Digit': None,
   'First': 'h',
   'Last': 'r',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'book': 1,
   'c': 1,
   'command': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'good': 1,
   'identity_verified': False,
   'java': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'program': 2,
   'publish': 1,
   'silverlight': 1,
   'thank': 1,
   'year': 1},
  'M'),
 ({'.net': 2,
   '2.0': 1,
   '2008': 2,
   '3': 2,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'adob': 1,
   'associ': 1,
   'base': 1,
   'basi': 1,
   'best': 1,
   'c': 1,
   'compani': 1,
   'consist': 1,
   'cs4': 1,
   'css': 1,
   'custom': 1,
   'deposit_made': False,
   'develop': 3,
   'dhtml': 1,
   'email_verified': True,
   'enterpris': 1,
   'etc': 1,
   'expand': 1,
   'experi': 1,
   'facebook_connected': False,
   'flash': 1,
   'follow': 1,
   'global': 1,
   'great': 1,
   'html': 1,
   'identity_verified': False,
   'india': 11,
   'industri': 1,
   'innov': 1,
   'jsp': 1,
   'kingdom': 1,
   'last': 1,
   'long': 1,
   'look': 1,
   'ltd': 1,
   'ms': 1,
   'nation': 1,
   'overal': 1,
   'packag': 1,
   'partner': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'profile_complete': True,
   'provid': 2,
   'pvt': 1,
   'qualiti': 1,
   'relat': 1,
   'servic': 3,
   'sinc': 1,
   'softwar': 1,
   'sql': 1,
   'support': 1,
   'technolog': 1,
   'term': 1,
   'trivedi': 1,
   'uk': 4,
   'unit': 2,
   'us': 1,
   'vb.net': 1,
   'web': 1,
   'websit': 2,
   'xml': 1,
   'year': 1,
   'yr': 1},
  'M'),
 ({'*web': 1,
   '2.0': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'activ': 1,
   'avail': 1,
   'best': 1,
   'big': 1,
   'bookmark': 1,
   'build': 1,
   'compani': 2,
   'comput': 1,
   'deposit_made': False,
   'develop': 1,
   'differ': 2,
   'directori': 2,
   'effort': 1,
   'email_verified': True,
   'engin': 1,
   'entri': 1,
   'etc': 1,
   'exert': 1,
   'experi': 1,
   'experienc': 1,
   'expos': 1,
   'facebook_connected': False,
   'fast': 1,
   'follow': 1,
   'good': 1,
   'guarante': 1,
   'hire': 1,
   'identity_verified': False,
   'involv': 1,
   'job': 2,
   'link': 2,
   'list': 1,
   'local': 2,
   'lot': 1,
   'opportun': 1,
   'optim': 2,
   'orient': 1,
   'page': 2,
   'particularli': 1,
   'payment_verified': False,
   'phone_verified': False,
   'post': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'relat': 1,
   'render': 1,
   'satisfi': 1,
   'search': 1,
   'seek': 1,
   'self': 1,
   'skill': 1,
   'small': 1,
   'smm': 1,
   'someon': 1,
   'specif': 1,
   'submiss': 1,
   'thing': 1,
   'time': 1,
   'use': 1,
   'well': 1,
   'will': 1,
   'work': 2},
  'F'),
 ({'12+': 1,
   '2': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'colleagu': 1,
   'deposit_made': True,
   'dotnet': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'technolog': 1,
   'year': 1},
  'M'),
 ({'15': 1,
   '25': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'adob': 1,
   'advertis': 1,
   'alway': 1,
   'art': 2,
   'artist': 2,
   'audio': 1,
   'band': 1,
   'beauti': 1,
   'behind': 1,
   'busi': 1,
   'captiv': 1,
   'card': 1,
   'contempl': 1,
   'convey': 1,
   'creat': 1,
   'creativ': 1,
   'current': 1,
   'daili': 1,
   'deposit_made': False,
   'design': 1,
   'desir': 1,
   'email_verified': True,
   'embrac': 1,
   'empir': 1,
   'experi': 1,
   'explos': 1,
   'facebook_connected': False,
   'femal': 1,
   'identity_verified': False,
   'import': 1,
   'intrus': 1,
   'leav': 1,
   'lyricist': 1,
   'magazin': 1,
   'main': 1,
   'make': 1,
   'mean': 1,
   'music': 2,
   "n't": 1,
   'needless': 1,
   'nois': 1,
   'observ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'primarili': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 2,
   'purpos': 1,
   'qualiti': 1,
   'rang': 1,
   'record': 2,
   'road': 1,
   'see': 1,
   'shot': 1,
   'signag': 1,
   'sorri': 1,
   'southern': 1,
   'stage': 1,
   'suit': 1,
   'viabl': 1,
   'visual': 2,
   'vocalist': 2,
   'voic': 1,
   'want': 1,
   'within': 1,
   'wo': 1,
   'work': 2,
   'year': 2},
  'F'),
 ({'5+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'o',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'autom': 1,
   'bot': 1,
   'creat': 1,
   'current': 1,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'engin': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'main': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'platform': 1,
   'plugin': 1,
   'profile_complete': True,
   'softwar': 2,
   'web': 1,
   'wordpress': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'g',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
   'client': 1,
   'custom': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'experienc': 1,
   'extrem': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'lot': 1,
   'offlin': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'satisfact': 1,
   'score': 1,
   'sound': 1,
   'well': 1,
   'work': 1},
  'M'),
 ({'10': 2,
   '2.': 1,
   '3.': 1,
   '7.': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='2'>,
   'First': 'o',
   'Last': '9',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'android': 1,
   'angular': 1,
   'area': 1,
   'backbon': 1,
   'browser': 1,
   'compani': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'expertis': 1,
   'express': 1,
   'facebook_connected': True,
   'framework': 1,
   'identity_verified': False,
   'includ': 1,
   'io': 1,
   'iphon': 1,
   'javascript': 1,
   'jqueri': 2,
   'js': 2,
   'last': 1,
   'less': 1,
   'medium': 1,
   'mobil': 1,
   'node': 1,
   'oscommerce6': 1,
   'payment_verified': False,
   'phantom': 1,
   'phone_verified': True,
   'phonegap': 1,
   'php': 1,
   'profile_complete': True,
   'rang': 1,
   'react': 1,
   'ror': 1,
   'site': 1,
   'small': 1,
   'start-up': 1,
   'use': 1,
   'version': 1,
   'websit': 1,
   'wide': 1,
   'year': 1,
   'zend': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='7'>,
   'First': 'h',
   'Last': '6',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'hello': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'W',
   'Last': '4',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='A'>,
   'anim': 1,
   'articl': 1,
   'blog': 1,
   'blue': 1,
   'busi': 1,
   'client': 2,
   'custom': 2,
   'data': 1,
   'deliv': 1,
   'deposit_made': True,
   'design': 2,
   'develop': 1,
   'email_verified': True,
   'entri': 1,
   'establish': 1,
   'expertis': 1,
   'facebook_connected': False,
   'field': 1,
   'focu': 1,
   'freelanc': 1,
   'full': 1,
   'give': 1,
   'graphic': 1,
   'group': 1,
   'help': 1,
   'identity_verified': False,
   'long': 1,
   'manner': 1,
   'object': 2,
   'payment_verified': False,
   'philippin': 1,
   'phone_verified': False,
   'primari': 2,
   'profession': 1,
   'profile_complete': True,
   'program': 1,
   'project': 1,
   'provid': 1,
   'rang': 1,
   'relationship': 1,
   'requir': 1,
   'satisfact': 2,
   'second': 1,
   'servic': 3,
   'strive': 1,
   'term': 1,
   'time': 1,
   'top-notch': 1,
   'understand': 1,
   'us': 1,
   'web': 1,
   'wordpress': 1,
   'write': 1},
  'F'),
 ({"'m": 1,
   '2004': 1,
   '2005': 1,
   '2006': 1,
   '3d': 1,
   '4d': 1,
   '7': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abob': 1,
   'accept': 1,
   'access': 2,
   'adob': 1,
   'aftereffect': 1,
   'applic': 2,
   'area': 1,
   'ask': 1,
   'asp': 1,
   'asp.net': 1,
   'automat': 1,
   'avail': 1,
   'believ': 1,
   'best': 1,
   'build': 1,
   'c': 2,
   'c++': 1,
   'c/c++': 1,
   'career': 1,
   'cascad': 1,
   'cinema': 1,
   'circuit': 1,
   'client': 1,
   'compani': 1,
   'compat': 1,
   'comput': 2,
   'css': 1,
   'custom': 1,
   'databas': 1,
   'decid': 1,
   'deliv': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 4,
   'drive': 1,
   'ecdl': 1,
   'effort': 1,
   'email_verified': True,
   'even': 1,
   'excel': 1,
   'experi': 1,
   'experience.in': 1,
   'expertis': 1,
   'facebook_connected': False,
   'faculti': 1,
   'forward': 1,
   'freelanc': 1,
   'ga': 1,
   'guaranti': 1,
   'help': 1,
   'identity_verified': False,
   'impress': 2,
   'inform': 2,
   'integr': 2,
   'java': 1,
   'javascript': 2,
   'jsp': 1,
   'knowledg': 1,
   'languag': 2,
   'larg': 1,
   'licens': 1,
   'linux': 1,
   'local': 1,
   'look': 1,
   'lua': 2,
   'make': 2,
   'manag': 1,
   'matlab': 1,
   'max': 1,
   'microcomput': 1,
   'microsoft': 3,
   'mod': 1,
   'mt': 1,
   'mysql': 1,
   'object-ori': 1,
   'offic': 1,
   'part': 1,
   'pascal': 1,
   'pawn': 2,
   'payment_verified': True,
   'peopl': 1,
   'perfectionist': 1,
   'petroleum': 1,
   'phone_verified': True,
   'photoshop': 1,
   'php': 2,
   'plc': 1,
   'powerpoint': 1,
   'pro': 1,
   'profile_complete': True,
   'program': 2,
   'project': 4,
   'put': 1,
   'python': 1,
   'relat': 1,
   'resum': 1,
   'sa': 2,
   'seek': 1,
   'server': 2,
   'sever': 1,
   'sharepoint': 1,
   'sheet': 1,
   'show': 1,
   'softwar': 1,
   'solid': 1,
   'soni': 1,
   'sql': 1,
   'start': 1,
   'studio': 1,
   'style': 1,
   'success': 1,
   'support': 1,
   'system': 1,
   'team': 1,
   'tri': 1,
   'ubuntu': 1,
   'univers': 1,
   'upcom': 1,
   'use': 4,
   'variou': 1,
   'vega': 1,
   'visual': 2,
   'websit': 1,
   'word': 1,
   'work': 3,
   'xml': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(6, 7), match='o'>,
   'deposit_made': False,
   'detail': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'master': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'o',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'articles-': 1,
   'blog': 1,
   'client': 3,
   'content': 2,
   'content-': 1,
   'deposit_made': False,
   'email_verified': True,
   'everi': 1,
   'facebook_connected': False,
   'gener': 1,
   'guarante': 1,
   'happier': 1,
   'identity_verified': False,
   'meet': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'posts-': 1,
   'profile_complete': True,
   'prolif': 1,
   'provid': 1,
   'reports-': 1,
   'seo': 1,
   'servic': 1,
   'specif': 1,
   'transact': 1,
   'usual': 1,
   'websit': 1},
  'M'),
 ({"'s": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='4'>,
   'First': 'o',
   'Last': '7',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'confidenti': 1,
   'copywrit': 1,
   'cost-effect': 1,
   'degre': 1,
   'deposit_made': True,
   'email_verified': True,
   'english-russian': 1,
   'facebook_connected': False,
   'forward': 1,
   'high': 1,
   'identity_verified': False,
   'im': 1,
   'linguist': 1,
   'look': 1,
   'master': 1,
   'nativ': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'proofreading/edit': 1,
   'provid': 2,
   'qualiti': 1,
   'quick': 1,
   'russian': 1,
   'servic': 1,
   'speaker': 1,
   'transcript': 1,
   'translat': 1,
   'turnaround': 1,
   'type': 1,
   'ukrainian': 4,
   'work': 1},
  'F'),
 ({"''": 1,
   '2007': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
   'First': 'l',
   'Last': '5',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   '``': 1,
   'act': 2,
   'actor': 1,
   'also': 1,
   'anim': 1,
   'assist': 1,
   'brazilian': 1,
   'cartoon': 1,
   'cast': 1,
   'charact': 1,
   'creation': 1,
   'deposit_made': False,
   'direct': 1,
   'director': 1,
   'dub': 2,
   'durat': 1,
   'e': 1,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'help': 1,
   'identity_verified': False,
   'main': 1,
   'mmorpg': 1,
   'movi': 1,
   'one': 2,
   'payment_verified': False,
   'phone_verified': False,
   'portugues': 1,
   'produc': 1,
   'profile_complete': True,
   'relev': 1,
   'seri': 1,
   'start': 1,
   'team': 1,
   'translat': 1,
   'tv': 1,
   'voic': 2,
   'war': 1,
   'wizard': 1,
   'work': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 't',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'full': 1,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': False,
   'php/mysql': 1,
   'profile_complete': True,
   'time': 1,
   'wordpress': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'articl': 1,
   'assist': 1,
   'avail': 1,
   'blog': 1,
   'condit': 1,
   'contract': 1,
   'deposit_made': True,
   'draft': 1,
   'editor': 1,
   'email_verified': True,
   'etc': 1,
   'experienc': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': True,
   'polici': 1,
   'post': 1,
   'privaci': 1,
   'profile_complete': True,
   'research': 1,
   'review': 1,
   'term': 1,
   'websit': 1,
   'writer': 1},
  'M'),
 ({"'m": 1,
   '--': 3,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'applic': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'flash': 2,
   'game': 1,
   'identity_verified': False,
   'part': 1,
   'payment_verified': False,
   'phone_verified': True,
   'portfolio': 1,
   'profile_complete': True,
   'see': 1},
  'M'),
 ({'2.0': 1,
   '2000': 1,
   '2003': 1,
   '2007': 1,
   '2010': 1,
   '3.0': 1,
   '3.5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'access': 1,
   'applic': 3,
   'base': 1,
   'basic': 1,
   'bill': 1,
   'c': 1,
   'co.': 1,
   'control': 2,
   'current': 1,
   'databas': 1,
   'deposit_made': False,
   'desktop': 1,
   'develop': 4,
   'email_verified': True,
   'excel': 2,
   'experi': 2,
   'expertis': 2,
   'facebook_connected': False,
   'framework': 1,
   'i.e': 2,
   'identity_verified': False,
   'includ': 2,
   'infragist': 2,
   'instant': 1,
   'intens': 1,
   'interest': 1,
   'interop': 1,
   'librari': 1,
   'lie': 3,
   'ms': 2,
   'mysql': 1,
   'offic': 3,
   'outlook': 1,
   'parti': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profici': 1,
   'profile_complete': True,
   'provid': 1,
   'server': 1,
   'solut': 2,
   'special': 2,
   'sql': 1,
   'telecom': 1,
   'telerik': 1,
   'third': 1,
   'tool': 1,
   'use': 1,
   'vba': 2,
   'version': 1,
   'visual': 1,
   'wpf': 1,
   'xp': 1,
   'year': 1},
  'M'),
 ({'2014.': 1,
   '5+': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'A',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'acquir': 1,
   'attend': 1,
   'august': 1,
   'bachelor': 1,
   'deposit_made': True,
   'design': 2,
   'ecommerc': 1,
   'email_verified': True,
   'facebook_connected': True,
   'firm': 1,
   'freelanc': 1,
   'identity_verified': True,
   'interact': 1,
   'media': 2,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'rang': 1,
   'school': 1,
   'web': 2,
   'websit': 1,
   'work': 2,
   'year': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'x',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'3': 1,
   '3d': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': '1',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'artist': 1,
   'best': 1,
   'deposit_made': False,
   'email_verified': True,
   'employ': 1,
   'experi': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'give': 1,
   'home': 1,
   'identity_verified': False,
   'layout': 1,
   'max': 1,
   'maya': 1,
   'model': 1,
   'mudbox': 1,
   'overal': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'profile_complete': True,
   'special': 1,
   'start': 1,
   'textur': 1,
   'util': 1,
   'work': 1,
   'year': 1,
   'zbrush': 1},
  'M'),
 ({'2009': 1,
   'Caps': <_sre.SRE_Match object; span=(5, 6), match='H'>,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'applic': 1,
   'asp.net': 1,
   'basi': 1,
   'busi': 1,
   'c': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'like': 1,
   'long': 1,
   'mainli': 1,
   'new': 1,
   'open': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'program': 1,
   'regular': 1,
   'relat': 1,
   'sinc': 1,
   'softwar': 1,
   'technolog': 1,
   'term': 1,
   'vb.net': 1,
   'web': 1,
   'window': 1,
   'work': 3,
   'would': 1},
  'M'),
 ({'100': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'better': 1,
   'cent': 1,
   'deposit_made': False,
   'design': 1,
   'edit': 1,
   'email_verified': True,
   'facebook_connected': False,
   'guarante': 1,
   'highest': 1,
   'identity_verified': False,
   'lay': 1,
   'look': 1,
   'love': 1,
   'make': 1,
   'payment_verified': False,
   'per': 1,
   'phone_verified': False,
   'profile_complete': True,
   'proofread': 1,
   'read': 1,
   'satisfact': 1,
   'standard': 1,
   'strive': 1,
   'thing': 1,
   'work': 1,
   'write': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'K',
   'Last': '8',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'book': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'gener': 1,
   'identity_verified': False,
   'love': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'proofread': 1,
   'sinc': 1,
   'text': 1,
   'translat': 1,
   'word': 1,
   'work': 2,
   'young': 1},
  'F'),
 ({'...': 5,
   '20': 1,
   '35': 1,
   '42': 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'alway': 1,
   'artist': 1,
   'blog': 1,
   'born': 1,
   'brazil': 1,
   'brazilian': 1,
   'cartoon': 1,
   'cartoonist': 1,
   'come': 1,
   'comic': 1,
   'could': 1,
   'current': 1,
   'de': 1,
   'deposit_made': False,
   'dia': 2,
   'draw': 3,
   'email_verified': True,
   'enjoy': 1,
   'even': 1,
   'facebook_connected': False,
   'guto': 2,
   'hi': 1,
   'hope': 2,
   'identity_verified': False,
   'illustr': 1,
   'invit': 1,
   'janeiro': 1,
   'keep': 1,
   'like': 1,
   'live': 2,
   'name': 1,
   'old': 1,
   'payment_verified': False,
   'perhap': 1,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'publish': 1,
   'realli': 1,
   'rio': 1,
   'southern': 1,
   'talk': 1,
   'togeth': 1,
   'visit': 1,
   'work': 4,
   'write': 1,
   'year': 4},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'among': 1,
   'challeng': 1,
   'competit': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'especi': 1,
   'facebook_connected': False,
   'fast': 1,
   'field': 1,
   'go': 1,
   'good': 1,
   'great': 1,
   'identity_verified': False,
   'import': 1,
   'know': 1,
   'look': 1,
   'member': 1,
   'new': 1,
   'object': 1,
   'payment_verified': False,
   'phone_verified': False,
   'play': 1,
   'profile_complete': True,
   'project': 2,
   'role': 1,
   'search': 1,
   'skill': 1,
   'societi': 1,
   'util': 1,
   'whole': 1,
   'world': 2},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 'N',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'account': 2,
   'approach': 1,
   'area': 1,
   'background': 1,
   'busi': 1,
   'certif': 1,
   'deposit_made': False,
   'develop': 1,
   'distribut': 1,
   'email_verified': True,
   'enabl': 1,
   'experi': 2,
   'facebook_connected': True,
   'financ': 1,
   'guid': 1,
   'identity_verified': False,
   'long-term': 1,
   'market': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'provid': 1,
   'provis': 1,
   'servic': 2,
   'softwar': 1,
   'technic': 1,
   'translat': 1,
   'travel': 1,
   'well': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'o',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'brand': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': True,
   'payment_verified': True,
   'peopl': 1,
   'phone_verified': True,
   'product': 1,
   'profile_complete': True,
   'servic': 1,
   'stori': 1,
   'tell': 1},
  'M'),
 ({'2009': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='7'>,
   'First': 'p',
   'Last': '2',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'addit': 1,
   'also': 1,
   'articl': 1,
   'blogger': 1,
   'client': 1,
   'deposit_made': False,
   'email_verified': True,
   'enhanc': 1,
   'enthusiast': 1,
   'facebook_connected': False,
   'gimp': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'photo': 1,
   'photographi': 1,
   'profile_complete': True,
   'satisfi': 1,
   'sinc': 1,
   'use': 1,
   'work': 2,
   'writer': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'e',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'databas': 1,
   'definit': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'languag': 1,
   'motiv': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'program': 1,
   'requir': 1,
   'self': 1,
   'sever': 1,
   'skill': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 'm',
   'Last': '7',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'applic': 1,
   'articl': 1,
   'audio': 1,
   'comput': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'file': 1,
   'identity_verified': False,
   'inspir': 1,
   'knowledg': 1,
   'ms': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profici': 1,
   'profile_complete': True,
   'transcrib': 1,
   'troubleshoot': 1,
   'variou': 1,
   'video': 1,
   'write': 1},
  'M'),
 ({'2d': 2,
   '3d': 2,
   '7': 2,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'c',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'anim': 2,
   'architectur': 2,
   'busi': 4,
   'channel': 1,
   'commerci': 1,
   'compani': 2,
   'complet': 1,
   'creat': 1,
   'deposit_made': False,
   'develop': 1,
   'e': 1,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'explan': 2,
   'facebook_connected': False,
   'freelanc': 2,
   'ground': 1,
   'hello': 1,
   'identity_verified': False,
   'imag': 2,
   'industri': 1,
   'last': 1,
   'learn': 1,
   'market': 1,
   'opportun': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pleas': 1,
   'product': 1,
   'profile_complete': True,
   'project': 1,
   'rang': 1,
   'seek': 1,
   'self': 1,
   'small': 1,
   'special': 1,
   'start': 1,
   'video': 5,
   'vishal': 1,
   'visit': 1,
   'walk': 2,
   'watch': 1,
   'web': 2,
   'wide': 1,
   'work': 2,
   'year': 2,
   'youtub': 1},
  'M'),
 ({'.net': 1,
   '5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'v',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'access': 1,
   'actionscript': 1,
   'adob': 2,
   'ajax': 1,
   'area': 1,
   'around': 1,
   'asp': 1,
   'best': 1,
   'c': 1,
   'contact': 1,
   'corel': 1,
   'corpor': 1,
   'css': 1,
   'custom': 1,
   'deposit_made': False,
   'design': 5,
   'detail': 1,
   'develop': 2,
   'dhtml': 1,
   'discuss': 1,
   'draw': 1,
   'email_verified': True,
   'expertis': 1,
   'facebook_connected': False,
   'field': 1,
   'flash': 1,
   'hesit': 1,
   'identity_verified': False,
   'illustr': 1,
   'java': 1,
   'javascript': 1,
   'last': 1,
   'macromedia': 2,
   'mani': 1,
   'ms-sql': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'php': 1,
   'profession': 1,
   'profile_complete': True,
   'program': 2,
   'project': 1,
   'provid': 1,
   'quark': 1,
   'solut': 1,
   'thank': 1,
   'us': 1,
   'web': 4,
   'work': 1,
   'world.w': 1,
   'xml': 1,
   'xpress': 1,
   'year': 1},
  'M'),
 ({"'m": 1,
   "'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'y',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'degre': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'help': 1,
   'hope': 1,
   'identity_verified': False,
   'job': 1,
   'love': 1,
   'master': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'realli': 1,
   'translat': 1},
  'F'),
 ({'.net': 1,
   '5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'analysi': 1,
   'applic': 2,
   'architect': 1,
   'background': 1,
   'bring': 1,
   'complet': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 4,
   'email_verified': True,
   'engin': 1,
   'enterpris': 1,
   'ethic': 1,
   'excel': 1,
   'experi': 2,
   'facebook_connected': False,
   'identity_verified': False,
   'innov': 1,
   'interest': 1,
   'j2ee': 3,
   'lifecycl': 1,
   'linux': 1,
   'motiv': 1,
   'multi-ti': 1,
   'object-ori': 1,
   'open': 1,
   'payment_verified': False,
   'phone_verified': False,
   'problem': 1,
   'profile_complete': True,
   'provid': 1,
   'senior': 1,
   'servic': 1,
   'softwar': 1,
   'solid': 1,
   'solut': 1,
   'sourc': 1,
   'special': 1,
   'technolog': 1,
   'togeth': 1,
   'unix': 1,
   'use': 1,
   'util': 1,
   'web': 2,
   'work': 1,
   'workplac': 1,
   'xml/xslt': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
   'First': 'N',
   'Last': '0',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'freelance.com': 1,
   'hire': 1,
   'identity_verified': False,
   'like': 1,
   'market.i': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'sector': 1,
   'share': 1,
   'well': 1,
   'work': 1,
   'would': 1},
  'M'),
 ({'2nd': 1,
   '4': 2,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'b.a': 1,
   'cgpa': 2,
   'chittagong': 1,
   'current': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'honor': 1,
   'identity_verified': False,
   'payment_verified': False,
   'philosophi': 1,
   'phone_verified': False,
   'profile_complete': True,
   'scale': 2,
   'semest': 1,
   'studi': 1,
   'trust': 1,
   'univers': 1,
   'universityresult': 2},
  'M'),
 ({'--': 56,
   '-book': 1,
   '3rd': 1,
   '9': 1,
   'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 't',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
   'advisori': 1,
   'android': 1,
   'app': 1,
   'applic': 3,
   'c': 1,
   'cake': 1,
   'calendar': 1,
   'class': 1,
   'cm': 1,
   'content': 1,
   'deposit_made': True,
   'design': 4,
   'develop': 2,
   'domain': 1,
   'ecommerc': 1,
   'educ': 1,
   'email_verified': True,
   'erp': 1,
   'exam': 1,
   'experi': 1,
   'expert': 1,
   'extens': 1,
   'facebook_connected': False,
   'financi': 1,
   'follow': 1,
   'form': 1,
   'html5': 1,
   'human': 1,
   'identity_verified': False,
   'insur': 1,
   'inventori': 1,
   'io': 1,
   'joomla': 1,
   'logo': 1,
   'manag': 7,
   'microsoft': 1,
   'mobil': 1,
   'modul': 1,
   'ms': 1,
   'mvc': 1,
   'parti': 1,
   'patient': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 2,
   'profile_complete': True,
   'properti': 1,
   'psd': 1,
   'rental': 1,
   'resourc': 1,
   'schedul': 1,
   'school': 1,
   'server': 1,
   'site': 3,
   'sourc': 1,
   'sql': 1,
   'system': 4,
   'telerik': 1,
   'templat': 1,
   'tool': 1,
   'wcf': 1,
   'web': 3,
   'window': 1,
   'wordpress': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"''": 9,
   "'s": 1,
   '15': 1,
   '16': 1,
   '2': 5,
   '3': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '``': 9,
   'anim': 3,
   'annedroid': 2,
   'battl': 1,
   'cat': 1,
   'channel': 1,
   'current': 1,
   'dan': 3,
   'deposit_made': True,
   'dino': 3,
   'dog': 1,
   'effect': 1,
   'email_verified': True,
   'episod': 2,
   'facebook_connected': False,
   'featur': 1,
   'feet': 1,
   'film': 1,
   'follow': 1,
   'histori': 1,
   'identity_verified': False,
   'lead': 1,
   'linkedin': 1,
   'maya': 1,
   'odd': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'profile_complete': True,
   'project': 1,
   'season': 8,
   'seri': 7,
   'show': 1,
   'special': 1,
   'tank': 1,
   'tv': 7,
   'vimeo': 1,
   'visual': 1,
   'work': 2},
  'F'),
 ({'--': 68,
   '-\\xe2\\u20ac\\xa2': 1,
   '.\\xe2\\u20ac\\xa2': 1,
   '1.': 1,
   '2': 1,
   '2.': 1,
   '3.': 1,
   '4': 1,
   '4.': 1,
   '5.': 1,
   '6.': 1,
   '7.': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='3'>,
   'First': 's',
   'Last': '8',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   '\\xe2\\u20ac\\xa2': 7,
   'agil': 1,
   'ajax': 1,
   'android': 1,
   'api': 1,
   'applic': 5,
   'area': 1,
   'attent': 1,
   'backbon': 1,
   'base': 2,
   'bootstrap': 2,
   'capabl': 1,
   'cm': 1,
   'code': 1,
   'codeignit': 4,
   'contact': 1,
   'cpanel': 1,
   'css': 1,
   'databas': 1,
   'deposit_made': True,
   'design': 4,
   'develop': 10,
   'development.\\xe2\\u20ac\\xa2': 2,
   'development\\xe2\\u20ac\\xa2': 2,
   'dn': 3,
   'domain': 1,
   'e-commerc': 2,
   'e-shop': 1,
   'ecommerc': 1,
   'email_verified': True,
   'experi': 7,
   'experienc': 1,
   'facebook': 1,
   'facebook_connected': True,
   'framework': 4,
   'git': 1,
   'hospit': 1,
   'hrm': 1,
   'identity_verified': False,
   'indian': 1,
   'joomla': 2,
   'jqueri': 2,
   'list': 1,
   'magento': 1,
   'manag': 10,
   'methodolog': 1,
   'mobil': 1,
   'modul': 3,
   'multi': 1,
   'mysql': 2,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': True,
   'php': 4,
   'platform': 1,
   'point': 1,
   'profile_complete': True,
   'project': 3,
   'psd': 1,
   'raw': 2,
   'registrar': 1,
   'research': 1,
   'respons': 2,
   'sale': 1,
   'school': 1,
   'sdlc': 1,
   'sinc': 1,
   'site': 1,
   'sourc': 1,
   'strong': 1,
   'subvers': 1,
   'system': 4,
   'task': 1,
   'theme': 1,
   'ui': 1,
   'use': 2,
   'valid': 1,
   'w3c': 1,
   'web': 4,
   'websit': 3,
   'whmc': 1,
   'wordpress': 2,
   'work': 2,
   'wp': 1,
   'write': 1,
   'year': 2,
   'yii': 2,
   'zend': 2,
   'zendframework': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'h',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
   'applic': 1,
   'custom': 1,
   'data': 2,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'larg': 1,
   'mani': 1,
   'payment_verified': False,
   'phone_verified': False,
   'process': 1,
   'profile_complete': True,
   'softwar': 1,
   'web': 1,
   'work': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'e',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'account': 1,
   'ago': 1,
   'anyth': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'job': 1,
   'long': 1,
   'lot': 1,
   "n't": 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'start': 1,
   'time': 1},
  'M'),
 ({'7+': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='8'>,
   'First': 'l',
   'Last': '2',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'industri': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'u',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'christian': 1,
   'deposit_made': True,
   'email_verified': True,
   'ezin': 1,
   'facebook_connected': True,
   'googl': 1,
   'identity_verified': False,
   'incred': 1,
   'payment_verified': True,
   'phone_verified': False,
   'plain': 1,
   'platinum': 1,
   'profile_complete': True,
   'tri': 1,
   'writer': 1},
  'M'),
 ({'...': 2,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'l',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'album': 1,
   'base': 1,
   'best': 1,
   'brand': 1,
   'busi': 1,
   'card': 1,
   'cover': 1,
   'deposit_made': True,
   'design': 3,
   'email_verified': True,
   'experienc': 1,
   'facebook_connected': False,
   'fastest': 1,
   'graphic': 1,
   'great': 1,
   'ident': 1,
   'identity_verified': False,
   'layout': 1,
   'letterhead': 1,
   'logo': 1,
   'nc': 1,
   'payment_verified': False,
   'phone_verified': False,
   'price': 1,
   'profile_complete': True,
   'turnaround': 1,
   'web': 1,
   'work': 1},
  'F'),
 ({'1967': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'articl': 1,
   'birth': 1,
   'copi': 1,
   'deposit_made': False,
   'direct': 1,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'job': 1,
   'maker': 1,
   'marri': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'write': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'd',
   'Numchar': 5,
   'Vowel': None,
   'abil': 1,
   'account': 1,
   'advertis': 1,
   'applic': 1,
   'articl': 1,
   'aspect': 1,
   'best': 3,
   'best.i': 1,
   'command': 1,
   'comput': 1,
   'confid': 1,
   'consid': 1,
   'copy-writ': 1,
   'coral': 1,
   'craigslist': 1,
   'custom': 1,
   'declar': 1,
   'deposit_made': False,
   'design': 5,
   'draw': 1,
   'edit': 1,
   'email_verified': True,
   'experi': 1,
   'expert': 1,
   'expertis': 1,
   'facebook_connected': False,
   'field': 1,
   'flash': 1,
   'free': 1,
   'furnish': 1,
   'get': 1,
   'good': 2,
   'graphic': 2,
   'grate': 1,
   'grip': 1,
   'hand': 1,
   'herebi': 1,
   'highli': 2,
   'highly-organ': 1,
   'identity_verified': False,
   'illustr': 1,
   'independ': 1,
   'inform': 1,
   'knowledg': 2,
   'logo': 2,
   'market': 1,
   'meet': 1,
   'member.': 1,
   'ms': 1,
   'mx': 1,
   'name': 1,
   'needs.abl': 1,
   'network': 1,
   'offic': 1,
   'ofth': 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 2,
   'posting.': 1,
   'pressure.depend': 1,
   'profession': 1,
   'profile_complete': True,
   'project.i': 1,
   'provid': 2,
   'quality.\\xc2\\xbb': 1,
   'responsible.\\xc2\\xbb': 1,
   'review': 1,
   'scienc': 1,
   'self-motiv': 1,
   'serv': 1,
   'servic': 1,
   'skill': 1,
   'strong': 1,
   'team': 3,
   'true': 1,
   'us.\\xc2\\xbb': 1,
   'use': 1,
   'web': 1,
   'web-design': 1,
   'well': 2,
   'work': 5,
   'would': 1,
   'write': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'e',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'actor': 1,
   'afford': 1,
   'anyth': 1,
   'certainli': 1,
   'charact': 2,
   'commerci': 1,
   'contact': 1,
   'custom': 1,
   'demo': 2,
   'deposit_made': True,
   'documentari': 1,
   'door': 1,
   'dramat': 1,
   'email_verified': True,
   'erni': 2,
   'facebook_connected': False,
   'fast': 1,
   'found': 1,
   'free': 1,
   'friendli': 2,
   'guy': 1,
   'identity_verified': False,
   'like': 1,
   'look': 1,
   'messag': 1,
   'moment': 1,
   'movi': 1,
   'narrat': 1,
   'need': 1,
   'next': 1,
   'payment_verified': False,
   'phone': 1,
   'phone_verified': False,
   'pleas': 1,
   'profession': 3,
   'profile_complete': True,
   'sampl': 1,
   'sincer': 1,
   'site': 1,
   'sound': 1,
   'studio': 1,
   'take': 1,
   'trailer': 2,
   'voic': 5,
   'web': 1,
   'whether': 1,
   'you\\xe2\\u20ac\\u2122r': 1,
   'you\\xe2\\u20ac\\u2122v': 1},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'bangladesh': 1,
   'check': 1,
   'deposit_made': False,
   'dhaka': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'give': 1,
   'good': 1,
   'h': 1,
   'hi': 1,
   'identity_verified': False,
   'onlin': 2,
   'opportun': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pleas': 1,
   'profile_complete': True,
   'r': 1,
   'u': 1,
   'want': 1,
   'work': 2,
   'year': 1},
  'F'),
 ({'10': 1,
   '300': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
   'Digit': None,
   'First': 'H',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'abil': 1,
   'ambiti': 1,
   'assist': 1,
   'author': 2,
   'bookkeep': 1,
   'bulk': 1,
   'busi': 1,
   'collect': 1,
   'commun': 1,
   'compani': 2,
   'creat': 1,
   'creativ': 1,
   'deposit_made': False,
   'design': 1,
   'differ': 1,
   'distribut': 1,
   'divers': 3,
   'eager': 1,
   'email_verified': True,
   'employ': 1,
   'employe': 1,
   'endeavor': 1,
   'enterpris': 1,
   'entrepreneuri': 1,
   'estat': 1,
   'excel': 1,
   'excess': 1,
   'experi': 4,
   'facebook_connected': False,
   'forc': 1,
   'found': 1,
   'freelanc': 1,
   'goal': 1,
   'grown': 1,
   'identity_verified': False,
   'includ': 1,
   'labor': 1,
   'last': 1,
   'mail': 1,
   'manag': 2,
   'market': 1,
   'numer': 1,
   'organ': 1,
   'parad': 1,
   'payment_verified': False,
   'phone_verified': True,
   'process': 1,
   'profile_complete': True,
   'project': 1,
   'properti': 1,
   'publish': 1,
   'real': 1,
   'retail': 1,
   'sale': 1,
   'self-motiv': 1,
   'shop': 1,
   'site': 1,
   'skill': 1,
   'sold': 1,
   'strong': 2,
   'success': 1,
   'supervis': 1,
   'web': 1,
   'wholesal': 1,
   'writer': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'F',
   'Last': '7',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'portfolio': 1,
   'profile_complete': True},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'also': 1,
   'deposit_made': True,
   'document': 1,
   'edit': 1,
   'email_verified': True,
   'english': 1,
   'experi': 1,
   'facebook_connected': False,
   'french': 1,
   'german': 1,
   'good': 1,
   'identity_verified': False,
   'non-techn': 1,
   'payment_verified': True,
   'phone_verified': True,
   'portugues': 1,
   'profile_complete': True,
   'proofread': 1,
   'spanish': 1,
   'technic': 1,
   'translat': 1,
   'understand': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
   'administr': 1,
   'assist': 1,
   'data': 1,
   'deposit_made': False,
   'email': 1,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': False,
   'gener': 1,
   'identity_verified': False,
   'lead': 1,
   'market': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'research': 1,
   'seo': 1,
   'support': 1,
   'virtual': 1,
   'web': 1},
  'M'),
 ({"'m": 4,
   "'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'v',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'alreadi': 1,
   'bit': 1,
   'busi': 1,
   'cash': 1,
   'constantli': 1,
   'cours': 1,
   'deposit_made': True,
   'drop': 1,
   'email_verified': True,
   'expertis': 1,
   'extra': 1,
   'facebook_connected': False,
   'find': 1,
   'fit': 1,
   'footbal': 2,
   'gener': 1,
   'graduat': 1,
   'hello': 1,
   'hobbi': 1,
   'identity_verified': False,
   'interest': 1,
   'job': 1,
   'journal': 1,
   'leagu': 1,
   'led': 1,
   'let': 1,
   'messag': 1,
   'nation': 1,
   'new': 1,
   'paper': 1,
   'payment_verified': True,
   'phone_verified': False,
   'premier': 1,
   'profess': 1,
   'profile_complete': True,
   'project': 1,
   'publish': 1,
   'see': 1,
   'take': 1,
   'togeth': 1,
   'univers': 1,
   'well': 1,
   'world': 1,
   'write': 3},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'f',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'also': 1,
   'appli': 1,
   'deposit_made': True,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'medic': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'program': 1,
   'scienc': 1,
   'softwar': 1,
   'studi': 1,
   'talent': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(14, 15), match='1'>,
   'First': 'h',
   'Last': '1',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'commerc': 1,
   'current': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'sterl': 1,
   'work': 1},
  'M'),
 ({'...': 1,
   '10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'ajax': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'like': 1,
   'mysql': 1,
   'payment_verified': True,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'server': 1,
   'sql': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"''": 1,
   "'m": 1,
   '8': 1,
   '9': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'K',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'accent': 3,
   'also': 1,
   'american': 3,
   'born': 1,
   'corpor': 1,
   'demo': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'fluent': 1,
   'go': 1,
   'identity_verified': False,
   'includ': 1,
   'latest': 1,
   'middl': 1,
   'necessari': 1,
   'one': 1,
   'payment_verified': False,
   'perfect': 1,
   'phone_verified': False,
   'profile_complete': True,
   'project': 2,
   'rais': 1,
   'regular': 1,
   'see': 1,
   'southern': 1,
   'speak': 1,
   'texa': 1,
   'train': 1,
   'tv': 1,
   'video': 2,
   'web': 1,
   'woman': 1,
   'year': 1},
  'F'),
 ({'6': 1,
   'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'alway': 2,
   'deliv': 1,
   'deposit_made': True,
   'design': 1,
   'designer.i': 1,
   'disappoint': 1,
   'email_verified': True,
   'extraordinari': 1,
   'facebook_connected': True,
   'freelanc': 1,
   'full-tim': 1,
   'graphic': 2,
   'hello': 1,
   'identity_verified': False,
   'never': 1,
   'passion': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'qualiti': 1,
   'someth': 1,
   'strong': 1,
   'tri': 2,
   'visitor': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='7'>,
   'First': 'p',
   'Last': '7',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'follow': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'progress': 1,
   'year': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'administr': 2,
   'assist': 1,
   'busi': 1,
   'custom': 1,
   'dedic': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'manag': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'retail': 1,
   'servic': 1,
   'skill': 2,
   'supervisor': 1,
   'support': 1,
   'technic': 1,
   'versatil': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='8'>,
   'First': 'b',
   'Last': '2',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   'comfort': 1,
   'current': 1,
   'deposit_made': True,
   'earn': 2,
   'email_verified': True,
   'enough': 1,
   'experi': 1,
   'extra': 1,
   'facebook_connected': False,
   'gain': 1,
   'good': 1,
   'graduat': 1,
   'identity_verified': False,
   'job': 1,
   'life': 1,
   'money': 1,
   'payment_verified': False,
   'phone_verified': False,
   'privat': 1,
   'profile_complete': True,
   'school': 1,
   'spend': 1,
   'teach': 2,
   'want': 1,
   'well': 1},
  'M'),
 ({'6': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'y',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'address': 1,
   'along': 1,
   'client\\xe2\\u20ac\\u2122': 1,
   'continu': 1,
   'creat': 1,
   'custom': 1,
   'deposit_made': True,
   'done': 1,
   'effect': 1,
   'email_verified': True,
   'everi': 1,
   'exampl': 1,
   'experi': 1,
   'facebook_connected': False,
   'feel': 1,
   'free': 1,
   'goal': 1,
   'hello': 1,
   'high-qual': 1,
   'identity_verified': False,
   'includ': 1,
   'larg': 1,
   'name': 1,
   'need': 1,
   'number': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pleas': 1,
   'profil': 1,
   'profile_complete': True,
   'project': 1,
   'return': 1,
   'seo': 2,
   'specialist': 1,
   'specif': 1,
   'techniqu': 1,
   'use': 1,
   'veriti': 1,
   'view': 1,
   'way': 1,
   'websit': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': None,
   'First': 'V',
   'Last': 'e',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'build': 1,
   'busi': 2,
   'colleg': 1,
   'degre': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'insid': 1,
   'manag': 1,
   'note': 1,
   'outsid': 1,
   'payment_verified': False,
   'phone_verified': False,
   'point': 1,
   'product': 1,
   'profile_complete': True,
   'run': 1,
   'sell': 2,
   'sever': 1,
   'small': 1,
   'stand': 1,
   'technolog': 1,
   'worth': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'm',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'deposit_made': False,
   'effect': 1,
   'effici': 1,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'manner': 1,
   'mba': 1,
   'muhammad': 1,
   'name': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='4'>,
   'First': 'j',
   'Last': '0',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'alway': 1,
   'analyt': 1,
   'commun': 1,
   'databas': 1,
   'deal': 1,
   'deposit_made': False,
   'email_verified': True,
   'excel': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'massiv': 1,
   'masteri': 1,
   'payment_verified': True,
   'phone_verified': True,
   'processingdata': 1,
   'profile_complete': True,
   'provid': 1,
   'respons': 1,
   'skill': 1,
   'stick': 1,
   'strength': 1,
   'time-limit': 1,
   'verbal': 1,
   'written': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 's',
   'Last': '2',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'creativ': 1,
   'deposit_made': True,
   'effect': 1,
   'email_verified': True,
   'facebook_connected': True,
   'field': 1,
   'freelanc': 1,
   'identity_verified': False,
   'interest': 1,
   'keen': 1,
   'look': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'skill': 1,
   'use': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'also': 1,
   'compani': 1,
   'convert': 1,
   'custom': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'help': 1,
   'html': 1,
   'identity_verified': False,
   'meet': 1,
   'need': 2,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'programm': 1,
   'psd': 2,
   'servic': 1,
   'sometim': 1,
   'theme': 1,
   'wordpress': 1},
  'M'),
 ({'15': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'Z',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'base': 1,
   'clear': 1,
   'cut': 1,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'especi': 1,
   'experi': 1,
   'facebook_connected': False,
   'graphic': 1,
   'great': 1,
   'identity_verified': False,
   'knowledg': 1,
   'logo': 1,
   'new': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'profile_complete': True,
   'rang': 1,
   'signag': 1,
   'work': 1,
   'year': 1,
   'zealand': 1},
  'M'),
 ({"'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'abil': 2,
   'accomplish': 1,
   'accuraci': 2,
   'adword': 1,
   'ajax': 1,
   'also': 1,
   'anim': 1,
   'anyth': 1,
   'apart': 1,
   'api': 1,
   'applic': 1,
   'blog': 1,
   'bring': 1,
   'busi': 4,
   'cart': 1,
   'clear': 1,
   'client': 1,
   'combin': 1,
   'commun': 1,
   'conceptu': 1,
   'css2': 1,
   'css3': 1,
   'deadlines.i': 1,
   'deposit_made': False,
   'design': 3,
   'develop': 1,
   'doctrin': 1,
   'domain': 1,
   'done': 1,
   'drupal': 1,
   'e-commerc': 1,
   'email_verified': True,
   'english': 1,
   'etc..': 1,
   'excel': 1,
   'experienc': 1,
   'facebook_connected': False,
   'facilit': 1,
   'flash': 1,
   'forum': 1,
   'framework': 1,
   'function': 2,
   'global': 1,
   'googl': 2,
   'hello': 1,
   'highest': 1,
   'highli': 2,
   'html/xhtml': 1,
   'identity_verified': False,
   'integr': 1,
   'javascript': 1,
   'jira': 1,
   'joomla': 1,
   'jqueri': 1,
   'keep': 1,
   'magento': 1,
   'manag': 1,
   'map': 1,
   'method': 1,
   'model': 1,
   'monitor': 1,
   'mysql': 1,
   'name': 1,
   'need': 1,
   'object': 1,
   'open': 1,
   'oracl': 1,
   'orm': 1,
   'out-of-the-box': 1,
   'payment_verified': False,
   'paypal': 2,
   'peopl': 1,
   'person': 1,
   'phone': 1,
   'phone_verified': False,
   'photoshop': 1,
   'phpbb': 1,
   'possibl': 1,
   'pride': 2,
   'profession': 2,
   'profile_complete': True,
   'project': 1,
   'psd': 1,
   'punctual': 1,
   'registr': 1,
   'relat': 1,
   'satisfact': 1,
   'scalabl': 1,
   'seo': 1,
   'server': 1,
   'set': 1,
   'sever': 1,
   'shop': 1,
   'solut': 2,
   'speak': 1,
   'specialti': 1,
   'strategi': 2,
   'technolog': 1,
   'templat': 1,
   'traffic': 1,
   'transfer': 1,
   'us': 1,
   'usabl': 1,
   'util': 1,
   'utmost': 1,
   'voic': 1,
   'web': 4,
   'websit': 1,
   'wordpress': 1,
   'would': 1,
   'you.i': 1,
   'zend': 1},
  'M'),
 ({'2': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'x',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'b.': 1,
   'compani': 1,
   'comput': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'engin': 1,
   'experi': 1,
   'experienc': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'intern': 1,
   'istanbul': 1,
   'jsp': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'sql': 1,
   'univers': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'21': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'J',
   'Last': '4',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'abil': 1,
   'achiev': 1,
   'adher': 1,
   'allow': 1,
   'applic': 2,
   'assist': 2,
   'busi': 3,
   'challeng': 1,
   'client': 1,
   'commun': 1,
   'complianc': 1,
   'confid': 1,
   'core': 1,
   'corpor': 2,
   'deposit_made': False,
   'develop': 1,
   'directli': 1,
   'director': 1,
   'done': 1,
   'email': 1,
   'email_verified': True,
   'establish': 1,
   'execut': 1,
   'experi': 2,
   'facebook_connected': False,
   'follow': 1,
   'get': 1,
   'goal': 2,
   'handl': 1,
   'help': 1,
   'identity_verified': False,
   'import': 1,
   'knowledg': 1,
   'larg': 1,
   'leav': 1,
   'main': 1,
   'manag': 4,
   'multipl': 1,
   'non-cor': 2,
   'object': 1,
   'offic': 3,
   'oper': 3,
   'organiz': 1,
   'overal': 1,
   'overse': 1,
   'partner': 1,
   'payment_verified': False,
   'phone_verified': False,
   'plan': 1,
   'polici': 1,
   'presid': 2,
   'priorit': 1,
   'problem': 1,
   'procedur': 1,
   'product': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 1,
   'regul': 1,
   'report': 1,
   'resolv': 1,
   'result': 1,
   'simultan': 1,
   'skill': 2,
   'solv': 1,
   'streamlin': 1,
   'system': 1,
   'task': 4,
   'time': 1,
   'transfer': 1,
   'understand': 1,
   'variou': 1,
   'vice': 1,
   'virtual': 1,
   'web-bas': 1,
   'work': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'd',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
   'adword': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'googl': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'specialist': 1},
  'M'),
 ({"'m": 1,
   '10': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'g',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'along': 1,
   'backbonej': 1,
   'backend': 1,
   'css': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'emberj': 1,
   'experi': 3,
   'facebook_connected': True,
   'freelanc': 1,
   'good': 1,
   'html': 1,
   'identity_verified': False,
   'javascript': 2,
   'jqueri': 1,
   'knowledg': 1,
   'librari': 1,
   'look': 1,
   'multipl': 1,
   'nodej': 1,
   'opportun': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'program': 1,
   'python': 1,
   'use': 1,
   'web': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'y',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'consider': 1,
   'cover': 1,
   'creat': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': True,
   'gain': 1,
   'identity_verified': False,
   'independ': 1,
   'letter': 1,
   'ms': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'program': 1,
   'resum': 1,
   'skill': 1,
   'templat': 1,
   'word': 2},
  'F'),
 ({"'s": 1,
   '10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'avoid': 1,
   'check': 1,
   'come': 1,
   'complet': 1,
   'deal': 1,
   'deposit_made': True,
   'direct': 1,
   'email_verified': True,
   'facebook_connected': True,
   'find': 1,
   'forward': 1,
   'fraud': 1,
   'frustrat': 1,
   'graphic': 3,
   'hard': 1,
   'hear': 1,
   'hope': 1,
   'identity_verified': True,
   'internet': 1,
   'know': 2,
   'listen': 1,
   'look': 1,
   'minut': 1,
   'much': 1,
   "n't": 1,
   'need': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'point': 1,
   'portfolio': 1,
   'previous': 1,
   'price': 1,
   'process': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'real': 1,
   'reason': 1,
   'reliabl': 1,
   'result': 2,
   'right': 1,
   'say': 1,
   'servic': 2,
   'someon': 1,
   'soon': 1,
   'speak': 1,
   'stuff': 1,
   'sure': 1,
   'talk': 1,
   'thought': 1,
   'time': 1,
   'time-wast': 1,
   'top': 1,
   'tri': 1,
   'use': 1,
   'walk': 1,
   'want': 1,
   'within': 1,
   'would': 1,
   'years.i': 1},
  'M'),
 ({'5800': 1,
   '7': 1,
   '800': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='7'>,
   'First': 'n',
   'Last': 'h',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
   'client': 1,
   'compani': 1,
   'consum': 1,
   'deposit_made': False,
   'design': 1,
   'dolev': 2,
   'email_verified': True,
   'environ': 1,
   'etc': 1,
   'event': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'graphic': 1,
   'identity_verified': False,
   'last': 1,
   'mac': 1,
   'manag': 1,
   'market': 1,
   'payment_verified': False,
   'pc': 1,
   'pharmaceut': 1,
   'phone_verified': True,
   'prepress': 1,
   'profile_complete': True,
   'relat': 1,
   'right': 1,
   'sinc': 1,
   'unit': 1,
   'work': 3},
  'M'),
 ({'15': 1,
   '5': 1,
   '9+': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'app': 2,
   'applic': 1,
   'cross': 1,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'exp': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'io': 1,
   'mobil': 1,
   'payment_verified': False,
   'phone_verified': False,
   'platform': 1,
   'profile_complete': True,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'z',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'deposit_made': False,
   'email_verified': True,
   'enjoy': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'like': 2,
   'littl': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'respect': 1,
   'respons': 1,
   'sens': 1,
   'thing': 1,
   'treat': 1,
   'urgent': 1},
  'M'),
 ({'3+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'also': 1,
   'applic': 1,
   'base': 1,
   'best': 1,
   'busi': 1,
   'businesses.mi': 1,
   'code': 1,
   'compani': 1,
   'compet': 1,
   'complet': 1,
   'core': 1,
   'css': 1,
   'deliv': 1,
   'deposit_made': True,
   'design': 2,
   'develop': 3,
   'dhtml': 1,
   'eclips': 1,
   'ee': 1,
   'email_verified': True,
   'end-end': 1,
   'enterpris': 1,
   'experi': 2,
   'facebook_connected': False,
   'hibern': 1,
   'hmtl': 1,
   'identity_verified': False,
   'includ': 1,
   'java': 2,
   'jpa': 1,
   'jsf': 1,
   'knowledg': 1,
   'leverag': 1,
   'lie': 1,
   'look': 1,
   'manag': 1,
   'mysql': 1,
   'netbean': 1,
   'new': 1,
   'opportun': 1,
   'payment_verified': True,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'qualiti': 1,
   'rang': 1,
   'site': 1,
   'small': 1,
   'softwar': 1,
   'spring': 1,
   'sql': 1,
   'startup': 1,
   'term': 1,
   'usabl': 1,
   'use': 2,
   'web': 1,
   'websit': 2,
   'wide': 1,
   'year': 1},
  'M'),
 ({"'m": 1,
   "'ve": 1,
   '7+': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': None,
   'First': 'F',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'adob': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'musician': 1,
   'painter': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photo': 1,
   'photograph': 1,
   'photoshop.i': 1,
   'profile_complete': True,
   'use': 1,
   'well': 1,
   'year': 1},
  'M'),
 ({"'m": 1,
   '6-7': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'L',
   'Last': 'y',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
   'assembl': 1,
   'c': 2,
   'c++': 1,
   'copenhagen': 1,
   'current': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': True,
   'field': 1,
   'identity_verified': False,
   'languag': 2,
   'past': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'program': 1,
   'softwar': 1,
   'strong': 1,
   'student': 1,
   'talent': 1,
   'univers': 1,
   'use': 1,
   'work': 1,
   'x86': 1,
   'year': 1},
  'M'),
 ({'19': 2,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'T',
   'Numchar': 4,
   'Vowel': None,
   'architect': 2,
   'architectur': 1,
   'builder': 1,
   'consult': 2,
   'degre': 1,
   'deposit_made': False,
   'design': 5,
   'detail': 1,
   'draw': 1,
   'email_verified': True,
   'estim': 1,
   'experi': 1,
   'facebook_connected': False,
   'four': 1,
   'identity_verified': False,
   'includ': 1,
   'interior': 2,
   'lanscap': 2,
   'meubel': 2,
   'model': 1,
   'motiv': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pleasant': 1,
   'present': 1,
   'primari': 1,
   'profile_complete': True,
   'receiv': 1,
   'render': 1,
   'secondari': 1,
   'servic': 1,
   'talent': 1,
   'work': 1,
   'year': 3},
  'M'),
 ({'.net': 2,
   'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'b',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abil': 1,
   'administr': 2,
   'along': 1,
   'arab': 1,
   'benefit': 1,
   'collegi': 1,
   'consid': 1,
   'databas': 1,
   'date': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'english': 1,
   'experi': 1,
   'facebook_connected': True,
   'forward': 1,
   'freelanc': 1,
   'handl': 1,
   'hire': 1,
   'identity_verified': False,
   'independ': 1,
   'interpret': 1,
   'look': 1,
   'owe': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pleas': 1,
   'portfolio': 1,
   'profile_complete': True,
   'project': 3,
   'requir': 1,
   'skill': 1,
   'sound': 1,
   'team': 1,
   'tenur': 1,
   'till': 1,
   'type': 1,
   'uk': 1,
   'work': 2},
  'M'),
 ({'1': 1,
   '2': 1,
   '3': 1,
   '4': 1,
   '7': 1,
   'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'achiev': 1,
   'activ': 3,
   'adapt': 1,
   'agent': 5,
   'ajax': 1,
   'algorithm': 1,
   'also': 4,
   'analysi': 1,
   'appli': 3,
   'applianc': 6,
   'applic': 2,
   'approach': 4,
   'assembl': 1,
   'asset': 1,
   'avail': 1,
   'b': 1,
   'base': 5,
   'basic': 1,
   'benefit': 1,
   'bundl': 3,
   'busi': 1,
   'c': 1,
   'captur': 1,
   'challeng': 1,
   'chang': 2,
   'check': 1,
   'cloud': 3,
   'code': 2,
   'collabor': 2,
   'compet': 1,
   'complianc': 1,
   'composit': 1,
   'comput': 1,
   'concept': 1,
   'configur': 4,
   'consist': 1,
   'consumpt': 2,
   'contain': 1,
   'contributor': 2,
   'control': 1,
   'creat': 1,
   'current': 1,
   'custom': 1,
   'cycl': 2,
   'dashboard': 1,
   'db2': 1,
   'deep': 1,
   'defin': 1,
   'depend': 2,
   'deploy': 2,
   'deposit_made': False,
   'design': 4,
   'design3': 1,
   'determin': 1,
   'develop': 2,
   'display': 1,
   'durat': 1,
   'dynam': 1,
   'e': 1,
   'easili': 1,
   'email_verified': True,
   'enabl': 1,
   'engin': 1,
   'environ': 1,
   'etc': 3,
   'execut': 1,
   'experienc': 1,
   'expert': 1,
   'explor': 2,
   'extens': 2,
   'facebook_connected': False,
   'familiar': 5,
   'fashion': 1,
   'final': 1,
   'follow': 2,
   'framework': 10,
   'function': 2,
   'futur': 1,
   'global': 1,
   'good': 1,
   'googl': 1,
   'group\\xe2\\u20ac\\u2122': 1,
   'growth': 1,
   'guarante': 1,
   'ibm': 2,
   'idea': 1,
   'identity_verified': False,
   'implement': 2,
   'individu': 1,
   'initi': 1,
   'innov': 1,
   'insid': 3,
   'interfac': 1,
   'involv': 2,
   'j2ee': 2,
   'java': 1,
   'jdbc': 1,
   'jndi': 1,
   'jsp': 1,
   'key': 2,
   'lab': 1,
   'lead': 2,
   'learn': 1,
   'less': 1,
   'lifecycl': 4,
   'like': 1,
   'live': 1,
   'local': 1,
   'machin': 1,
   'made': 1,
   'major': 1,
   'manag': 15,
   'mani': 1,
   'messag': 1,
   'migrat': 3,
   'model': 5,
   'monitor': 4,
   'multipl': 1,
   'name': 3,
   'new': 1,
   'obtain': 1,
   'offer': 1,
   'old': 1,
   'oo': 1,
   'oper': 1,
   'optim': 3,
   'osgi': 3,
   'paa': 6,
   'packag': 2,
   'pattern': 2,
   'payment_verified': False,
   'perform': 5,
   'phase': 2,
   'phone_verified': False,
   'plan': 1,
   'platform': 1,
   'point': 1,
   'polici': 1,
   'poor': 1,
   'popular': 1,
   'principl': 1,
   'process': 5,
   'product': 14,
   'profile_complete': True,
   'program': 5,
   'project': 7,
   'python': 1,
   'real': 1,
   'real-tim': 1,
   'recogn': 1,
   'reduc': 1,
   'research': 3,
   'resourc': 2,
   'respons': 2,
   'rest': 1,
   'result': 1,
   'role': 2,
   'run': 2,
   'scalabl': 1,
   'scale': 1,
   'seri': 1,
   'servic': 3,
   'set': 1,
   'ship': 1,
   'shorten': 1,
   'simplifi': 2,
   'skill': 2,
   'softwar': 5,
   'solid': 2,
   'solut': 15,
   'specif': 1,
   'stack': 1,
   'state': 2,
   'statu': 1,
   'storag': 1,
   'strong': 1,
   'success': 1,
   'swg': 2,
   'system': 5,
   'take': 1,
   'task': 1,
   'tco': 1,
   'team': 7,
   'technic': 4,
   'technolog': 3,
   'time': 2,
   'togeth': 2,
   'top': 1,
   'topolog': 2,
   'typic': 1,
   'understand': 1,
   'unifi': 1,
   'us': 1,
   'usag': 1,
   'version': 2,
   'view': 1,
   'virtual': 14,
   'vm': 3,
   'way': 1,
   'web': 1,
   'webspher': 1,
   'wide': 1,
   'wire': 2,
   'world': 1,
   'ws-bpel': 2,
   'year': 1},
  'M'),
 ({'2005': 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'drupal': 1,
   'email_verified': True,
   'engin': 1,
   'expertis': 1,
   'facebook_connected': False,
   'field': 1,
   'identity_verified': False,
   'lead': 1,
   'like': 1,
   'magento': 1,
   'mnc': 1,
   'mysql': 1,
   'name': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'sharma': 1,
   'sinc': 1,
   'softwar': 1,
   'technolog': 1,
   'web': 1,
   'web-develop': 1,
   'wordpress': 1,
   'work': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'l',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   '\\xe2\\u0153\\xaa': 1,
   '\\xe2\\u20ac\\u201c': 1,
   'achiev': 1,
   'alloc': 1,
   'also': 1,
   'alway': 2,
   'analysi': 2,
   'articl': 1,
   'ask': 1,
   'base': 1,
   'basi': 2,
   'believ': 2,
   'blog': 1,
   'budget': 3,
   'busi': 1,
   'client': 1,
   'client\\xe2\\u20ac\\u2122': 1,
   'collabor': 1,
   'commun': 1,
   'consult': 2,
   'content': 1,
   'copi': 1,
   'copyedit': 1,
   'copywrit': 1,
   'creation': 1,
   'custom': 1,
   'data': 1,
   'deadlin': 1,
   'depend': 1,
   'deposit_made': True,
   'draft': 1,
   'effect': 1,
   'email': 1,
   'email_verified': True,
   'expect': 1,
   'facebook_connected': True,
   'fulli': 1,
   'goal': 2,
   'good': 1,
   'help': 1,
   'hire': 1,
   'honest': 1,
   'identity_verified': False,
   'improv': 1,
   'includ': 1,
   'keep': 1,
   'keyword': 1,
   'lie': 1,
   'love': 1,
   'market': 3,
   'meta': 1,
   "n't": 1,
   'need': 2,
   'offer': 1,
   'onsit': 1,
   'packag': 1,
   'page': 2,
   'path': 1,
   'payment_verified': False,
   'phone_verified': True,
   'prioriti': 1,
   'profile_complete': True,
   'progress': 1,
   'qualiti': 1,
   'question': 1,
   'reason': 1,
   'regular': 1,
   'research': 1,
   'right': 1,
   'sale': 1,
   'seo': 1,
   'servic': 1,
   'set': 1,
   'small': 1,
   'stay': 1,
   'strategi': 1,
   'success': 1,
   'tactic': 1,
   'take': 1,
   'thing': 1,
   'top': 1,
   'toward': 1,
   'truth': 1,
   'type': 1,
   'understand': 1,
   'within': 1,
   'write': 5},
  'M'),
 ({'9+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ajax': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'etc': 1,
   'experi': 1,
   'facebook_connected': False,
   'hibern': 1,
   'identity_verified': False,
   'java': 1,
   'javascript': 1,
   'jqueri': 1,
   'jsp': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'spring': 1,
   'strut': 1,
   'web': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'e',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'administr': 1,
   'articl': 1,
   'blog': 1,
   'content': 2,
   'corpor': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'land': 1,
   'media': 1,
   'page': 1,
   'payment_verified': False,
   'phone_verified': False,
   'post': 1,
   'profile_complete': True,
   'seo': 1,
   'social': 1},
  'F'),
 ({"''": 1,
   "'m": 2,
   '2009': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 't',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '``': 1,
   'applic': 1,
   'becam': 1,
   'busi': 1,
   'check': 1,
   'client': 1,
   'could': 1,
   'creat': 1,
   'creativ': 1,
   'current': 1,
   'deposit_made': True,
   'describ': 1,
   'design': 4,
   'develop': 2,
   'digit': 1,
   'email_verified': True,
   'excit': 1,
   'expert': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'front-end': 1,
   'hello': 1,
   'help': 1,
   'identity_verified': False,
   'includ': 1,
   'individu': 1,
   'info': 1,
   'level': 1,
   'love': 1,
   'meaning': 1,
   'medium': 1,
   'mobil': 1,
   'partner': 1,
   'payment_verified': False,
   'phone_verified': True,
   'primari': 1,
   'product': 1,
   'profile.what': 1,
   'profile_complete': True,
   'scienc': 1,
   'set': 1,
   'sinc': 2,
   'skill': 2,
   'small': 1,
   'startup': 1,
   'technolog': 1,
   'thank': 1,
   'think': 2,
   'ui-': 1,
   'websit': 1,
   'wider': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 't',
   'Numchar': 4,
   'Vowel': None,
   'base': 1,
   'commerci': 1,
   'deposit_made': False,
   'editori': 1,
   'email_verified': True,
   'facebook_connected': True,
   'freelanc': 1,
   'identity_verified': False,
   'includ': 1,
   'long': 1,
   'payment_verified': True,
   'phone_verified': True,
   'photo': 1,
   'photograph': 1,
   'photographi': 1,
   'portrait': 1,
   'profile_complete': True,
   'vietnam': 1,
   'work': 1},
  'M'),
 ({'2007': 1,
   '4': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'm',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'abil': 1,
   'acquir': 1,
   'acut': 1,
   'almost': 1,
   'also': 2,
   'apart': 1,
   'appli': 1,
   'appreci': 1,
   'appropri': 1,
   'area': 1,
   'around': 1,
   'aspir': 1,
   'assess': 1,
   'australia': 1,
   'back': 2,
   'basi': 1,
   'believ': 1,
   'best': 1,
   'brought': 1,
   'capabl': 1,
   'commun': 2,
   'complet': 1,
   'confid': 1,
   'content': 1,
   'continu': 1,
   'corpor': 1,
   'cours': 1,
   'creation': 1,
   'critic': 1,
   'deadlin': 1,
   'degre': 1,
   'deposit_made': False,
   'dilig': 1,
   'documentari': 1,
   'email_verified': True,
   'employ': 1,
   'english': 1,
   'enrich': 1,
   'entiti': 1,
   'exercis': 1,
   'expect': 1,
   'experi': 2,
   'facebook_connected': False,
   'feel': 1,
   'film-mak': 1,
   'focu': 1,
   'format': 1,
   'found': 1,
   'fund': 1,
   'gener': 2,
   'got': 1,
   'hcl': 1,
   'histor': 1,
   'ibm': 1,
   'ideal': 1,
   'identity_verified': False,
   'impact': 1,
   'impecc': 1,
   'independ': 2,
   'india': 1,
   'indian': 1,
   'industri': 1,
   'initi': 1,
   'intuit': 1,
   'join': 1,
   'keen': 1,
   'languag': 1,
   'latest': 1,
   'least': 1,
   'mainstream': 1,
   'maintain': 1,
   'major': 1,
   'make': 1,
   'mass': 1,
   'master': 2,
   'materi': 1,
   'media': 1,
   'meet': 1,
   'modern': 2,
   'motiv': 1,
   'move': 1,
   "n't": 1,
   'offer': 1,
   'oper': 2,
   'part': 3,
   'payment_verified': False,
   'period': 2,
   'perspect': 1,
   'phone_verified': False,
   'plagiar': 1,
   'platform': 1,
   'play': 1,
   'point': 1,
   'polici': 1,
   'preced': 1,
   'present': 2,
   'profession': 2,
   'profici': 1,
   'profile_complete': True,
   'prolif': 1,
   'prospect': 1,
   'publish': 1,
   'pursu': 1,
   'qualiti': 1,
   'quit': 2,
   'rare': 1,
   'referenc': 1,
   'regular': 1,
   'remuner': 1,
   'research': 1,
   'respect': 1,
   'revolv': 1,
   'scenario': 2,
   'seldom': 1,
   'servic': 1,
   'setup': 1,
   'sinc': 1,
   'skill': 2,
   'standard': 1,
   'style': 1,
   'success': 1,
   'supplement': 1,
   'technolog': 1,
   'text': 1,
   'think': 1,
   'time': 1,
   'transform': 1,
   'understand': 1,
   'urban': 1,
   'usag': 1,
   'variou': 1,
   'wherein': 1,
   'work': 1,
   'would': 2,
   'write': 2,
   'written': 3,
   'year': 2,
   'yet': 1},
  'M'),
 ({'6': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'f',
   'Last': '0',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'also': 2,
   'apach': 1,
   'app': 1,
   'applic': 1,
   'base': 1,
   'bootstrap': 1,
   'capabl': 2,
   'case': 1,
   'code': 1,
   'codeignit': 1,
   'compani': 1,
   'cordova': 1,
   'cross': 1,
   'css3': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 2,
   'drupal': 1,
   'easili': 1,
   'email_verified': True,
   'everyth': 1,
   'execut': 1,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'fledg': 1,
   'foundat': 1,
   'framework': 1,
   'fulli': 1,
   'handl': 1,
   'hybrid': 1,
   'identity_verified': True,
   'includ': 1,
   'joomla': 1,
   'laravel': 1,
   'last': 1,
   'layout': 1,
   'leader': 1,
   'level': 1,
   'logo': 1,
   'make': 1,
   'manag': 1,
   'medium': 1,
   'mobil': 1,
   'payment_verified': True,
   'phone_verified': True,
   'phonegap': 1,
   'php': 1,
   'platform': 1,
   'profile_complete': True,
   'project': 2,
   'provid': 1,
   'senior': 1,
   'simpl': 1,
   'small': 2,
   'team': 2,
   'twitter': 1,
   'ui': 1,
   'web': 1,
   'websit': 1,
   'wordpress': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'c',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'best': 1,
   'choic': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'commun': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'good': 1,
   'hard': 1,
   'identity_verified': False,
   'includ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'prove': 1,
   'realli': 1,
   'self': 1,
   'skill': 2,
   'speed': 1,
   'student': 1,
   'type': 1,
   'use': 1,
   'want': 1,
   'worker': 1},
  'M'),
 ({'37': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='7'>,
   'First': 'a',
   'Last': '8',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'delphi': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'field': 1,
   'identity_verified': False,
   'lot': 2,
   'moham': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'work': 1,
   'year': 2},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 't',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'admin': 1,
   'assist': 1,
   'best': 1,
   'content': 1,
   'deposit_made': True,
   'design': 1,
   'email_verified': True,
   'everyth': 1,
   'experi': 1,
   'facebook_connected': False,
   'great': 1,
   'handl': 1,
   'identity_verified': False,
   'import': 1,
   'manag': 1,
   'much': 1,
   'payment_verified': False,
   'payrol': 1,
   'phone_verified': False,
   'place': 1,
   'profile_complete': True,
   'qualiti': 1,
   'rang': 1,
   'strive': 1,
   'task': 1,
   'time': 1,
   'virtual': 1,
   'web': 2,
   'write': 1,
   'year': 1},
  'M'),
 ({'3d': 3,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='5'>,
   'First': 'a',
   'Last': 'n',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'accept': 1,
   'ampl': 1,
   'array': 1,
   'avail': 1,
   'best': 2,
   'challeng': 1,
   'compani': 1,
   'complet': 1,
   'confid': 1,
   'contract': 1,
   'cours': 1,
   'deposit_made': False,
   'design': 7,
   'email_verified': True,
   'experi': 2,
   'facebook_connected': False,
   'field': 1,
   'fit': 1,
   'handl': 1,
   'hire': 2,
   'identity_verified': False,
   'interest': 1,
   'interior': 1,
   'knowledg': 1,
   'look': 1,
   'lot': 1,
   'max': 1,
   'much': 1,
   'new': 1,
   'payment_verified': False,
   'phone_verified': False,
   'posit': 1,
   'practic': 1,
   'profile_complete': True,
   'project': 1,
   'qualif': 1,
   'requir': 2,
   'segment': 1,
   'suit': 1,
   'take': 1,
   'think': 1,
   'today': 1,
   'vast': 1,
   'versatil': 1,
   'well': 2,
   'work': 1},
  'M'),
 ({'2007': 1,
   'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ad': 1,
   'android': 1,
   'approach': 1,
   'attain': 1,
   'believ': 1,
   'best': 1,
   'busi': 1,
   'career': 1,
   'centric': 1,
   'cmmi': 1,
   'control': 1,
   'current': 1,
   'deal': 1,
   'dedic': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'disciplin': 1,
   'document': 1,
   'effort': 1,
   'email_verified': True,
   'emphas': 1,
   'extens': 1,
   'facebook_connected': False,
   'futur': 1,
   'get': 1,
   'honesti': 1,
   'identity_verified': False,
   'innov': 1,
   'invest': 1,
   'key': 1,
   'managementmobil': 1,
   'mind': 1,
   'mobil': 1,
   'optimum': 1,
   'output': 1,
   'own': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'platform': 1,
   'process': 1,
   'product': 1,
   'profile_complete': True,
   'respons': 1,
   'softwar': 1,
   'solut': 1,
   'start': 1,
   'svn': 1,
   'team': 1,
   'valu': 1,
   'web': 1,
   'whatev': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'v',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'also': 1,
   'alway': 1,
   'believ': 1,
   'blog': 1,
   'complet': 1,
   'confid': 1,
   'custom': 1,
   'data': 1,
   'deliveri': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'entri': 1,
   'experienc': 1,
   'facebook_connected': False,
   'get': 1,
   'good': 1,
   'home': 1,
   'identity_verified': False,
   'job': 2,
   'local': 1,
   'make': 1,
   'offic': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'progress': 1,
   'project': 2,
   'provid': 1,
   'qualiti': 2,
   'relax': 1,
   'reli': 1,
   'report': 1,
   'result': 1,
   'satisfact': 2,
   'three': 1,
   'time': 1,
   'togeth': 1,
   'upto': 1,
   'us': 1,
   'web': 1,
   'webmast': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'i',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': True,
   'freelanc': 1,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'programm': 1},
  'M'),
 ({"'ll": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'l',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'also': 1,
   'client': 1,
   'deposit_made': True,
   'email_verified': True,
   'ezinearticl': 1,
   'facebook_connected': False,
   'find': 1,
   'hubpag': 1,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'world': 1,
   'write': 2},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'i',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'activ': 1,
   'advanc': 1,
   'also': 1,
   'area': 1,
   'articl': 2,
   'assur': 1,
   'beauti': 1,
   'busi': 2,
   'content': 1,
   'deposit_made': True,
   'disappoint': 1,
   'email_verified': True,
   'facebook_connected': False,
   'fit': 1,
   'follow': 1,
   'good': 1,
   'graduat': 1,
   'helium.com': 1,
   'henc': 1,
   'hi': 1,
   'hr': 1,
   'idea': 1,
   'identity_verified': False,
   'interest': 2,
   'keen': 1,
   'manag': 1,
   'mostli': 1,
   'open': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profess': 1,
   'profile_complete': True,
   'relat': 1,
   'research': 1,
   'self-help': 1,
   'skills.if': 1,
   'topic': 1,
   'varieti': 1,
   'view': 1,
   'want': 1,
   'well': 1,
   'work': 2,
   'write': 2,
   'writer': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'autom': 1,
   'c': 1,
   'c++': 1,
   'databas': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'html': 1,
   'identity_verified': False,
   'java': 1,
   'macro': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 1,
   'profession': 1,
   'profile_complete': True,
   'qtp': 1,
   'softwar': 2,
   'test': 1,
   'vba': 1},
  'M'),
 ({"'m": 2,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'B',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'also': 1,
   'c': 1,
   'comput': 1,
   'deposit_made': True,
   'edit': 1,
   'email_verified': True,
   'facebook_connected': True,
   'good': 1,
   'identity_verified': False,
   'java': 1,
   'offic': 1,
   'payment_verified': True,
   'phone_verified': True,
   'photo': 1,
   'php': 1,
   'profile_complete': True,
   'program': 2,
   'romania': 1,
   'scienc': 1,
   'skill': 1,
   'student': 1,
   'tool': 1,
   'user': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'close': 1,
   'creativ': 1,
   'deposit_made': False,
   'earn': 1,
   'email_verified': True,
   'extra': 1,
   'facebook_connected': False,
   'help': 1,
   'identity_verified': False,
   'incom': 1,
   'love': 1,
   'payment_verified': False,
   'pend': 1,
   'phone_verified': False,
   'profile_complete': True,
   'task': 1,
   'time': 1,
   'util': 1,
   'write': 1},
  'M'),
 ({'10': 1,
   '2': 1,
   'Caps': <_sre.SRE_Match object; span=(3, 4), match='S'>,
   'Digit': None,
   'First': 'p',
   'Last': 'R',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(5, 6), match='A'>,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': True,
   'php/mysql': 1,
   'profession': 1,
   'profile_complete': True,
   'scratch': 1,
   'swedish': 1,
   'websit': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 't',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'administr': 1,
   'busi': 3,
   'consult': 1,
   'day': 2,
   'deposit_made': False,
   'email_verified': True,
   'entrepreneur': 1,
   'facebook_connected': False,
   'grow': 1,
   'help': 2,
   'identity_verified': False,
   'need': 1,
   'offer': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'run': 1,
   'servic': 1,
   'small': 1,
   'special': 1,
   'varieti': 1,
   'wide': 1},
  'F'),
 ({"'re": 2,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'j',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'also': 1,
   'alway': 1,
   'appear': 1,
   'appreci': 1,
   'articl': 1,
   'ask': 1,
   'back': 1,
   'build': 1,
   'busi': 1,
   'comment': 1,
   'complet': 1,
   'confid': 1,
   'cpa': 1,
   'craigslist': 1,
   'data': 1,
   'deposit_made': True,
   'directori': 1,
   'done': 1,
   'email_verified': True,
   'entri': 1,
   'establish': 1,
   'expertis': 1,
   'facebook_connected': True,
   'feedback': 1,
   'field': 1,
   'gener': 1,
   'get': 1,
   'give': 1,
   'happi': 1,
   'identity_verified': False,
   'import': 1,
   'internet': 1,
   'job': 1,
   'last': 1,
   'lead': 1,
   'link': 1,
   'long': 1,
   'main': 1,
   'mani': 1,
   'market': 1,
   'money': 1,
   'much': 1,
   'offpag': 1,
   'onpag': 1,
   'open': 1,
   'opportun': 1,
   'payment_verified': True,
   'perfectli': 1,
   'phone_verified': True,
   'post': 2,
   'profile_complete': True,
   'project': 1,
   'qualiti': 1,
   'question': 1,
   'relationship': 1,
   'seo': 2,
   'servic': 3,
   'situat': 1,
   'sourc': 1,
   'special': 1,
   'submiss': 1,
   'success': 1,
   'term': 1,
   'thank': 1,
   'theme': 1,
   'thousand': 1,
   'us': 2,
   'valuabl': 1,
   'variou': 1,
   'year': 1},
  'M'),
 ({'20': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'academ': 1,
   'advic': 1,
   'b.a': 1,
   'background': 1,
   'class': 1,
   'commun': 1,
   'dedic': 1,
   'deposit_made': False,
   'educ': 1,
   'effici': 1,
   'email_verified': True,
   'english': 6,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'first': 1,
   'fluent': 1,
   'form': 1,
   'freelanc': 1,
   'high': 1,
   'husband': 1,
   'identity_verified': False,
   'languag': 2,
   'level': 1,
   'linguist': 1,
   'love': 1,
   'm.a': 2,
   'manag': 1,
   'nativ': 1,
   'organis': 1,
   'payment_verified': False,
   'phone_verified': False,
   'polish': 2,
   'postgradu': 1,
   'profession': 1,
   'proficiency.reli': 1,
   'profile_complete': True,
   'proofread': 1,
   'provid': 2,
   'san': 1,
   'servic': 2,
   'studi': 1,
   'teach': 1,
   'teacher': 1,
   'team': 1,
   'togeth': 1,
   'translat': 3,
   'two': 1,
   'univers': 2,
   'valuabl': 1,
   'warsaw': 2,
   'way': 1,
   'well': 1,
   'written': 1,
   'year': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'N',
   'Last': 'h',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'softwar': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'y',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'kindli': 1,
   'know': 1,
   'lead': 2,
   'let': 1,
   'manag': 1,
   'need': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'provid': 1,
   'system': 2,
   'vertic': 1},
  'M'),
 ({'8': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='6'>,
   'First': 's',
   'Last': '6',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ajax': 1,
   'analyz': 1,
   'attitud': 1,
   'best': 1,
   'cakephp': 1,
   'codeignit': 1,
   'commun': 1,
   'consist': 1,
   'consult': 1,
   'css': 1,
   'dbm': 1,
   'dedic': 1,
   'deposit_made': False,
   'develop': 1,
   'dhtml': 1,
   'email_verified': True,
   'excel': 1,
   'facebook_connected': False,
   'git': 1,
   'goal': 1,
   'html/xhtml': 1,
   'html5': 1,
   'identity_verified': False,
   'javascript': 1,
   'jqueri': 2,
   'json': 1,
   'last': 1,
   'magento': 1,
   'mssql': 1,
   'mysql': 1,
   'needs.with': 1,
   'oracl': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 2,
   'postgresql': 1,
   'product': 1,
   'profession': 1,
   'profile_complete': True,
   'provid': 2,
   'qualiti': 1,
   'quick': 1,
   'rail': 1,
   'rang': 1,
   'ror': 2,
   'rubi': 1,
   'skill': 1,
   'smarti': 1,
   'solut': 1,
   'svn': 1,
   'tool': 1,
   'tortois': 1,
   'turnaround': 1,
   'use': 1,
   'vss': 1,
   'websit': 1,
   'wide': 1,
   'wordpress': 1,
   'work': 3,
   'xhtml': 1,
   'xml': 1,
   'year': 1,
   'yui': 1,
   'zend': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'advanc': 1,
   'analysi': 1,
   'analyt': 1,
   'autom': 3,
   'built': 1,
   'career': 1,
   'client': 4,
   'code': 2,
   'complic': 1,
   'confid': 1,
   'creat': 1,
   'dashboard': 2,
   'decis': 1,
   'deliv': 1,
   'deposit_made': False,
   'effici': 1,
   'email_verified': True,
   'etc': 1,
   'excel': 4,
   'facebook_connected': True,
   'freelanc': 1,
   'gain': 1,
   'global': 1,
   'gradual': 1,
   'help': 1,
   'identity_verified': False,
   'improv': 1,
   'interact': 2,
   'later': 1,
   'like': 1,
   'long': 1,
   'lot': 1,
   'macro': 3,
   'manag': 1,
   'mi': 2,
   'microsoft': 1,
   'model': 1,
   'move': 1,
   'payment_verified': True,
   'phone_verified': False,
   'prepar': 1,
   'process': 1,
   'profile_complete': True,
   'project': 3,
   'provid': 1,
   'qualiti': 1,
   'report': 8,
   'requir': 1,
   'research': 1,
   'result': 1,
   'save': 1,
   'start': 1,
   'support': 1,
   'time': 3,
   'toward': 1,
   'understand': 1,
   'use': 2,
   'variou': 1,
   'vba': 4,
   'web': 1,
   'work': 3,
   'write': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='8'>,
   'First': 'g',
   'Last': '3',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'also': 1,
   'articl': 1,
   'asia': 1,
   'confid': 1,
   'countri': 1,
   'current': 1,
   'definit': 1,
   'degre': 1,
   'deposit_made': True,
   'design': 1,
   'disappoint': 1,
   'edit': 1,
   'email_verified': True,
   'english': 1,
   'facebook_connected': True,
   'first': 1,
   'freelanc': 1,
   'full': 1,
   'hand': 1,
   'high': 1,
   'identity_verified': False,
   'inform': 1,
   'master': 1,
   'offer': 1,
   'payment_verified': False,
   'phone_verified': False,
   'produc': 1,
   'profile_complete': True,
   'proofread': 1,
   'qualiti': 1,
   'relat': 1,
   'singapor': 1,
   'southeast': 1,
   'specialis': 1,
   'teach': 1,
   'therefor': 1,
   'time': 1,
   'travel': 1,
   'work': 2,
   'write': 1},
  'F'),
 ({'31': 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'f',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'also': 1,
   'comput': 1,
   'degre': 1,
   'deposit_made': True,
   'document': 1,
   'drive': 1,
   'ecdl': 1,
   'email_verified': True,
   'english': 3,
   'essay': 1,
   'european': 1,
   'experi': 1,
   'facebook_connected': False,
   'fulli': 2,
   'head': 1,
   'honour': 1,
   'identity_verified': False,
   'independ': 1,
   'last': 1,
   'licenc': 1,
   'london': 1,
   'nativ': 1,
   'novel': 1,
   'outsid': 1,
   'pass': 1,
   'payment_verified': False,
   'phone_verified': False,
   'prestigi': 1,
   'profile_complete': True,
   'proofread': 2,
   'qualifi': 2,
   'report': 1,
   'school': 1,
   'seven': 1,
   'speaker': 1,
   'teacher': 1,
   'use': 1,
   'year': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='A'>,
   'alway': 1,
   'best': 1,
   'deliv': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'friendli': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'qualiti': 1,
   'respons': 1,
   'worker': 1},
  'M'),
 ({'...': 4,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'd',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'also': 1,
   'coral': 1,
   'data': 1,
   'deposit_made': False,
   'design': 2,
   'draw': 1,
   'earn': 1,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': False,
   'farm': 1,
   'good': 1,
   'home': 1,
   'identity_verified': False,
   'illustr': 1,
   'know': 1,
   'local': 1,
   'lot': 1,
   'member': 1,
   'money': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'profile_complete': True,
   'relev': 1,
   'sector': 1,
   'seo': 1,
   'target': 1,
   'town': 1,
   'web': 1,
   'work': 2,
   'worker': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'analysi': 1,
   'assur': 1,
   'attent': 1,
   'auditor': 3,
   'australian': 1,
   'catalogu': 1,
   'certainli': 1,
   'chart': 1,
   'compani': 1,
   'coordin': 1,
   'data': 2,
   'deposit_made': False,
   'design': 1,
   'detail': 1,
   'email_verified': True,
   'engin': 1,
   'especi': 1,
   'evalu': 1,
   'expect': 1,
   'experi': 1,
   'extens': 1,
   'facebook_connected': False,
   'give': 1,
   'good': 2,
   'graph': 1,
   'identity_verified': False,
   'includ': 1,
   'interpret': 1,
   'limit': 1,
   'long-term': 1,
   'major': 1,
   'manag': 2,
   'mani': 1,
   'mine': 1,
   'observ': 1,
   'oper': 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'point': 1,
   'post': 1,
   'precis': 1,
   'prepar': 1,
   'profile_complete': True,
   'project': 1,
   'proof-read': 1,
   'qm': 1,
   'qualif': 1,
   'qualit': 1,
   'qualiti': 2,
   'quantit': 1,
   'questionnair': 1,
   'report': 3,
   'respons': 1,
   'skill': 1,
   'store': 1,
   'strongest': 1,
   'system': 1,
   'task': 1,
   'train': 1,
   'well-reput': 1,
   'work': 3,
   'write': 2,
   'year': 1},
  'M'),
 ({"'m": 1,
   '10.': 1,
   '2': 1,
   'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'h',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'adob': 1,
   'anim': 1,
   'asp.net': 1,
   'bachelor': 1,
   'c': 1,
   'comput': 1,
   'degre': 1,
   'deposit_made': True,
   'electr': 1,
   'email_verified': True,
   'engin': 2,
   'enrol': 1,
   'facebook_connected': False,
   'faculti': 1,
   'high': 4,
   'identity_verified': False,
   'im': 1,
   'inform': 1,
   'informat': 1,
   'knowledg': 10,
   'littl': 1,
   'master': 1,
   'maya': 1,
   'medium': 5,
   'model': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'skopj': 1,
   'softwar': 1,
   'studi': 1,
   'technolog': 1,
   'web': 1,
   'wpf': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='6'>,
   'First': 'g',
   'Last': '3',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'accept': 1,
   'ampl': 1,
   'array': 1,
   'avail': 1,
   'challeng': 1,
   'confid': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'entri': 1,
   'excel': 1,
   'experi': 2,
   'facebook_connected': True,
   'field': 1,
   'fit': 1,
   'handl': 1,
   'hire': 1,
   'identity_verified': False,
   'knowledg': 1,
   'lot': 1,
   'much': 1,
   'new': 1,
   'payment_verified': True,
   'phone_verified': True,
   'practic': 1,
   'profile_complete': True,
   'project': 1,
   'requir': 2,
   'segment': 1,
   'today': 1,
   'vast': 1,
   'versatil': 1,
   'well': 2,
   'work': 1,
   'worker': 1},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'abl': 1,
   'adob': 3,
   'compani': 1,
   'corel': 1,
   'creat': 1,
   'deposit_made': False,
   'design': 1,
   'draw': 1,
   'email_verified': True,
   'facebook_connected': False,
   'firm': 1,
   'get': 1,
   'good': 1,
   'grant': 1,
   'graphic': 1,
   'identity_verified': False,
   'ilustr': 1,
   'indesign': 1,
   'know': 1,
   'logotyp': 1,
   'order': 1,
   'packag': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'print': 1,
   'product': 1,
   'profile_complete': True,
   'program': 1,
   'qualiti': 1,
   'result': 1,
   'shortest': 1,
   'style': 1,
   'time': 1,
   'want': 1,
   'work': 2},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'advertis': 1,
   'agenc': 1,
   'brand': 2,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'find': 1,
   'get': 1,
   'help': 2,
   'hi': 1,
   'identity_verified': False,
   'like': 1,
   'love': 1,
   'name': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'run': 1,
   'sydney': 1,
   'touch': 1,
   'work': 1,
   'would': 1},
  'M'),
 ({"'s": 1,
   '.i': 1,
   '20': 1,
   '2d': 1,
   '3rd': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'comput': 2,
   'current': 1,
   'degre': 1,
   'deposit_made': False,
   'design': 1,
   'dreamweav': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'good': 1,
   'graphic': 2,
   'handl': 1,
   'identity_verified': False,
   'internet': 2,
   'knowledg': 1,
   'lanka': 1,
   'ms': 1,
   'network': 1,
   'offic': 1,
   'oper': 1,
   'packag': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'plat': 1,
   'previou': 1,
   'profile_complete': True,
   'relat': 2,
   'research': 1,
   'sri': 1,
   'studi': 1,
   'system': 1,
   'thing': 1,
   'visual': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'10': 1,
   '2005': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'area': 1,
   'articl': 1,
   'content': 1,
   'deposit_made': False,
   'develop': 1,
   'dreamweav': 1,
   'email_verified': True,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'firework': 1,
   'flash': 1,
   'identity_verified': False,
   'keyword': 1,
   'market': 1,
   'ms': 1,
   'mx': 3,
   'network': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'program': 1,
   'research': 1,
   'resum': 1,
   'seo': 1,
   'server': 1,
   'sql': 1,
   'suit': 1,
   'technic': 2,
   'technolog': 1,
   'vba': 1,
   'write': 5,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'also': 2,
   'ampl': 1,
   'area': 1,
   'benefit': 1,
   'best': 1,
   'classifi': 2,
   'compani': 1,
   'copywrit': 4,
   'custom': 1,
   'data': 2,
   'deliv': 1,
   'deposit_made': False,
   'email_verified': True,
   'employ': 2,
   'entri': 1,
   'execut': 1,
   'experi': 2,
   'experienc': 1,
   'expert': 2,
   'facebook_connected': False,
   'field': 1,
   'global': 1,
   'hire': 1,
   'identity_verified': False,
   'knowledg': 1,
   'numer': 1,
   'payment_verified': False,
   'phone_verified': False,
   'post': 2,
   'process': 1,
   'profile_complete': True,
   'skil': 1,
   'skill': 1,
   'sound': 1,
   'support': 1,
   'today': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'100+': 1,
   '8': 2,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ad': 1,
   'also': 1,
   'banner': 2,
   'bootstrap': 1,
   'bsc': 1,
   'busi': 1,
   'client': 1,
   'complet': 1,
   'custom': 1,
   'deposit_made': False,
   'design': 5,
   'develop': 1,
   'educ': 1,
   'email': 1,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'flayer': 1,
   'foundat': 1,
   'front-end': 1,
   'graphic': 4,
   'gui': 1,
   'hon': 1,
   'html/css': 1,
   'html/html5': 1,
   'identity_verified': False,
   'illustr': 1,
   'inform': 1,
   'interfac': 1,
   'javascript': 1,
   'joomla': 1,
   'jqueri': 1,
   'land': 1,
   'last': 2,
   'latest': 1,
   'layout': 2,
   'logo': 1,
   'mani': 1,
   'materi': 1,
   'navig': 1,
   'newslett': 1,
   'offer': 1,
   'overview': 1,
   'page': 2,
   'payment_verified': True,
   'phone_verified': True,
   'photoshop': 1,
   'profile_complete': True,
   'psd': 2,
   'respons': 2,
   'set': 1,
   'technolog': 2,
   'tool': 1,
   'univers': 1,
   'user': 1,
   'visual': 1,
   'web': 3,
   'websit': 2,
   'wordpress': 1,
   'work': 1,
   'x': 1,
   'year': 1,
   'years+': 1,
   'zurb': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'applic': 1,
   'css': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'javascript': 1,
   'latest': 1,
   'modern': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'semant': 1,
   'standard': 1,
   'websit': 1,
   'xhtml': 1},
  'M'),
 ({'...': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='u'>,
   'among': 1,
   'articl': 1,
   'assist': 3,
   'call': 1,
   'content': 1,
   'copi': 1,
   'creation': 1,
   'data': 1,
   'deposit_made': False,
   'edit': 1,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': True,
   'featur': 1,
   'identity_verified': False,
   'incom': 1,
   'ip': 1,
   'like': 1,
   'market': 1,
   'meta': 1,
   'other': 1,
   'payment_verified': False,
   'pbx': 1,
   'phone': 1,
   'phone_verified': False,
   'profile_complete': True,
   'provid': 3,
   'research': 1,
   'seo': 1,
   'set': 1,
   'simultan': 1,
   'technic': 1,
   'voip': 1,
   'write': 1},
  'F'),
 ({'18': 1,
   '360': 1,
   '43': 1,
   'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'm',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'age': 1,
   'anim': 1,
   'art': 1,
   'compositor': 1,
   'custom': 1,
   'degre': 1,
   'deposit_made': True,
   'design': 3,
   'director': 1,
   'editor': 1,
   'email_verified': True,
   'experi': 3,
   'facebook_connected': False,
   'fine': 1,
   'graphic': 1,
   'identity_verified': False,
   'industri': 1,
   'knowledg': 1,
   'master': 1,
   'model': 1,
   'multimedia': 1,
   'non': 1,
   'panorama': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photographi': 1,
   'post': 1,
   'product': 2,
   'profile_complete': True,
   'special': 1,
   'specialti': 1,
   'vast': 1,
   'vr': 1,
   'websit': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'a',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'answer': 1,
   'ask': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'name': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'question': 1},
  'F'),
 ({'24': 1,
   'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   'avail': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'fire': 1,
   'full': 1,
   'identity_verified': False,
   'jamaica': 1,
   'job': 1,
   'male': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'seek': 1,
   'time': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'trainer': 1},
  'M'),
 ({"'m": 2,
   "'s": 1,
   "'ve": 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'action': 1,
   'addit': 1,
   'afford': 1,
   'articl': 1,
   'assign': 1,
   'assur': 1,
   'away': 1,
   'believ': 2,
   'besid': 1,
   'best': 1,
   'better': 1,
   'busi': 2,
   'career': 1,
   'chase': 1,
   'client': 3,
   'come': 1,
   'commit': 1,
   'complet': 1,
   'compos': 1,
   'compromis': 1,
   'content': 1,
   'creat': 1,
   'cut': 1,
   'degre': 1,
   'deliv': 1,
   'depend': 1,
   'deposit_made': True,
   'devot': 1,
   'email_verified': True,
   'employ': 1,
   'environ': 1,
   'essay': 1,
   'everi': 3,
   'excit': 1,
   'experienc': 1,
   'explor': 2,
   'facebook_connected': False,
   'firmli': 1,
   'follow': 1,
   'fulfil': 1,
   'goal': 1,
   'good': 2,
   'hard': 1,
   'hardwork': 2,
   'high': 2,
   'high-qual': 1,
   'highli': 1,
   'hold': 1,
   'hope': 1,
   'identity_verified': True,
   'imran': 1,
   'includ': 1,
   'increas': 1,
   'keep': 1,
   'key': 1,
   'level': 1,
   'look': 2,
   'make': 2,
   'matter': 1,
   'matters.i': 1,
   'mba': 1,
   'need': 1,
   'offer': 1,
   'payment_verified': True,
   'phone_verified': True,
   'place': 1,
   'pleasur': 1,
   'potenti': 1,
   'price': 1,
   'profess': 1,
   'profession': 1,
   'profile_complete': True,
   'profit': 1,
   'provid': 2,
   'punctual': 1,
   'qualiti': 4,
   'reason': 1,
   'report': 1,
   'reput': 1,
   'resourc': 1,
   'respons': 1,
   'result': 1,
   'review': 1,
   'right': 2,
   'run': 1,
   'satisfact': 2,
   'satisfi': 1,
   'seek': 2,
   'servic': 2,
   'services.i': 1,
   'sincer': 1,
   'skill': 1,
   'someon': 1,
   'sort': 1,
   'speak': 1,
   'standard': 1,
   'start': 1,
   'success': 2,
   'talent': 1,
   'task': 2,
   'thing': 1,
   'time': 2,
   'topic': 1,
   'train': 1,
   'tri': 1,
   'univers': 1,
   'want': 2,
   'wish': 1,
   'work': 5,
   'worker': 1,
   'worldwid': 1,
   'write': 4},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 'h',
   'Last': '3',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'work': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(1, 2), match='S'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='4'>,
   'First': 'e',
   'Last': 'u',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'bpo': 1,
   'call': 1,
   'citi': 1,
   'custom': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'heart': 1,
   'identity_verified': False,
   'india': 1,
   'locat': 1,
   'mumbai': 1,
   'offer': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'support': 1,
   'work': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='Z'>,
   'Digit': None,
   'First': 'Z',
   'Last': 'l',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'famili': 1,
   'father': 1,
   'husband': 1,
   'identity_verified': False,
   'love': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'program': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'i',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'deposit_made': True,
   'design': 1,
   'email_verified': True,
   'facebook_connected': True,
   'graphic': 1,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'web': 1},
  'F'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'allow': 1,
   'assur': 1,
   'banner': 1,
   'base': 1,
   'becom': 1,
   'busi': 1,
   'cart': 1,
   'cm': 1,
   'content': 1,
   'coordin': 1,
   'coverag': 1,
   'css': 1,
   'date': 1,
   'deposit_made': False,
   'design': 3,
   'dhtml': 1,
   'discuss': 1,
   'dreamweav': 1,
   'editplu': 1,
   'email_verified': True,
   'english': 1,
   'etc.if': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'flash': 2,
   'flexibl': 1,
   'forward': 1,
   'gone': 1,
   'group': 1,
   'hello': 1,
   'hindi': 1,
   'hour': 2,
   'html': 1,
   'identity_verified': False,
   'india': 1,
   'inform': 1,
   'integr': 1,
   'interest': 1,
   'interview': 1,
   'know.i': 1,
   'lamp': 2,
   'languag': 1,
   'let': 1,
   'logo': 1,
   'look': 1,
   'member': 1,
   'ms-access': 1,
   'mysql': 1,
   'mysqli': 1,
   'name': 1,
   'need': 1,
   'northern': 1,
   'opportun': 1,
   'part': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'php': 1,
   'pleas': 1,
   'present': 1,
   'profile_complete': True,
   'project': 2,
   'provid': 1,
   'punjabi': 1,
   'qualiti': 1,
   'regular': 1,
   'relat': 1,
   'requir': 1,
   'seo': 1,
   'servic': 1,
   'sever': 1,
   'shop': 1,
   'site': 1,
   'special': 1,
   'sql': 1,
   'team': 2,
   'technolog': 1,
   'time': 1,
   'us': 1,
   'variou': 1,
   'wamp': 2,
   'web': 1,
   'websit': 1,
   'whichev': 1,
   'work': 3,
   'year': 1},
  'M'),
 ({"'ve": 1,
   '100': 1,
   'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
   'also': 1,
   'alway': 1,
   'beat': 1,
   'busi': 1,
   'choic': 1,
   'clear': 1,
   'client': 4,
   'compani': 1,
   'content': 2,
   'deposit_made': True,
   'design': 1,
   'ebook': 5,
   'edit': 1,
   'email_verified': True,
   'ensur': 1,
   'facebook_connected': True,
   'fresh': 1,
   'hard': 1,
   'help': 1,
   'idea': 1,
   'ideal': 1,
   'identity_verified': True,
   'import': 1,
   'like': 1,
   'look': 1,
   'mind': 1,
   'new': 1,
   'offer': 1,
   'payment_verified': True,
   'person': 1,
   'peter': 1,
   'phone_verified': True,
   'produc': 1,
   'profile_complete': True,
   'project': 1,
   'promot': 1,
   'provid': 1,
   'rate': 1,
   'recognis': 1,
   'request': 1,
   'revis': 1,
   'satisfact': 1,
   'servic': 1,
   'specialis': 1,
   'start': 1,
   'style': 1,
   'talk': 1,
   'today': 1,
   'upon': 1,
   'want': 1,
   'web': 1,
   'webpag': 1,
   'websit': 1,
   'whether': 1,
   'work': 1,
   'world.i': 1,
   'write': 2,
   'write.i': 1,
   'written': 1},
  'M'),
 ({"'ll": 1,
   '200': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'alreadi': 1,
   'also': 1,
   'basecamp': 1,
   'best': 1,
   'deposit_made': True,
   'email_verified': True,
   'expert': 3,
   'facebook_connected': False,
   'handl': 1,
   'help': 1,
   'identity_verified': False,
   'lastli': 1,
   'lot': 1,
   'manag': 1,
   'money': 1,
   'payment_verified': True,
   'phone_verified': True,
   'plesk': 1,
   'profile_complete': True,
   'project': 2,
   'provid': 1,
   'quick': 1,
   'save': 1,
   'setup': 1,
   'suggest': 1,
   'take': 1,
   'thank': 1,
   'time': 1,
   'websit': 2,
   'whm': 1,
   'wordpress': 4},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'y',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'age': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'student': 1},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(5, 6), match='i'>,
   'china': 1,
   'dc': 1,
   'deposit_made': False,
   'develop': 1,
   'educ': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'hospit': 2,
   'identity_verified': False,
   'india': 1,
   'manufactur': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'provid': 1,
   'servic': 1,
   'softwar': 1,
   'variou': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'10+': 1,
   '20': 1,
   '20+': 1,
   '500+': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': None,
   'First': 'N',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'also': 1,
   'american': 1,
   'among': 1,
   'base': 1,
   'competit': 1,
   'contribut': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'html/css/javascript': 1,
   'identity_verified': False,
   'java': 1,
   'multipl': 1,
   'open': 1,
   'over': 1,
   'part-tim': 1,
   'particip': 1,
   'payment_verified': True,
   'phone_verified': True,
   'place': 1,
   'profile_complete': True,
   'program': 1,
   'project': 1,
   'request': 1,
   'screen': 1,
   'sourc': 1,
   'technolog': 1,
   'translat': 2,
   'voic': 1,
   'web': 1,
   'write': 1,
   'writer': 1,
   'year': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'u',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'optimist': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True},
  'M'),
 ({'.final': 1,
   '6.0': 1,
   'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '\\xe2\\u20ac\\u201c': 2,
   'addit': 1,
   'aspect': 1,
   'associ': 1,
   'basic': 1,
   'bit': 1,
   'build': 1,
   'code': 1,
   'coder': 1,
   'compens': 1,
   'complex': 1,
   'cost': 1,
   'depend': 1,
   'deposit_made': True,
   'develop': 2,
   'differ': 1,
   'directli': 1,
   'email_verified': True,
   'experienc': 1,
   'facebook_connected': True,
   'flash': 1,
   'follow': 1,
   'give': 1,
   'goal': 1,
   'high': 1,
   'hire': 1,
   'identity_verified': False,
   'industri': 1,
   'instal': 1,
   'know': 1,
   'languag': 1,
   'level': 1,
   'low': 2,
   'major': 1,
   'manag': 3,
   'mani': 2,
   'may': 3,
   'obvious': 1,
   'payment_verified': True,
   'peopl': 1,
   'person': 1,
   'phone_verified': True,
   'photoshop': 1,
   'price': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 3,
   'ratio': 1,
   'respons': 1,
   'scope': 1,
   'singl': 2,
   'softwar': 4,
   'sometim': 2,
   'specialist': 1,
   'success': 1,
   'team': 2,
   'tester': 2,
   'tier': 1,
   'visual': 2,
   'way': 1,
   'well-experienc': 1},
  'M'),
 ({'2010': 1,
   '2013': 1,
   '365': 1,
   '6+': 1,
   '8+': 1,
   'Caps': <_sre.SRE_Match object; span=(12, 13), match='I'>,
   'Digit': None,
   'First': 'e',
   'Last': 'T',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'consult': 1,
   'custom': 1,
   'deposit_made': False,
   'email_verified': True,
   'exp': 1,
   'facebook_connected': False,
   'forward': 1,
   'full-tim': 1,
   'good': 1,
   'hi': 1,
   'identity_verified': False,
   'includ': 1,
   'last': 1,
   'look': 1,
   'moss': 1,
   'offic': 1,
   'overal': 1,
   'payment_verified': False,
   'phone_verified': True,
   'plugin': 1,
   'presenc': 1,
   'profile_complete': True,
   'report': 1,
   'sharepoint': 3,
   'sinc': 1,
   'work': 3,
   'wss': 1,
   'year': 2},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='8'>,
   'First': 'e',
   'Last': '4',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'analyst': 1,
   'current': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'foreign': 1,
   'identity_verified': False,
   'industri': 2,
   'ministri': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'programm': 1,
   'qualifi': 1,
   'system': 1,
   'trade': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'6+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'm',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'accompani': 1,
   'alway': 1,
   'anim': 1,
   'art': 1,
   'aspect': 1,
   'base': 1,
   'basi': 1,
   'bfa': 1,
   'broad': 1,
   'career': 1,
   'chicago': 1,
   'collabor': 1,
   'commun': 1,
   'confid': 1,
   'coordin': 1,
   'creativ': 2,
   'deposit_made': False,
   'design': 7,
   'earn': 1,
   'edit': 1,
   'email_verified': True,
   'encompass': 1,
   'enhanc': 1,
   'ethic': 1,
   'everyth': 1,
   'excel': 1,
   'experi': 3,
   'facebook_connected': False,
   'freelanc': 1,
   'full-tim': 1,
   'graphic': 3,
   'great': 1,
   'identity_verified': False,
   'individu': 1,
   'institut': 1,
   'layout': 1,
   'leadership': 1,
   'learn': 2,
   'logo': 1,
   'major': 1,
   'new': 2,
   'organiz': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photo': 1,
   'product': 1,
   'profession': 1,
   'profile_complete': True,
   'rate': 1,
   'requir': 1,
   'role': 3,
   'school': 1,
   'sever': 1,
   'skill': 5,
   'span': 1,
   'spectrum': 1,
   'start': 1,
   'strengthen': 1,
   'strong': 2,
   'technic': 1,
   'thing': 1,
   'understand': 1,
   'whenev': 1,
   'will': 1,
   'work': 4,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': None,
   'First': 'F',
   'Last': 'K',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abil': 1,
   'academ': 1,
   'alway': 1,
   'assign': 1,
   'cite': 1,
   'deposit_made': True,
   'dissert': 1,
   'email_verified': True,
   'excel': 2,
   'facebook_connected': True,
   'fresh': 1,
   'identity_verified': False,
   'includ': 1,
   'level': 1,
   'look': 1,
   'master': 1,
   'mind': 1,
   'orient': 1,
   'payment_verified': True,
   'phd': 1,
   'phone_verified': True,
   'profile_complete': True,
   'research': 3,
   'thesi': 1,
   'write': 1},
  'F'),
 ({'1.': 1,
   '10': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'S',
   'Last': '7',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'comput': 1,
   'deliv': 1,
   'deposit_made': False,
   'designing4': 1,
   'email_verified': True,
   'experienc': 1,
   'facebook_connected': False,
   'html': 1,
   'identity_verified': False,
   'old': 1,
   'onlin': 3,
   'organ': 1,
   'particularli': 1,
   'payment_verified': False,
   'phone_verified': False,
   'planet': 1,
   'profile_complete': True,
   'servic': 2,
   'softwar': 1,
   'websit': 1,
   'year': 1},
  'M'),
 ({'11': 1,
   '12': 1,
   '1989': 1,
   '1994': 1,
   '1997': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='1'>,
   'First': 's',
   'Last': '1',
   'Numchar': 5,
   'Vowel': None,
   'abus': 1,
   'administr': 5,
   'adob': 4,
   'advertis': 3,
   'agenc': 1,
   'airport': 1,
   'along': 2,
   'annual': 1,
   'applic': 2,
   'area': 1,
   'around': 1,
   'art': 1,
   'articl': 1,
   'artist': 6,
   'associ': 2,
   'attend': 2,
   'badg': 1,
   'baltimor': 1,
   'bid': 1,
   'board': 1,
   'book': 5,
   'booklet': 1,
   'booth': 1,
   'bought': 1,
   'bring': 1,
   'brochur': 2,
   'brought': 2,
   'budget': 1,
   'bug': 1,
   'busi': 2,
   'call': 1,
   'camera': 3,
   'campaign': 1,
   'campu': 3,
   'card': 2,
   'catalog': 5,
   'central': 1,
   'chang': 1,
   'chapter': 1,
   'class': 1,
   'classifi': 1,
   'clientel': 1,
   'cohes': 2,
   'collect': 1,
   'color': 2,
   'committe': 1,
   'commun': 3,
   'compani': 5,
   'comparison': 2,
   'complet': 1,
   'comput': 5,
   'conferenc': 1,
   'consider': 1,
   'consist': 1,
   'constraint': 1,
   'content': 1,
   'continu': 3,
   'contract': 1,
   'convent': 1,
   'convers': 2,
   'convert': 1,
   'coordin': 1,
   'copi': 2,
   'copywrit': 1,
   'corpor': 3,
   'correct': 3,
   'cost': 1,
   'cream': 1,
   'creat': 1,
   'creativ': 6,
   'crime': 3,
   'custom': 3,
   'data': 1,
   'databas': 3,
   'de': 3,
   'deadlin': 3,
   'delawar': 4,
   'depart': 4,
   'deposit_made': True,
   'design': 17,
   'diagnos': 1,
   'direct': 4,
   'director': 5,
   'display': 3,
   'diversifi': 1,
   'document': 1,
   'drive': 1,
   'edit': 6,
   'editor': 2,
   'educ': 4,
   'elderli': 1,
   'email_verified': True,
   'employe': 3,
   'equip': 3,
   'event': 2,
   'execut': 2,
   'facebook_connected': False,
   'facet': 1,
   'featur': 1,
   'file': 6,
   'final': 4,
   'fine': 1,
   'florida': 1,
   'flyer': 1,
   'food': 3,
   'freelanc': 2,
   'get': 1,
   'graphic': 9,
   'guid': 1,
   'handbook': 1,
   'help': 1,
   'high-end': 1,
   'home': 1,
   'hospit': 1,
   'hous': 1,
   'ice': 1,
   'idea': 1,
   'ident': 2,
   'identity_verified': False,
   'illustr': 5,
   'in-hous': 1,
   'inc.': 2,
   'includ': 2,
   'increas': 1,
   'industri': 3,
   'inform': 2,
   'insert': 1,
   'intern': 1,
   'internet': 1,
   'interv': 1,
   'involv': 2,
   'issu': 1,
   'job': 1,
   'journalist': 2,
   'label': 1,
   'later': 1,
   'layout': 1,
   'leagu': 1,
   'liais': 1,
   'liaison': 3,
   'link': 1,
   'littl': 1,
   'local': 1,
   'logo': 2,
   'mail': 4,
   'maintain': 2,
   'make': 1,
   'manag': 3,
   'map': 1,
   'mark': 2,
   'maryland': 3,
   'materi': 11,
   'mdart': 2,
   'mdproduct': 2,
   'media': 3,
   'medic': 1,
   'meet': 2,
   'membership': 2,
   'microsoft': 2,
   'minut': 1,
   'month': 1,
   'monthli': 2,
   'name': 1,
   'necessari': 1,
   'need': 2,
   'network': 1,
   'new': 3,
   'news': 2,
   'newslett': 1,
   'newspap': 3,
   'non-profit': 1,
   'nurs': 4,
   'offic': 5,
   'oper': 1,
   'order': 1,
   'organ': 1,
   'orient': 1,
   'osha': 2,
   'other': 1,
   'outsid': 3,
   'overse': 2,
   'owner': 1,
   'ownership': 1,
   'pagemak': 2,
   'pamphlet': 1,
   'parent': 1,
   'past': 2,
   'payment_verified': False,
   'perform': 2,
   'personnel': 2,
   'phone': 1,
   'phone_verified': False,
   'photograph': 1,
   'photographi': 2,
   'photoshop': 2,
   'plan': 6,
   'plate': 1,
   'point-of-purchas': 3,
   'popular': 1,
   'pre-press': 2,
   'present': 1,
   'press': 5,
   'price': 2,
   'print': 7,
   'printer': 3,
   'prioriti': 1,
   'problem': 1,
   'process': 2,
   'produc': 1,
   'product': 13,
   'profession': 1,
   'profile_complete': True,
   'program': 4,
   'project': 1,
   'proof': 3,
   'proofread': 3,
   'prospect': 1,
   'public': 2,
   'qualiti': 1,
   'quark': 1,
   'quarkxpress': 3,
   'question': 1,
   'read': 3,
   'relat': 1,
   'report': 1,
   'reproduct': 1,
   'requir': 1,
   'run': 3,
   'safeti': 1,
   'sale': 4,
   'schedul': 4,
   'scout': 1,
   'seminar': 3,
   'separ': 1,
   'seriou': 1,
   'servic': 2,
   'session': 1,
   'set': 1,
   'sever': 1,
   'sexual': 1,
   'shack': 1,
   'shop': 1,
   'sign': 1,
   'small': 2,
   'softwar': 6,
   'sort': 1,
   'southwest': 1,
   'speaker': 1,
   'special': 1,
   'staff': 2,
   'storag': 1,
   'stori': 1,
   'student': 5,
   'suppli': 1,
   'taylor': 2,
   'technic': 1,
   'temporari': 3,
   'tight': 5,
   'time': 5,
   'tree': 1,
   'tri': 2,
   'type': 12,
   'use': 3,
   'varieti': 1,
   'violent': 2,
   'washington': 1,
   'webpag': 1,
   'week': 1,
   'weekli': 1,
   'well': 1,
   'within': 2,
   'word': 2,
   'work': 15,
   'workbook': 1,
   'write': 1,
   'xpress': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'l',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'b.a': 1,
   'commun': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 2,
   'facebook_connected': False,
   'identity_verified': False,
   'imag': 1,
   'institut': 1,
   'master': 1,
   'payment_verified': False,
   'phone_verified': True,
   'plan': 1,
   'profile_complete': True,
   'resourc': 1,
   'year': 2},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'abl': 1,
   'academ': 1,
   'ad': 1,
   'also': 1,
   'assist': 1,
   'background': 1,
   'career': 2,
   'client': 2,
   'commerci': 1,
   'commun': 1,
   'compani': 1,
   'content': 1,
   'copi': 1,
   'corpor': 1,
   'creat': 1,
   'curriculum': 1,
   'deposit_made': False,
   'develop': 1,
   'draft': 1,
   'educ': 1,
   'effici': 1,
   'email_verified': True,
   'execut': 1,
   'experi': 1,
   'extens': 1,
   'facebook_connected': False,
   'form': 1,
   'higher': 1,
   'holder': 1,
   'identity_verified': False,
   'includ': 2,
   'increas': 1,
   'industri': 1,
   'k-12': 1,
   'letter': 2,
   'materi': 1,
   'measur': 1,
   'mid-level': 1,
   'ms.': 2,
   'paper': 1,
   'payment_verified': False,
   'person': 2,
   'phone_verified': False,
   'polish': 1,
   'posit': 1,
   'previou': 1,
   'product': 1,
   'profession': 2,
   'profile_complete': True,
   'project': 3,
   'promot': 1,
   'provid': 2,
   'report': 1,
   'result': 1,
   'sector': 1,
   'set': 1,
   'skill': 2,
   'taylor': 3,
   'train': 1,
   'use': 1,
   'varieti': 2,
   'web': 1,
   'white': 1,
   'wide': 1,
   'young': 1},
  'F'),
 ({"'m": 1,
   "'s": 1,
   "'ve": 3,
   '0': 1,
   '10': 1,
   '12': 1,
   '2008.': 1,
   '6': 1,
   '7': 1,
   '9': 1,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'busi': 1,
   'ceo': 1,
   'channel': 1,
   'deposit_made': True,
   'develop': 1,
   'differ': 1,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'featur': 1,
   'figur': 1,
   'freelanc': 2,
   'hi': 1,
   'hundr': 2,
   'identity_verified': True,
   'internet': 2,
   'jimmi': 1,
   'late': 1,
   'less': 1,
   'lot': 1,
   'manag': 1,
   'mani': 1,
   'market': 2,
   'matt': 1,
   'member': 1,
   'month': 1,
   'morn': 1,
   'new': 1,
   'night': 1,
   'onlin': 1,
   'oper': 1,
   'past': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'properti': 1,
   'rank': 1,
   'receiv': 1,
   'revenu': 1,
   'search': 1,
   'seo': 2,
   'show': 1,
   'sinc': 1,
   'special': 1,
   'street': 1,
   'taken': 1,
   'thousand': 1,
   'time-': 1,
   'top': 1,
   'tv': 1,
   'ventur': 1,
   'visitor': 1,
   'wall': 1,
   'web': 2,
   'websit': 1,
   'well': 1,
   'work': 1,
   'year': 1,
   'york': 1},
  'M'),
 ({'.net': 1,
   '7+': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'h',
   'Last': '5',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'analyst': 1,
   'applic': 1,
   'architect': 1,
   'asp.net': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'favourit': 1,
   'identity_verified': False,
   'majorli': 1,
   'mobil': 1,
   'pass': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'softwar': 1,
   'technolog': 1,
   'time': 1,
   'use': 1,
   'web': 1,
   'work': 2,
   'write': 1,
   'xml/xslt': 1,
   'year': 1},
  'M'),
 ({'...': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 't',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'challeng': 1,
   'cool': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'good': 1,
   'identity_verified': False,
   'look': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'programm': 1,
   'project': 1},
  'M'),
 ({"'m": 2,
   "'ve": 1,
   '6': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
   'administr': 1,
   'applic': 1,
   'area': 1,
   'consult': 1,
   'deposit_made': True,
   'develop': 2,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'incept': 1,
   'includ': 1,
   'independ': 1,
   'industri': 1,
   'linux': 1,
   'mani': 1,
   'market': 1,
   'network': 1,
   'nowaday': 1,
   'off-shor': 1,
   'opensourc': 1,
   'oper': 1,
   'outstand': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'provid': 2,
   'regard': 1,
   'secur': 1,
   'servic': 1,
   'solut': 1,
   'system': 1,
   'web': 2,
   'will': 1,
   'year': 1,
   'young': 1},
  'M'),
 ({'7+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'o',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'latest': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'senior': 1,
   'softwar': 1,
   'technolog': 1,
   'updat': 1,
   'year': 1},
  'M'),
 ({'.net': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'administr': 1,
   'ajax': 1,
   'analysis-': 1,
   'apach': 1,
   'applic': 9,
   'asp.net': 1,
   'audit': 3,
   'borland': 1,
   'busi': 2,
   'c': 1,
   'c++-': 1,
   'cento': 1,
   'check': 2,
   'checkout': 1,
   'checkup': 2,
   'code': 4,
   'consult': 1,
   'custom': 1,
   'daili': 1,
   'data': 1,
   'deposit_made': True,
   'develop': 7,
   'dn': 1,
   'email_verified': True,
   'etc': 4,
   'ethic': 1,
   'experienc': 1,
   'expert': 1,
   'facebook_connected': False,
   'find': 1,
   'flash': 1,
   'form': 1,
   'ftp': 1,
   'full': 1,
   'futur': 1,
   'gateway': 1,
   'googl': 1,
   'help': 1,
   'highli': 1,
   'http': 1,
   'identity_verified': False,
   'ifram': 1,
   'ii': 1,
   'inject': 2,
   'integr': 1,
   'integration-': 1,
   'internet': 1,
   'ipad': 1,
   'iphon': 1,
   'java': 1,
   'javascript': 1,
   'jsp': 1,
   'keep': 1,
   'knowledg': 1,
   'lamp': 1,
   'level': 1,
   'listen': 1,
   'log': 1,
   'mobil': 1,
   'monitor': 1,
   'ms': 1,
   'mysql': 1,
   'nginx': 1,
   'offer': 3,
   'payment': 1,
   'payment_verified': False,
   'paypal': 1,
   'penetr': 1,
   'phone_verified': True,
   'php': 1,
   'php/mysql': 1,
   'plu': 1,
   'prevent': 2,
   'profession': 1,
   'profile_complete': True,
   'programming-': 2,
   'rang': 1,
   'router': 1,
   'safe': 1,
   'scan': 1,
   'script': 2,
   'scripts-': 1,
   'secur': 10,
   'server': 1,
   'servic': 5,
   'services-': 1,
   'smtp': 1,
   'soap': 1,
   'softwar': 1,
   'sourc': 1,
   'sql': 1,
   'system': 4,
   'system/network': 1,
   'technolog': 1,
   'test': 1,
   'testing-': 2,
   'type': 1,
   'unknown': 1,
   'use': 5,
   'valid': 1,
   'variou': 3,
   'viru': 1,
   'vpn': 1,
   'vulner': 2,
   'web': 6,
   'websit': 2,
   'wide': 1,
   'window': 3,
   'xml': 1},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'e',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='e'>,
   'accur': 1,
   'bpo': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': True,
   'field': 1,
   'identity_verified': False,
   'last': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 2,
   'servic': 1,
   'sincer': 1,
   'variou': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'j',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'blogger': 1,
   'content': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': True,
   'full-tim': 1,
   'identity_verified': False,
   'includ': 1,
   'make': 1,
   'money': 1,
   'onlin': 1,
   'optim': 1,
   'payment_verified': False,
   'phone_verified': True,
   'platform': 1,
   'present': 1,
   'profile_complete': True,
   'readi': 1,
   'search': 1,
   'web': 2,
   'websit': 1,
   'work': 2,
   'write': 1},
  'M'),
 ({'10+': 1,
   '3': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='8'>,
   'First': 'k',
   'Last': '7',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'activ': 1,
   'affair': 1,
   'also': 2,
   'artist': 1,
   'awar': 1,
   'campaign': 2,
   'channel': 1,
   'child': 1,
   'children': 1,
   'commun': 1,
   'complet': 1,
   'cover': 1,
   'current': 1,
   'deliv': 1,
   'deposit_made': False,
   'differ': 1,
   'educ': 1,
   'email_verified': True,
   'etc': 1,
   'ethic': 1,
   'event': 1,
   'fabric': 1,
   'facebook_connected': False,
   'fanat': 1,
   'flood': 1,
   'fund': 2,
   'fundrais': 1,
   'honor': 1,
   'host': 1,
   'identity_verified': False,
   'industri': 1,
   'initi': 1,
   'inject': 1,
   'invit': 1,
   'issu': 1,
   'lead': 1,
   'lectur': 1,
   'live': 1,
   'local': 1,
   'manag': 1,
   'media': 5,
   'morn': 1,
   'pakistan': 1,
   'part': 1,
   'passion': 1,
   'past': 1,
   'payment_verified': False,
   'phone_verified': False,
   'present': 1,
   'profession': 1,
   'profile_complete': True,
   'program': 2,
   'radio': 4,
   'ration': 1,
   'relief': 1,
   'safe': 1,
   'save': 1,
   'sever': 2,
   'show': 2,
   'social': 4,
   'special': 1,
   'store': 1,
   'talk': 2,
   'televis': 2,
   'topic': 1,
   'twitter': 1,
   'univers': 1,
   'via': 1,
   'voic': 1,
   'volunt': 1,
   'work': 2,
   'year': 2},
  'F'),
 ({'3.0': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='4'>,
   'First': 'm',
   'Last': '2',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ajax': 1,
   'cakephp': 1,
   'cm': 1,
   'contract': 1,
   'css': 1,
   'current': 1,
   'databas': 1,
   'deposit_made': True,
   'doctrin': 1,
   'drupal': 1,
   'ejb': 1,
   'email_verified': True,
   'facebook_connected': False,
   'framework': 1,
   'glassfish': 1,
   'html5': 1,
   'identity_verified': False,
   'j2ee': 1,
   'joomla': 1,
   'jqueri': 1,
   'kohana': 1,
   'mvc': 1,
   'mysql': 1,
   'oop': 1,
   'orm': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'php5': 1,
   'profile_complete': True,
   'prototyp': 1,
   'skill': 1,
   'smarti': 1,
   'symfoni': 1,
   'templat': 1,
   'toplink': 1,
   'yr': 2,
   'zend': 1},
  'M'),
 ({'4': 1,
   '6': 1,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ajax': 1,
   'almost': 1,
   'bachelor': 1,
   'client': 1,
   'comput': 1,
   'css': 1,
   'css3': 1,
   'custom': 1,
   'deal': 1,
   'deposit_made': True,
   'develop': 2,
   'done': 1,
   'email_verified': True,
   'end': 1,
   'experi': 1,
   'facebook_connected': False,
   'happi': 1,
   'html': 1,
   'html5': 1,
   'identity_verified': True,
   'interest': 1,
   'javascript': 1,
   'jqueri': 1,
   'kind': 1,
   'languag': 1,
   'major': 1,
   'man': 1,
   'mani': 2,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'plugin': 1,
   'profile_complete': True,
   'program': 1,
   'request': 1,
   'scienc': 1,
   'servic': 1,
   'theme': 1,
   'tri': 1,
   'websit': 1,
   'wordpress': 2,
   'year': 2},
  'M'),
 ({'2.0': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 't',
   'Last': '2',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'a-level': 2,
   'certif': 1,
   'chittagong': 1,
   'complet': 3,
   'deposit_made': False,
   'eee': 1,
   'email_verified': True,
   'exam': 1,
   'facebook_connected': False,
   'gpa': 2,
   'identity_verified': False,
   'laboratori': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'school': 2,
   'scienc': 1,
   'secondari': 1,
   'studi': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'm',
   'Last': 't',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abl': 1,
   'accent': 1,
   'deposit_made': False,
   'differ': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'good': 2,
   'identity_verified': False,
   'lot': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'speed': 1,
   'transcrib': 1,
   'type': 2,
   'understand': 1},
  'M'),
 ({"'m": 1,
   "'re": 3,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'o',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'abl': 1,
   'art': 1,
   'better': 1,
   'catalog': 1,
   'client': 2,
   'commerci': 1,
   'complet': 1,
   'deposit_made': True,
   'edit': 1,
   'email_verified': True,
   'estat': 1,
   'express': 1,
   'facebook_connected': True,
   'find': 1,
   'fine': 1,
   'guarante': 1,
   'help': 1,
   'identity_verified': False,
   'landscap': 1,
   'natur': 1,
   'noth': 1,
   'owe': 1,
   'payment_verified': False,
   'perform': 1,
   'phone_verified': True,
   'photograph': 4,
   'photographi': 1,
   'portrait': 1,
   'product': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'real': 1,
   'satisfi': 1,
   'seek': 1,
   'sell': 1,
   'varieti': 3,
   'variou': 1,
   'vision': 1,
   'wed': 1,
   'work': 3},
  'M'),
 ({'21': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'a',
   'Last': 'i',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'among': 1,
   'around': 1,
   'arun': 1,
   'assess': 1,
   'audit': 1,
   'best': 1,
   'busi': 1,
   'care': 1,
   'compani': 1,
   'complianc': 2,
   'consult': 2,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'etc': 1,
   'experi': 1,
   'facebook_connected': True,
   'field': 1,
   'globe': 1,
   'hippa': 1,
   'identity_verified': False,
   'india': 1,
   'inform': 3,
   'mainli': 1,
   'manag': 1,
   'one': 1,
   'payment_verified': False,
   'penetr': 1,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'reput': 1,
   'secur': 3,
   'take': 1,
   'test': 1,
   'virtual': 1,
   'vulner': 1,
   'well': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'1.5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='0'>,
   'First': 'c',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'almost': 1,
   'amount': 1,
   'app': 1,
   'chennai': 1,
   'contact': 1,
   'css3': 1,
   'dell': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 1,
   'email_verified': True,
   'face': 1,
   'facebook_connected': False,
   'firm': 1,
   'get': 1,
   'html5': 1,
   'identity_verified': False,
   'infosi': 1,
   'last': 1,
   'manag': 1,
   'mobil': 1,
   'opinion': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'reliabl': 1,
   'respons': 1,
   'simpl': 2,
   'support': 1,
   'technic': 1,
   'time': 1,
   'want': 1,
   'websit': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'v',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ajax-': 1,
   'analysi': 1,
   'applic': 2,
   'c': 1,
   'c/c++': 1,
   'deposit_made': False,
   'design-': 1,
   'developer-': 4,
   'email_verified': True,
   'facebook': 1,
   'facebook_connected': False,
   'flash-': 1,
   'identity_verified': False,
   'internet': 1,
   'mysql-': 2,
   'next': 1,
   'oracle-': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'rail': 1,
   'rubi': 1,
   'softwar': 1,
   'system': 1,
   'twitter': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>,
   'agil': 1,
   'also': 1,
   'alway': 2,
   'apach': 1,
   'applic': 2,
   'asset': 1,
   'belt': 1,
   'best': 1,
   'build': 1,
   'built': 1,
   'challeng': 1,
   'claim': 1,
   'client': 1,
   'codebas': 1,
   'come': 1,
   'complex': 1,
   'consult': 1,
   'contributor': 1,
   'corpor': 1,
   'curiou': 1,
   'deposit_made': False,
   'effici': 1,
   'email_verified': True,
   'etc': 1,
   'experi': 1,
   'expertis': 1,
   'explor': 1,
   'facebook_connected': False,
   'fault-toler': 1,
   'field': 1,
   'finish': 1,
   'got': 1,
   'greatest': 1,
   'grow': 1,
   'haproxi': 1,
   'help': 1,
   'highli': 1,
   'identity_verified': False,
   'in': 1,
   'includ': 1,
   'individu': 1,
   'innov': 1,
   'know': 1,
   'lamp': 1,
   'larg': 1,
   'latest': 1,
   'leader': 1,
   'learn': 1,
   'linux': 1,
   'mani': 2,
   'memcach': 1,
   'mind': 1,
   'modern': 1,
   'mongodb': 1,
   'mysql': 1,
   'next': 1,
   'out': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 2,
   'play': 1,
   'pleasur': 1,
   'practition': 1,
   'problem': 1,
   'profile_complete': True,
   'programm': 1,
   'puppet': 1,
   'redi': 1,
   'satisfi': 1,
   'scalabl': 2,
   'season': 1,
   'skill': 1,
   'solut': 2,
   'stack': 1,
   'start': 1,
   'team': 2,
   'technic': 2,
   'technolog': 2,
   'valuabl': 1,
   'web': 2,
   'will': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
   'First': 'y',
   'Last': '5',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'lanka': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'sri': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='4'>,
   'First': 't',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': None,
   'buck': 1,
   'consult': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': True,
   'free': 1,
   'identity_verified': False,
   'light': 1,
   'like': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'quick': 1,
   'time': 1,
   'two': 1,
   'work': 1,
   'would': 1},
  'M'),
 ({'15': 1,
   '5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'l',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'air': 1,
   'amazon': 1,
   'angularj': 1,
   'apex': 1,
   'app': 1,
   'applic': 3,
   'architect': 1,
   'busi': 1,
   'commun': 1,
   'compani': 1,
   'creativ': 1,
   'css': 1,
   'db': 1,
   'deep': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'devlop': 1,
   'ec2': 1,
   'email_verified': True,
   'enterpris': 1,
   'etc': 1,
   'execut': 1,
   'experi': 1,
   'facebook_connected': False,
   'flex': 1,
   'framework': 1,
   'gi': 1,
   'html5': 1,
   'identity_verified': False,
   'industri': 1,
   'intellig': 1,
   'io': 1,
   'j2ee': 1,
   'java': 1,
   'javascript': 1,
   'last': 1,
   'lead': 1,
   'leverag': 1,
   'mobil': 2,
   'non': 1,
   'open': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'platform': 2,
   'product': 1,
   'profile_complete': True,
   'provid': 1,
   'raul': 1,
   'rdbm': 1,
   'rich': 1,
   'roy': 1,
   'salesforc': 1,
   'season': 1,
   'softwar': 1,
   'solut': 2,
   'sourc': 1,
   'special': 1,
   'sql': 1,
   'technolog': 3,
   'tool': 1,
   'understand': 1,
   'user': 1,
   'visual': 1,
   'web': 1,
   'webservic': 1,
   'work': 2,
   'year': 2},
  'M'),
 ({'1': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'base': 2,
   'compani': 1,
   'continu': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'good': 1,
   'identity_verified': False,
   'india': 1,
   'knowledg': 1,
   'lead': 1,
   'offshor': 1,
   'outsourc': 1,
   'payment_verified': False,
   'phone_verified': False,
   'product': 1,
   'profile_complete': True,
   'seo': 1,
   'servic': 1,
   'softwar': 1,
   'web': 2,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='4'>,
   'First': 'E',
   'Last': 'k',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': True,
   'graphic': 1,
   'identity_verified': False,
   'khulna': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'student': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'account': 1,
   'also': 1,
   'anyth': 1,
   'articl': 2,
   'assign': 1,
   'base': 2,
   'basic': 1,
   'bill': 1,
   'coach': 1,
   'comput': 1,
   'craigslist': 1,
   'deposit_made': False,
   'email_verified': True,
   'enjoy': 1,
   'etc.i': 1,
   'facebook_connected': False,
   'financ': 1,
   'good': 2,
   'graduat': 1,
   'group': 1,
   'handl': 1,
   'health': 1,
   'hire': 1,
   'identity_verified': False,
   'jason': 1,
   'leadership': 1,
   'learn': 1,
   'least': 1,
   'like': 2,
   'mail': 3,
   'market': 1,
   'me.i': 1,
   'microsoft': 1,
   'mr': 2,
   'network': 1,
   'offic': 1,
   'order': 1,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': False,
   'pleas': 1,
   'possibl': 1,
   'problem.i': 1,
   'product': 1,
   'profile_complete': True,
   'promot': 1,
   'quick': 1,
   'receiv': 1,
   'sampl': 1,
   'see': 1,
   'sell': 1,
   'send': 2,
   'skill': 1,
   'social': 1,
   'take': 1,
   'technolog': 1,
   'time': 1,
   'todd': 1,
   'type': 1,
   'variou': 1,
   'want': 1,
   'will': 1,
   'wont': 1,
   'work': 3,
   'write': 3},
  'M'),
 ({'20': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='F'>,
   'Digit': None,
   'First': 'F',
   'Last': 'o',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'aka': 1,
   'banner': 1,
   'begin': 1,
   'build': 1,
   'came': 1,
   'carrier': 1,
   'danish': 1,
   'deposit_made': False,
   'design': 1,
   'edit': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'film': 1,
   'freak': 1,
   'freelanc': 1,
   'gain': 1,
   'gymnasium': 1,
   'hello': 1,
   'identity_verified': False,
   'like': 1,
   'logo': 1,
   'look': 1,
   'marc': 2,
   'media': 1,
   'name': 1,
   'old': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photo': 1,
   'pilgaard': 2,
   'portfolio': 1,
   'produc': 1,
   'profile_complete': True,
   'project': 1,
   'regard': 1,
   'student': 1,
   'studi': 1,
   'technic': 1,
   'voic': 1,
   'well': 2,
   'within': 2,
   'year': 1},
  'M'),
 ({"'m": 2,
   "'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'anyth': 1,
   'complet': 1,
   'deposit_made': False,
   'done': 1,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'hard': 1,
   'high': 1,
   'honor': 1,
   'identity_verified': False,
   'let': 1,
   'need': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'promis': 1,
   'reliabl': 1,
   'school': 1,
   'took': 1,
   'way': 1,
   'worker': 1,
   'year': 1},
  'F'),
 ({"''": 1,
   "'s": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'l',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '``': 1,
   'also': 1,
   'avail': 1,
   'binghamton': 2,
   'blue': 1,
   'book': 1,
   'creativ': 1,
   'degre': 1,
   'deposit_made': False,
   'director': 1,
   'distinct': 1,
   'editori': 1,
   'email_verified': True,
   'english': 1,
   'experi': 1,
   'facebook_connected': False,
   'fiction': 1,
   'first': 1,
   'graduat': 1,
   'identity_verified': False,
   'layout': 1,
   'payment_verified': False,
   'phone_verified': False,
   'poem': 1,
   'poetri': 1,
   'profile_complete': True,
   'program': 1,
   'proofread': 1,
   'publish': 2,
   'recent': 1,
   'review': 2,
   'sam': 2,
   'scholar': 1,
   'univers': 1,
   'work': 2,
   'write': 2},
  'M'),
 ({"'ve": 1,
   '15': 1,
   '2.0': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 't',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'articl': 2,
   'blog': 2,
   'bookmark': 1,
   'build': 1,
   'builder': 2,
   'comment': 1,
   'creation': 1,
   'deposit_made': True,
   'directori': 3,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'first': 1,
   'guarante': 1,
   'high': 1,
   'identity_verified': False,
   'includ': 1,
   'increas': 2,
   'link': 3,
   'list': 1,
   'manual': 1,
   'organ': 1,
   'page': 1,
   'payment_verified': True,
   'phone_verified': False,
   'press': 2,
   'profile_complete': True,
   'qualiti': 1,
   'relat': 1,
   'releas': 2,
   'serp': 1,
   'set': 1,
   'skill': 1,
   'social': 1,
   'submiss': 4,
   'team': 1,
   'traffic': 1,
   'train': 1,
   'video': 1,
   'web': 2,
   'websit': 2,
   'well': 1,
   'work': 1,
   'write': 2},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'artist': 1,
   'bright': 1,
   'brochur': 1,
   'busi': 1,
   'card': 1,
   'cover': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'edit': 1,
   'email_verified': True,
   'etc': 1,
   'experi': 1,
   'facebook_connected': False,
   'graphic': 1,
   'i\\xe2\\u20ac\\u2122m': 1,
   'idea': 1,
   'identity_verified': False,
   'illustr': 1,
   'logo': 1,
   'love': 1,
   'one': 1,
   'origin': 2,
   'pattern': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'photographi': 2,
   'profile_complete': True,
   'qualif': 1,
   'street': 1,
   'strength': 1},
  'F'),
 ({"'m": 1,
   "'ve": 1,
   '3d': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'r',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'air': 1,
   'also': 1,
   'art': 1,
   'belgrad': 1,
   'canada': 1,
   'client': 1,
   'club': 1,
   'combin': 1,
   'creat': 1,
   'day': 1,
   'deposit_made': False,
   'design': 1,
   'director': 1,
   'email_verified': True,
   'enjoy': 1,
   'everi': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'flash/actionscript': 1,
   'graphic': 1,
   'i\\xe2\\u20ac\\u2122v': 2,
   'identity_verified': False,
   'interact': 2,
   'knowledg': 1,
   'last': 1,
   'learn': 1,
   'like': 2,
   'live': 1,
   'lot': 1,
   'make': 1,
   'memor': 1,
   'motion': 1,
   'name': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'proudli': 1,
   'pursu': 1,
   'rang': 1,
   'realli': 1,
   'serbia': 1,
   'serv': 1,
   'singl': 1,
   'someth': 2,
   'year': 1},
  'M'),
 ({'11g': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'access': 1,
   'also': 1,
   'analysi': 1,
   'area': 1,
   'asp.net': 1,
   'auto': 1,
   'autom': 1,
   'base': 1,
   'bi': 1,
   'busi': 1,
   'compet': 1,
   'daili': 1,
   'dashboard': 1,
   'data': 1,
   'databas': 1,
   'deposit_made': False,
   'dhaka': 1,
   'divis': 1,
   'edit': 1,
   'email_verified': True,
   'enterpris': 1,
   'etc': 2,
   'exam': 1,
   'excel': 2,
   'exchang': 1,
   'facebook_connected': False,
   'flash': 1,
   'html': 1,
   'identity_verified': False,
   'im': 1,
   'includ': 1,
   'intellig': 1,
   'map': 1,
   'market': 1,
   'minitab': 1,
   'modul': 1,
   'ms': 1,
   'mysql': 1,
   'obie': 1,
   'oracl': 2,
   'payment_verified': False,
   'pharmaceut': 1,
   'phone_verified': True,
   'php': 1,
   'product': 1,
   'profile_complete': True,
   'project': 1,
   'qc': 1,
   'qlikview': 1,
   'server': 1,
   'sql': 1,
   'stock': 1,
   'test': 1,
   'tool': 2,
   'trade': 1,
   'web': 1,
   'work': 1},
  'M'),
 ({"'s": 1,
   '2': 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'r',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'anyth': 1,
   'believ': 1,
   'client': 1,
   'complet': 1,
   'deposit_made': True,
   'develop': 1,
   'effort': 1,
   'email_verified': True,
   'experi': 2,
   'facebook_connected': True,
   'identity_verified': True,
   'imposs': 1,
   'job': 1,
   'key': 1,
   'make': 1,
   "n't": 1,
   'need': 2,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'program': 1,
   'proper': 1,
   'satisfactori': 1,
   'seven': 1,
   'start': 1,
   'understand': 1,
   'want': 1,
   'web': 1,
   'work': 2,
   'year': 2},
  'M'),
 ({'13': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'm',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'attorney': 1,
   'bar': 1,
   'california': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'hire': 1,
   'identity_verified': False,
   'job': 1,
   'member': 1,
   'offic': 1,
   'patent': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'readi': 1,
   'regist': 1,
   'start': 1,
   'trademark': 1,
   'u.s.': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'18th': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'u',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   '\\t\\t': 1,
   '\\t\\t\\t': 1,
   'abil': 1,
   'achiev': 1,
   'administr': 1,
   'april': 1,
   'art': 1,
   'associ': 1,
   'basic': 1,
   'basis.\\xe2\\u20ac\\xa2\\twork': 2,
   'board': 1,
   'book': 1,
   'bottom': 1,
   'career': 1,
   'centr': 1,
   'certifi': 1,
   'challeng': 1,
   'cisco': 1,
   'civil': 2,
   'colleg': 1,
   'comput': 3,
   'consum': 1,
   'contract': 3,
   'cricket': 1,
   'critic': 1,
   'deliv': 1,
   'depart': 2,
   'deposit_made': False,
   'diploma': 1,
   'e': 2,
   'educ': 2,
   'email_verified': True,
   'engin': 1,
   'environ': 1,
   'etc': 1,
   'facebook_connected': False,
   'faculti': 1,
   'focu': 1,
   'ga': 3,
   'game': 1,
   'govt': 2,
   'growth': 1,
   'gulberg-iii': 4,
   'h': 2,
   'hardwar': 1,
   'high': 1,
   'hous': 1,
   'identity_verified': False,
   'improv': 1,
   'intermedi': 1,
   'lahor': 4,
   'limit': 3,
   'line': 3,
   'maintain': 1,
   'mission': 1,
   'motiv': 1,
   'movi': 1,
   'muslim': 1,
   'n': 1,
   'nagar': 1,
   'name': 1,
   'network': 1,
   'no.2': 1,
   'northern': 3,
   'oper': 2,
   'organ': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'pipelin': 3,
   'profile_complete': True,
   'project': 1,
   'prospect': 1,
   'reput': 1,
   'result': 1,
   'road': 3,
   'scale': 1,
   'school': 1,
   'scienc': 1,
   'secondari': 1,
   'serv': 1,
   'servic': 1,
   'singh': 1,
   'sui': 3,
   'superior': 1,
   'system': 1,
   'truli': 1,
   'want': 1,
   'z': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'n',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'adept': 1,
   'advertis': 1,
   'also': 2,
   'artwork': 1,
   'aspect': 1,
   'busi': 1,
   'career': 1,
   'chanc': 1,
   'collabor': 2,
   'compani': 1,
   'creativ': 2,
   'deposit_made': False,
   'design': 3,
   'develop': 1,
   'display': 1,
   'email_verified': True,
   'environ': 1,
   'experi': 1,
   'extrem': 1,
   'facebook_connected': True,
   'fast-pac': 1,
   'fit': 1,
   'focus': 2,
   'get': 1,
   'graphic': 3,
   'great': 1,
   'heavi': 1,
   'help': 1,
   'highli': 2,
   'hike': 1,
   'hobbi': 2,
   'ident': 1,
   'identity_verified': False,
   'intellig': 1,
   'jone': 1,
   'keep': 1,
   'last': 1,
   'life': 2,
   'like': 1,
   'major': 1,
   'manag': 2,
   'minut': 1,
   'much': 1,
   'multi-tal': 1,
   'natur': 1,
   'payment_verified': False,
   'peter': 1,
   'phone_verified': False,
   'possibl': 1,
   'prepar': 1,
   'pressur': 1,
   'profile_complete': True,
   'relationship': 1,
   'run': 1,
   'show': 1,
   'shown': 1,
   'skill': 1,
   'snowboard': 1,
   'soccer': 1,
   'sort': 1,
   'swim': 1,
   'though': 1,
   'thought': 1,
   'thrive': 1,
   'tri': 1,
   'two': 1,
   'well': 2,
   'work': 1,
   'workload': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='2'>,
   'First': 'b',
   'Last': '3',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'corpor': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'retir': 1,
   'speaker': 1},
  'M'),
 ({'...': 1,
   '3': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'n',
   'Last': '3',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'year': 1},
  'M'),
 ({"'m": 2,
   '26': 1,
   '3': 1,
   '4th': 1,
   '5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'l',
   'Last': '8',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'alway': 1,
   'area': 1,
   'challeng': 1,
   'colleg': 1,
   'compani': 1,
   'current': 1,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'evolv': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'graphic': 1,
   'identity_verified': False,
   'improv': 1,
   'look': 1,
   'municip': 1,
   'new': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'spare': 1,
   'still': 1,
   'time': 1,
   'transpar': 1,
   'web': 2,
   'work': 4,
   'year': 3},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='1'>,
   'First': 'P',
   'Last': '1',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'advisori': 1,
   'assess': 1,
   'audit': 1,
   'busi': 1,
   'demograph': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'enhanc': 1,
   'facebook_connected': False,
   'govern': 1,
   'grant': 1,
   'gsa': 1,
   'identity_verified': False,
   'manag': 2,
   'market': 1,
   'need': 1,
   'network': 1,
   'non': 1,
   'oper': 1,
   'organiz': 1,
   'payment_verified': False,
   'phone_verified': False,
   'plan': 1,
   'procur': 1,
   'profile_complete': True,
   'profit': 1,
   'research': 1,
   'schedul': 1,
   'social': 1,
   'technolog': 1,
   'valu': 1,
   'write': 1},
  'M'),
 ({'...': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='8'>,
   'First': 'a',
   'Last': '8',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'help': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'program': 1},
  'M'),
 ({'.thank': 1,
   '4': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='1'>,
   'First': 'p',
   'Last': '9',
   'Numchar': 6,
   'Vowel': None,
   'appl': 1,
   'applic': 1,
   'deposit_made': False,
   'developer.i': 1,
   'email_verified': True,
   'experi': 2,
   'facebook_connected': False,
   'hi': 1,
   'identity_verified': False,
   'iphon': 1,
   'iphone/ipad': 1,
   'mobil': 1,
   'payment_verified': True,
   'phone_verified': True,
   'platform': 1,
   'prem': 1,
   'profile_complete': True,
   'regard': 1,
   'sound': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"'s": 1,
   '10': 2,
   '24-hour': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
   'First': 'e',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'algorithm': 2,
   'appli': 1,
   'articl': 1,
   'believ': 2,
   'best': 1,
   'bird': 1,
   'blog': 1,
   'book': 1,
   'build': 1,
   'calcul': 1,
   'client': 2,
   'content': 1,
   'day': 1,
   'deposit_made': True,
   'email_verified': True,
   'engin': 1,
   'ensur': 1,
   'ethic': 1,
   'experi': 2,
   'experienc': 1,
   'facebook_connected': True,
   'field': 2,
   'free': 1,
   'get': 2,
   'goal': 1,
   'googl': 3,
   'guarante': 2,
   'highest': 1,
   'honest': 1,
   'identity_verified': True,
   'improv': 1,
   'internet': 1,
   'learn': 1,
   'link': 1,
   'loan': 1,
   'lot': 1,
   'market': 1,
   'method': 1,
   'offer': 1,
   'open': 1,
   'optim': 1,
   'packag': 1,
   'panda': 1,
   'pay': 1,
   'payment_verified': True,
   'penguin': 1,
   'phone_verified': True,
   'possibl': 1,
   'pride': 1,
   'profil': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 1,
   'rank': 1,
   'realist': 1,
   'repli': 1,
   'result': 1,
   'revis': 1,
   'search': 1,
   'seo': 3,
   'servic': 1,
   'site': 1,
   'strateg': 1,
   'support': 1,
   'traffic': 1,
   'understand': 2,
   'unmatch': 1,
   'us': 1,
   'websit': 1,
   'world': 1,
   'write': 1,
   'year': 2},
  'M'),
 ({"'m": 1,
   '0day': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'f',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'academ': 1,
   'alvi.curr': 1,
   'aptitud': 1,
   'away': 1,
   'best.thank': 1,
   'coder': 1,
   'defin': 1,
   'deposit_made': False,
   'develop': 1,
   'domain.em': 1,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'financi': 1,
   'hand': 1,
   'hard': 1,
   'heart': 1,
   'identity_verified': False,
   'interest': 1,
   'junaid': 1,
   'level.besid': 1,
   'like': 1,
   'manageri': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': True,
   'profess': 1,
   'profile_complete': True,
   'qualif': 1,
   'r00t': 1,
   'revers': 1,
   'sector': 1,
   'secur': 1,
   'softwar': 1,
   'soul': 1,
   'teach': 1,
   'tech-geek': 1,
   'way': 1,
   'web': 2,
   'whitehat': 1,
   'word': 1,
   'yousaf': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'z',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'administr': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'network': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'shoot': 1,
   'troubl': 1,
   'web': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='8'>,
   'First': 's',
   'Last': '7',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'absolut': 1,
   'activ': 1,
   'also': 1,
   'answer': 1,
   'area': 1,
   'automobil': 1,
   'best': 1,
   'card': 1,
   'children': 1,
   'class': 1,
   'client': 1,
   'complaint': 1,
   'comput': 1,
   'coordin': 1,
   'cost': 1,
   'credit': 1,
   'custom': 3,
   'dedic': 1,
   'deliveri': 1,
   'deposit_made': False,
   'driver': 1,
   'duti': 1,
   'email_verified': True,
   'employ': 1,
   'enjoy': 1,
   'facebook_connected': False,
   'fast': 1,
   'firm': 1,
   'fleet': 1,
   'focus': 1,
   'fuel': 1,
   'handl': 1,
   'homeown': 1,
   'identity_verified': False,
   'illinoi': 1,
   'includ': 1,
   'issu': 1,
   'job': 1,
   'keep': 1,
   'learner': 1,
   'local': 1,
   'loyal': 1,
   'major': 1,
   'manag': 1,
   'management.i': 1,
   'manufactur': 1,
   'marri': 1,
   'music': 1,
   'numer': 1,
   'old': 1,
   'order': 1,
   'owner': 1,
   'payment_verified': False,
   'payrol': 1,
   'phone': 1,
   'phone_verified': False,
   'present': 1,
   'process': 1,
   'profession': 1,
   'profile_complete': True,
   'provid': 1,
   'read': 1,
   'report': 1,
   'repres': 1,
   'self-taught': 1,
   'seminar': 1,
   'servic': 2,
   'strive': 1,
   'submit': 1,
   'supervis': 1,
   'three': 2,
   'time': 1,
   'write': 1,
   'year': 1},
  'M'),
 ({'14+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'c',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'abl': 1,
   'adapt': 1,
   'advanc': 1,
   'also': 1,
   'amazon': 1,
   'applications-': 1,
   'assur': 1,
   'base': 1,
   'build': 1,
   'busi': 1,
   'cc': 1,
   'complet': 1,
   'contact': 1,
   'convert': 1,
   'databas': 2,
   'dedic': 1,
   'deploy': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 2,
   'digit': 1,
   'discuss': 1,
   'email_verified': True,
   'english': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': True,
   'favorit': 1,
   'flexibl': 1,
   'fluentli': 1,
   'follow': 1,
   'front-end': 1,
   'full-stack': 1,
   'hard': 1,
   'heavili': 1,
   'idea': 1,
   'identity_verified': False,
   'innov': 2,
   'integration-': 1,
   'intern': 1,
   'involv': 1,
   'knowledg': 1,
   'laravel': 2,
   'lead': 1,
   'local': 1,
   'manag': 2,
   'managementi': 1,
   'ocean': 1,
   'offer': 1,
   'organ': 1,
   'payment_verified': False,
   'pci': 1,
   'phone': 1,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'profit': 1,
   'project': 1,
   'qualiti': 1,
   'requir': 1,
   'server': 2,
   'servic': 1,
   'skype': 1,
   'solutions.i': 1,
   'speak': 1,
   'stabl': 1,
   'stakehold': 1,
   'start': 1,
   'sure': 1,
   'team': 1,
   'technolog': 1,
   'test': 1,
   'till': 1,
   'time': 1,
   'use': 1,
   'user': 1,
   'vp': 1,
   'web': 3,
   'work': 2,
   'years\\xe2\\u20ac\\u2122': 1},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'e',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='e'>,
   'also': 1,
   'articl': 1,
   'c': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'futur': 1,
   'identity_verified': False,
   'interest': 1,
   'languag': 1,
   'like': 1,
   'payment_verified': True,
   'phone_verified': False,
   'process': 1,
   'profile_complete': True,
   'program': 1,
   'survey': 1,
   'take': 1,
   'write': 1},
  'M'),
 ({"'m": 1,
   '100': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'p',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'anyon': 1,
   'commit': 1,
   'creat': 1,
   'deposit_made': True,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'fantasi': 1,
   'fiction': 1,
   'full': 1,
   'good': 1,
   'hi': 1,
   'identity_verified': False,
   'imagin': 1,
   'import': 1,
   'kid': 1,
   'look': 1,
   'offer': 1,
   'particularli': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'provid': 1,
   'satisfact': 1,
   'servic': 1,
   'short': 1,
   'spanish': 1,
   'stori': 4,
   'teach': 1,
   'uniqu': 1,
   'univers': 1,
   'valu': 1,
   'world': 1,
   'write': 3,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'i',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abl': 1,
   'adapt': 1,
   'alreadi': 1,
   'also': 1,
   'alway': 1,
   'care': 1,
   'commerci': 1,
   'degre': 1,
   'deposit_made': False,
   'detail': 1,
   'differ': 1,
   'eas': 1,
   'email_verified': True,
   'english': 1,
   'experi': 1,
   'facebook_connected': False,
   'fast': 1,
   'graduat': 1,
   'greatest': 1,
   'hire': 1,
   'i\\xe2\\u20ac\\u2122m': 2,
   'identity_verified': False,
   'it\\xe2\\u20ac\\u2122': 1,
   'italian': 1,
   'job': 2,
   'journal': 1,
   'know': 1,
   'languag': 1,
   'languages.i': 1,
   'learner': 1,
   'literari': 1,
   'love': 1,
   'mani': 1,
   'medic': 1,
   'new': 1,
   'one': 1,
   'organ': 1,
   'passion': 2,
   'payment_verified': False,
   'philolog': 1,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'respons': 1,
   'sinc': 1,
   'situat': 1,
   'spanish': 1,
   'speak': 1,
   'special': 2,
   'spoken': 1,
   'studi': 1,
   'teach': 1,
   'technic': 1,
   'tourism': 1,
   'translat': 5,
   'turin': 1,
   'univers': 1,
   'word': 1,
   'work': 1,
   'written': 1},
  'F'),
 ({'10+': 1,
   '100': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'S',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'abl': 1,
   'adapt': 1,
   'alway': 1,
   'amazon': 1,
   'amongst': 1,
   'angularj': 1,
   'app': 1,
   'asp': 1,
   'aw': 1,
   'aweb': 1,
   'azur': 1,
   'best': 1,
   'bootstrap': 1,
   'busi': 1,
   'c': 1,
   'cakephp': 1,
   'cart': 1,
   'client': 1,
   'cm': 1,
   'code': 1,
   'codeignitor': 1,
   'constant': 1,
   'core': 1,
   'crm': 2,
   'custom': 1,
   'deposit_made': True,
   'develop': 2,
   'drupal': 1,
   'email_verified': True,
   'ensur': 1,
   'experi': 1,
   'facebook_connected': False,
   'fast': 1,
   'freelanc': 1,
   'fund': 1,
   'futur': 1,
   'identity_verified': True,
   'insist': 1,
   'joomla': 1,
   'laravel': 1,
   'lot': 1,
   'magento': 1,
   'mani': 1,
   'microsoft': 1,
   'mobil': 1,
   'mongodb': 1,
   'mssql': 1,
   'mysql': 1,
   'need': 1,
   'nodej': 1,
   'optim': 1,
   'other': 1,
   'pace': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'project': 2,
   'proof': 1,
   'rais': 1,
   'rate': 1,
   'se': 1,
   'secur': 1,
   'servic': 1,
   'shopifi': 1,
   'site': 1,
   'suggest': 1,
   'support': 1,
   'technolog': 1,
   'top': 2,
   'trend': 1,
   'understand': 1,
   'web': 2,
   'webservic': 2,
   'woo': 1,
   'wordpress': 1,
   'year': 1},
  'M'),
 ({'...': 1,
   '25': 1,
   'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'n',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'care': 1,
   'client': 1,
   'deposit_made': False,
   'develop': 2,
   'differ': 1,
   'email_verified': True,
   'facebook_connected': True,
   'field': 1,
   'identity_verified': False,
   'need': 1,
   'payment_verified': False,
   'phone_verified': False,
   'platform': 1,
   'profile_complete': True,
   'softwar': 3,
   'take': 1,
   'tool': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(1, 2), match='M'>,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
   'First': 'i',
   'Last': '0',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'assist': 1,
   'busi': 1,
   'deposit_made': True,
   'desir': 1,
   'email_verified': True,
   'facebook_connected': False,
   'half': 1,
   'help': 1,
   'identity_verified': False,
   'internet': 2,
   'leader': 1,
   'learn': 1,
   'make': 1,
   'market': 2,
   'money': 1,
   'other': 1,
   'past': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'studi': 1,
   'top': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'deposit_made': False,
   'dilig': 1,
   'email_verified': True,
   'facebook_connected': False,
   'fast': 2,
   'friendli': 1,
   'great': 1,
   'honest': 2,
   'identity_verified': False,
   'listen': 1,
   'pace': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pride': 1,
   'profile_complete': True,
   'provid': 1,
   'reliabl': 1,
   'servic': 1,
   'skill': 2,
   'take': 1,
   'work': 1,
   'worker': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'come': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'new': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'soon': 1,
   'websit': 1},
  'M'),
 ({"'m": 2,
   "'s": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='4'>,
   'First': 'a',
   'Last': '1',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'activ': 3,
   'ari': 1,
   'bachelor': 1,
   'bandung': 1,
   'broadcast': 1,
   'christian': 1,
   'current': 1,
   'degre': 1,
   'deposit_made': True,
   'email_verified': True,
   'english': 2,
   'facebook_connected': False,
   'identity_verified': False,
   'indonesia': 2,
   'indonesiami': 1,
   'jakarta': 2,
   'java': 1,
   'languag': 1,
   'literatur': 1,
   'live': 1,
   'maranatha': 1,
   'media': 1,
   'mintarejanow': 1,
   'name': 1,
   'nation': 1,
   'news': 2,
   'one': 1,
   'payment_verified': True,
   'phone_verified': True,
   'produc': 1,
   'profile_complete': True,
   'right': 1,
   'skill': 1,
   'still': 1,
   'sudana': 1,
   'sundanes': 1,
   'univers': 1,
   'west': 1,
   'work': 1},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='1'>,
   'First': 'c',
   'Last': '4',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abil': 1,
   'aim': 1,
   'alway': 1,
   'client': 2,
   'code': 1,
   'custom': 1,
   'decent': 1,
   'deposit_made': True,
   'design': 2,
   'email_verified': True,
   'etc.i': 1,
   'exact': 1,
   'exactli': 1,
   'experi': 1,
   'expert': 1,
   'facebook_connected': False,
   'find': 1,
   'flash': 1,
   'html5/css3': 1,
   'identity_verified': False,
   'javascript': 1,
   'joomla': 1,
   'jqueri': 1,
   'kind': 1,
   'knowledg': 1,
   'like': 1,
   'look': 1,
   'mostli': 1,
   'payment_verified': True,
   'phone_verified': True,
   'photoshop': 1,
   'php': 1,
   'pleas': 1,
   'practic': 1,
   'profile_complete': True,
   'provid': 2,
   'satisfact': 1,
   'seo': 1,
   'strive': 1,
   'want': 1,
   'web2.0': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'b',
   'Last': '0',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'agent': 1,
   'applic': 1,
   'busi': 1,
   'call': 3,
   'center': 3,
   'comput': 2,
   'custom': 1,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'experi': 2,
   'extens': 1,
   'facebook_connected': False,
   'govern': 1,
   'hr': 1,
   'identity_verified': False,
   'industri': 3,
   'level': 1,
   'manag': 3,
   'market': 1,
   'occupi': 1,
   'outsid': 1,
   'payment_verified': False,
   'phone_verified': False,
   'posit': 3,
   'profile_complete': True,
   'sector': 1,
   'servic': 1,
   'supervisori': 1,
   'technic': 1,
   'telco': 1,
   'train': 1,
   'wide': 1,
   'work': 1},
  'M'),
 ({'3': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 't',
   'Last': '6',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'analysi': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'ms': 1,
   'payment_verified': False,
   'phone_verified': False,
   'prepar': 1,
   'profile_complete': True,
   'report': 1,
   'technic': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'class': 1,
   'crm': 1,
   'custom': 2,
   'dedic': 1,
   'deliv': 1,
   'deposit_made': True,
   'desktop': 1,
   'develop': 1,
   'dynam': 1,
   'email_verified': True,
   'establish': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'game': 1,
   'goal': 1,
   'identity_verified': False,
   'industri': 1,
   'inform': 1,
   'infotech': 3,
   'kataria': 2,
   'meet': 1,
   'mobil': 1,
   'payment_verified': False,
   'pda': 1,
   'phone_verified': True,
   'platform': 2,
   'posses': 1,
   'product': 1,
   'profile_complete': True,
   'rim': 1,
   'satisfact': 1,
   'softwar': 1,
   'solut': 2,
   'strive': 1,
   'symbian': 1,
   'technolog': 1,
   'ultim': 1,
   'well': 2,
   'window': 1,
   'work': 2,
   'workforc': 1,
   'world': 1,
   'young': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='1'>,
   'First': 'J',
   'Last': '3',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'identity_verified': False,
   'part': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'softwar': 1,
   'time': 1},
  'M'),
 ({"'m": 1,
   '...': 3,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'x',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'area': 1,
   'best': 1,
   'deposit_made': False,
   'email_verified': True,
   'eventhough': 1,
   'exist': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'junior': 1,
   'na': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'wan': 1,
   'world': 1},
  'M'),
 ({'/asp.net': 1,
   '10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'c',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'deposit_made': False,
   'elast': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'mongodb': 1,
   'mssql': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'work': 1,
   'year': 1},
  'M'),
 ({"''": 1,
   '400': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'v',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   '``': 1,
   'also': 1,
   'and/or': 1,
   'attitud': 1,
   'avail': 2,
   'client': 5,
   'complet': 1,
   'cost': 1,
   'decad': 1,
   'demand': 1,
   'deploy': 1,
   'deposit_made': False,
   'design': 3,
   'develop': 4,
   'devot': 1,
   'differ': 1,
   'direct': 1,
   'email_verified': True,
   'extens': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'friend': 1,
   'graphic': 2,
   'hundr': 1,
   'idea': 1,
   'identity_verified': False,
   'individu': 1,
   'inform': 1,
   'medium': 1,
   'need': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'portfolio': 2,
   'prefer': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 3,
   'qa': 1,
   'reduc': 1,
   'scalabl': 1,
   'servic': 1,
   'skype': 1,
   'small': 1,
   'solut': 1,
   'spend': 1,
   'support': 1,
   'task': 1,
   'thu': 1,
   'time': 1,
   'top': 1,
   'toward': 1,
   'web': 2,
   'work': 2,
   'world': 1},
  'M'),
 ({'8': 1,
   '95': 1,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'l',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'accuraci': 1,
   'also': 1,
   'convers': 1,
   'data': 2,
   'deposit_made': False,
   'email_verified': True,
   'entri': 1,
   'experi': 1,
   'facebook_connected': True,
   'first': 1,
   'freelanc': 1,
   'get': 1,
   'hello': 1,
   'hemal': 2,
   'hope': 1,
   'identity_verified': False,
   'job': 2,
   'last': 1,
   'lathia': 2,
   'long': 1,
   'make': 1,
   "n't": 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'promis': 1,
   'relat': 1,
   'sir': 1,
   'want': 2,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'android': 1,
   'applic': 1,
   'build': 1,
   'deposit_made': True,
   'devic': 1,
   'email_verified': True,
   'facebook_connected': True,
   'help': 1,
   'identity_verified': False,
   'io': 1,
   'less': 1,
   'mobil': 1,
   'need': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'programm': 1,
   'read': 1,
   'talent': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'o',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'admin': 1,
   'cpanel': 1,
   'de': 1,
   'deposit_made': False,
   'email_verified': True,
   'en': 1,
   'espa\\xc3\\xb1ol': 1,
   'facebook_connected': False,
   'gamer': 1,
   'geek': 1,
   'identity_verified': True,
   'joomla': 1,
   'nerd': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php-mysql': 1,
   'profile_complete': True,
   'server': 1,
   'twitter': 1},
  'M'),
 ({'2checkout': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'h',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   'amazon': 1,
   'analyt': 1,
   'api': 1,
   'app': 1,
   'author': 1,
   'bootstrap': 1,
   'cart-': 1,
   'client': 1,
   'cm': 1,
   'code': 1,
   'codeignit': 1,
   'commerc': 1,
   'css': 1,
   'deposit_made': True,
   'design': 1,
   'designi': 1,
   'develop': 5,
   'development.mi': 1,
   'dot': 1,
   'ecommerc': 2,
   'email_verified': True,
   'everyth': 1,
   'exact': 1,
   'facebook_connected': True,
   'first': 1,
   'follow': 1,
   'framework': 1,
   'googl': 1,
   'graphic': 1,
   'html5': 1,
   'identity_verified': True,
   'javascript': 1,
   'joomla-': 1,
   'jqueri': 1,
   'json': 1,
   'knowledg': 1,
   'like': 1,
   'mani': 2,
   'map': 1,
   'match': 1,
   'mysql': 1,
   'net': 1,
   'os': 1,
   'payment': 1,
   'payment_verified': True,
   'paypal': 1,
   'phone_verified': True,
   'php': 1,
   'phpbb': 1,
   'profile_complete': True,
   'readi': 1,
   'requir': 1,
   'satisfact': 1,
   'servic': 1,
   'smarti': 1,
   'vision': 1,
   'web': 2,
   'websit': 2,
   'wide': 1,
   'wordpress': 1,
   'work': 2,
   'wp': 1,
   'xml': 1,
   'zen': 1,
   'zencart': 1},
  'M'),
 ({'12': 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'ba': 1,
   'certifi': 1,
   'deposit_made': True,
   'email_verified': True,
   'english': 2,
   'esl': 1,
   'experi': 2,
   'facebook_connected': False,
   'field': 1,
   'greek': 1,
   'identity_verified': False,
   'languag': 1,
   'linguist': 1,
   'literatur': 1,
   'member': 1,
   'nativ': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'proofread': 1,
   'subtitl': 1,
   'teacher': 1,
   'translat': 2,
   'wide': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': True,
   'design': 1,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True},
  'M'),
 ({"''": 1,
   '2008.': 1,
   'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'm',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   '``': 1,
   'activ': 1,
   'art': 2,
   'artist': 1,
   'bachelor': 1,
   'bascom': 3,
   'blog': 1,
   'blogger': 1,
   'contribut': 1,
   'deposit_made': True,
   'editor': 2,
   'email_verified': True,
   'facebook_connected': True,
   'freelanc': 1,
   'histori': 1,
   'hold': 1,
   'identity_verified': False,
   'louisvil': 1,
   'magazin': 1,
   'morehead': 1,
   'payment_verified': True,
   'phone_verified': False,
   'photograph': 1,
   'pink': 1,
   'poet': 1,
   'profession': 1,
   'profile_complete': True,
   'sinc': 1,
   'state': 1,
   'univers': 2,
   'visual': 1,
   'well': 1,
   'writer': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'aim': 1,
   'and/or': 1,
   'best': 1,
   'build': 2,
   'busi': 1,
   'cost': 1,
   'decreas': 1,
   'deposit_made': False,
   'effect': 1,
   'email_verified': True,
   'facebook_connected': False,
   'get': 1,
   'identity_verified': False,
   'increas': 1,
   'job': 1,
   'manner': 1,
   'market': 1,
   'need': 1,
   'payment_verified': False,
   'phone_verified': False,
   'product': 1,
   'profile_complete': True,
   'revenu': 1,
   'softwar': 1,
   'suit': 1,
   'time': 1},
  'M'),
 ({'...': 1,
   '7day': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'avail': 1,
   'broadband': 1,
   'connect': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': True,
   'freelanc': 1,
   'got': 1,
   'identity_verified': False,
   'new': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'week': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'base': 1,
   'deposit_made': False,
   'done': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'knowledg': 1,
   'larg': 1,
   'm.b.a': 1,
   'one': 1,
   'payment_verified': False,
   'phone_verified': False,
   'presid': 1,
   'privat': 1,
   'profile_complete': True,
   'research': 1,
   'sector': 1,
   'top': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'area': 1,
   'deposit_made': False,
   'email_verified': True,
   'employ': 1,
   'experi': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'great': 1,
   'hire': 1,
   'identity_verified': False,
   'job': 1,
   'mani': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'readi': 1,
   'today': 1,
   'work': 1},
  'M'),
 ({'8': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='0'>,
   'First': 'm',
   'Last': 't',
   'Numchar': 6,
   'Vowel': None,
   'app': 3,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'metro': 1,
   'payment_verified': True,
   'phone': 1,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'ror': 1,
   'rubi': 1,
   'window': 2},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='3'>,
   'First': 's',
   'Last': '8',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abap': 1,
   'alreadi': 1,
   'bi': 1,
   'crm': 1,
   'cycl': 1,
   'deposit_made': False,
   'email_verified': True,
   'etc': 1,
   'experienc': 1,
   'facebook_connected': False,
   'full': 1,
   'hi': 1,
   'identity_verified': False,
   'implement': 2,
   'like': 1,
   'mainli': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'project': 2,
   'sap': 1,
   'sever': 1,
   'technolog': 1,
   'work': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 't',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'orbit': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'e',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'deadlin': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'given': 1,
   'identity_verified': False,
   'journalist': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'within': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 't',
   'Last': '3',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'alreadi': 1,
   'announc': 1,
   'art': 1,
   'band': 1,
   'california': 1,
   'check': 1,
   'citi': 1,
   'come': 1,
   'cool': 2,
   'creat': 1,
   'deposit_made': False,
   'dj': 1,
   'done': 1,
   'email_verified': True,
   'everybodi': 1,
   'facebook_connected': False,
   'find': 3,
   'go': 1,
   'graphic': 1,
   'hope': 1,
   'identity_verified': False,
   'jack': 1,
   'keep': 1,
   'list': 1,
   'local': 3,
   'mayb': 1,
   'michigan': 1,
   'music': 2,
   'myspac': 1,
   'night': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'put': 1,
   'radio': 1,
   'right': 1,
   'search': 1,
   'see': 1,
   'show': 1,
   'someth': 2,
   'start': 2,
   'state': 1,
   'station': 1,
   'tell': 1,
   'that': 1,
   'unit': 1,
   'upcom': 1,
   'us': 1,
   'want': 2,
   'week': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'x',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'cheap': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'fast': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'qualit': 1},
  'M'),
 ({"'ll": 1,
   "'m": 1,
   '2': 1,
   '3d': 3,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'ago': 1,
   'almost': 1,
   'also': 2,
   'author': 1,
   'autodesk': 2,
   'begin': 1,
   'cad': 2,
   'cnc': 1,
   'construct': 2,
   'cost-effect': 1,
   'data': 1,
   'decad': 1,
   'deposit_made': False,
   'design': 3,
   'desir': 1,
   'directli': 1,
   'easili': 1,
   'email_verified': True,
   'ensur': 1,
   'experi': 2,
   'facebook_connected': True,
   'glad': 1,
   'help': 1,
   'high-end': 1,
   'idea': 1,
   'identity_verified': False,
   'in-hous': 1,
   'interior': 1,
   'inventor': 1,
   'latest': 1,
   'machin': 1,
   'machineri': 1,
   'make': 2,
   'manufactur': 1,
   'maximum': 1,
   'mention': 1,
   'metal': 2,
   'model': 2,
   'modern': 1,
   'modifi': 1,
   'output': 2,
   'payment_verified': True,
   'phone_verified': False,
   'possibl': 1,
   'print': 2,
   'produc': 2,
   'profile_complete': True,
   'real': 1,
   'releas': 1,
   'reliabl': 1,
   'sens': 1,
   'sheet': 1,
   'shortest': 1,
   'softwar': 1,
   'someth': 1,
   'specif': 1,
   'teach': 1,
   'techniqu': 1,
   'toward': 1,
   'turn': 2,
   'use': 2,
   'virtual': 1,
   'world.i': 1,
   'worth': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'advanc': 1,
   'amaz': 1,
   'and/or': 1,
   'api': 1,
   'brand': 1,
   'brochur': 1,
   'busi': 1,
   'code': 1,
   'complet': 1,
   'creat': 2,
   'creativ': 1,
   'custom': 2,
   'deliv': 1,
   'deposit_made': True,
   'design': 3,
   'develop': 2,
   'done': 1,
   'driven': 1,
   'e-commerc': 1,
   'easier': 1,
   'email_verified': True,
   'facebook_connected': False,
   'forum': 1,
   'get': 1,
   'goal': 1,
   'grow': 1,
   'i\\xe2\\u20ac\\u2122l': 1,
   'idea': 1,
   'identity_verified': False,
   'includ': 1,
   'innov': 1,
   'integr': 1,
   'life': 1,
   'like': 1,
   'look': 1,
   'make': 2,
   'market': 1,
   'meet': 1,
   'membership': 1,
   'object': 1,
   'offer': 1,
   'payment_verified': True,
   'phone_verified': True,
   'plugin': 1,
   'post': 1,
   'produc': 1,
   'profile_complete': True,
   'project': 1,
   'proven': 1,
   'requir': 1,
   'result': 1,
   'right': 1,
   'simpl': 1,
   'simplifi': 1,
   'solut': 4,
   'someth': 1,
   'specif': 1,
   'stand': 1,
   'strategi': 1,
   'task': 1,
   'taxonomi': 1,
   'thing': 1,
   'time': 1,
   'type': 1,
   'ultim': 1,
   'uniqu': 1,
   'websit': 3,
   'wordpress': 1,
   'you\\xe2\\u20ac\\u2122d': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'contact': 2,
   'deposit_made': False,
   'detail': 1,
   'email_verified': True,
   'expect': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'me.mi': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'seo': 2,
   'type': 1,
   'u': 1,
   'work': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'b',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'audienc': 1,
   'content': 1,
   'data': 1,
   'deposit_made': True,
   'develop': 1,
   'document': 1,
   'ecommerc': 1,
   'email_verified': True,
   'entri': 1,
   'experienc': 1,
   'facebook_connected': True,
   'focus': 1,
   'html/css': 1,
   'identity_verified': False,
   'manag': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'system': 1,
   'technic': 1,
   'type': 1,
   'websit': 1,
   'will': 2,
   'wordpress': 1,
   'work': 2,
   'write': 1},
  'M'),
 ({'200+': 1,
   '2006\\xe2\\u20ac\\xa2': 2,
   '2009\\xe2\\u20ac\\xa2': 3,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 's',
   'Last': '6',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   '\\xe2\\u20ac\\xa2': 1,
   'administr': 1,
   'applic': 1,
   'associ': 1,
   'autom': 3,
   'automation-': 3,
   'autosi': 3,
   'base': 1,
   'bash': 1,
   'batch': 1,
   'bmc': 2,
   'bourn': 1,
   'c': 1,
   'ca': 1,
   'chef': 3,
   'comput': 1,
   'consult': 6,
   'corpor': 1,
   'cover': 1,
   'cultur': 1,
   'deliveri': 1,
   'deposit_made': False,
   'devop': 2,
   'docker': 2,
   'email_verified': True,
   'facebook_connected': False,
   'follow': 1,
   'identity_verified': False,
   'infrastructur': 1,
   'lean': 1,
   'linux': 2,
   'manag': 1,
   'payment_verified': False,
   'perl': 3,
   'phone_verified': True,
   'profile_complete': True,
   'program': 2,
   'programming-': 1,
   'puppet': 3,
   'rhel': 1,
   'scripting-': 1,
   'shell': 3,
   'sinc': 7,
   'sked': 4,
   'solari': 1,
   'special': 1,
   'sql': 1,
   'system': 1,
   'technologies.-': 1,
   'toward': 1,
   'unix': 2,
   'waae': 2,
   'window': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'contact': 1,
   'deposit_made': False,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'inform': 1,
   'messag': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pleas': 1,
   'profile_complete': True,
   'provid': 1,
   'qualif': 1,
   'regard': 1,
   'via': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'i',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'deposit_made': True,
   'email_verified': True,
   'engin': 1,
   'enjoy': 1,
   'everi': 1,
   'facebook_connected': True,
   'good': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'softwar': 1,
   'time': 1},
  'M'),
 ({'-*': 1,
   '--': 55,
   '10+': 1,
   '8+': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 'n',
   'Last': '0',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'api': 1,
   'back-end': 1,
   'cakephp': 1,
   'cart': 1,
   'chase': 1,
   'checkout': 1,
   'cm': 1,
   'codeignitor': 1,
   'concept': 1,
   'custom': 1,
   'data': 1,
   'demo': 1,
   'deposit_made': False,
   'drupal': 1,
   'email_verified': True,
   'experi': 2,
   'expertis': 4,
   'express': 1,
   'facebook_connected': False,
   'framework': 1,
   'gateway': 2,
   'gb': 1,
   'good': 1,
   'huge': 1,
   'identity_verified': False,
   'instal': 1,
   'integr': 2,
   'knowledg': 1,
   'la': 1,
   'larg': 1,
   'like': 1,
   'link': 1,
   'magento': 1,
   'mysql': 3,
   'object': 1,
   'open': 1,
   'optim': 1,
   'orient': 1,
   'oscommerc': 1,
   'page': 1,
   'parti': 1,
   'payflow': 2,
   'payment': 1,
   'payment_verified': False,
   'paypal': 1,
   'perform': 1,
   'phone_verified': False,
   'php': 2,
   'pro': 1,
   'profile_complete': True,
   'scrap': 2,
   'script': 1,
   'soap': 1,
   'sourc': 1,
   'tabl': 2,
   'third': 1,
   'understand': 1,
   'use': 2,
   'web': 1,
   'websit': 1,
   'wordpess': 1,
   'work': 3,
   'year': 1,
   'zen': 1,
   'zend': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'g',
   'Numchar': 6,
   'Vowel': None,
   'comput': 1,
   'deposit_made': False,
   'electr': 1,
   'email_verified': True,
   'engen': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({"'m": 1,
   '15': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'c',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'creativ': 1,
   'deposit_made': True,
   'email_verified': True,
   'experienc': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'italian': 1,
   'look': 1,
   'market': 2,
   'one': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'right': 1,
   'seo': 1,
   'strategist': 2,
   'web': 2,
   'year': 1},
  'M'),
 ({'--': 62,
   'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'o',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'abil': 1,
   'creativ': 1,
   'css': 1,
   'deposit_made': True,
   'design': 1,
   'digit': 1,
   'directli': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'html': 1,
   'identity_verified': False,
   'illustr': 1,
   'independ': 1,
   'inform': 1,
   'live': 1,
   'nation': 1,
   'offset': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'product': 1,
   'profile_complete': True,
   'provid': 1,
   'separ': 1,
   'servic': 1,
   'skill': 1,
   'video': 1,
   'wordpress': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'm',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'applic': 3,
   'client-serv': 1,
   'custom': 3,
   'databas': 1,
   'deal': 1,
   'deposit_made': True,
   'design': 2,
   'develop': 3,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'internet/intranet': 1,
   'mobil': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'program': 1,
   'project': 1,
   'softwar': 3,
   'special': 1,
   'specif': 1,
   'type': 1,
   'work': 1},
  'M'),
 ({"'s": 1,
   '***': 2,
   '***i': 1,
   '2': 1,
   '20': 1,
   '50': 3,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'Digit': None,
   'First': 'O',
   'Last': 's',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='O'>,
   'accept': 1,
   'addit': 3,
   'agre': 1,
   'also': 3,
   'amount': 2,
   'apach': 1,
   'bad': 1,
   'begin': 1,
   'bid': 3,
   'budget': 1,
   'buyer': 1,
   'c/c++': 1,
   'case': 3,
   'chang': 3,
   'cm': 1,
   'complet': 1,
   'contact': 1,
   'control': 1,
   'cpanel': 1,
   'creload': 1,
   'crm': 1,
   'default': 1,
   'deposit_made': True,
   'discuss': 3,
   'done': 2,
   'e-commerc': 1,
   'either': 1,
   'email_verified': True,
   'escrow': 5,
   'esx': 1,
   'etc': 1,
   'everi': 1,
   'everyth': 2,
   'exactli': 1,
   'except': 1,
   'exchang': 1,
   'expect': 1,
   'experi': 1,
   'expert': 3,
   'facebook_connected': False,
   'follow': 2,
   'free': 1,
   'fund': 1,
   'get': 2,
   'hourli': 1,
   'hyper-v': 1,
   'identity_verified': False,
   'includ': 1,
   'iptabl': 1,
   'job': 3,
   'joomla': 1,
   'know': 1,
   'last': 1,
   'let': 1,
   'linux': 1,
   'local': 1,
   'long': 1,
   'magento': 1,
   'matter': 1,
   'mayb': 1,
   'microsoft': 1,
   'middl': 2,
   'minim': 1,
   'mssql': 1,
   "n't": 2,
   'negoti': 2,
   'note': 2,
   'offer': 1,
   'one': 1,
   'open': 1,
   'opportun': 1,
   'oracl': 1,
   'os': 1,
   'otherwis': 1,
   'panel': 1,
   'pay': 2,
   'payment': 4,
   'payment_verified': True,
   'pfsens': 1,
   'phone_verified': True,
   'php': 1,
   'place': 4,
   'pleas': 4,
   'plesk': 1,
   'prefer': 1,
   'process': 1,
   'profile_complete': True,
   'project': 8,
   'public': 1,
   'qmail': 1,
   'rate': 1,
   'regard': 1,
   'relat': 2,
   'releas': 3,
   'remain': 1,
   'requir': 2,
   'rest': 1,
   'result': 2,
   'revis': 1,
   'risk': 1,
   'scheme': 2,
   'scope': 1,
   'secur': 1,
   'see': 1,
   'sendmail': 1,
   'server': 3,
   'similar': 1,
   'small': 2,
   'someth': 1,
   'sourc': 1,
   'start': 4,
   'support': 1,
   'system': 1,
   'term': 2,
   'therefor': 1,
   'thing': 1,
   'tri': 1,
   'unix': 1,
   'upfront': 1,
   'usual': 2,
   'vmware': 1,
   'want': 1,
   'well': 1,
   'window': 1,
   'without': 1,
   'wordpress': 1,
   'work': 1,
   'work.2': 1,
   'work.in': 1,
   'wp': 1,
   'x-cart': 1,
   'zencart': 1},
  'M'),
 ({"'s": 1,
   '15': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(15, 16), match='1'>,
   'First': 'm',
   'Last': '1',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'abl': 1,
   'advertis': 1,
   'advic': 1,
   'also': 1,
   'analysi': 1,
   'better': 1,
   'blog': 1,
   'brochur': 1,
   'campaign': 2,
   'charter': 1,
   'commun': 1,
   'consult': 1,
   'copywrit': 1,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'fashion': 1,
   'freelanc': 1,
   'full': 1,
   'function': 1,
   'googl': 1,
   'healthcar': 1,
   'hospit': 1,
   'identity_verified': False,
   'implement': 1,
   'includ': 2,
   'industri': 2,
   'institut': 1,
   'keyword': 1,
   'like': 1,
   'manag': 1,
   'market': 9,
   'materi': 1,
   'measur': 1,
   'media': 2,
   'member': 1,
   'newslett': 1,
   'offer': 2,
   'outsourc': 1,
   'particular': 1,
   'payment_verified': False,
   'phone_verified': False,
   'plan': 2,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'promot': 1,
   'proofread': 1,
   'qualif': 1,
   'recruit': 1,
   'research': 1,
   'servic': 3,
   'social': 1,
   'specif': 1,
   'strategi': 2,
   'suit': 1,
   'tourism': 1,
   'uk': 1,
   'websit': 1,
   'whole': 1,
   'work': 1,
   'would': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'l',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'achiev': 1,
   'analyt': 1,
   'concept': 1,
   'creativ': 1,
   'demonstr': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'excel': 1,
   'except': 1,
   'facebook_connected': False,
   'goal': 1,
   'good': 1,
   'graphic': 1,
   'hand': 1,
   'identity_verified': False,
   'initi': 1,
   'inter': 1,
   'knowledg': 1,
   'motiv': 1,
   'organ': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'photoshop': 1,
   'possess': 1,
   'principl': 1,
   'profile_complete': True,
   'reason': 1,
   'record': 1,
   'self': 1,
   'set': 1,
   'skill': 2,
   'strong': 1,
   'track': 1,
   'well': 1,
   'well-vers': 1},
  'M'),
 ({'--': 52,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'b',
   'Last': 'b',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'and/or': 1,
   'career': 1,
   'commun': 1,
   'comput': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'inform': 1,
   'object': 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'relat': 1,
   'would': 1},
  'M'),
 ({"'m": 1,
   '6': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'l',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'advanc': 1,
   'applic': 1,
   'backend': 1,
   'complet': 1,
   'corpor': 1,
   'deposit_made': False,
   'develop': 1,
   'drupal': 1,
   'e-commerc': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'frontend': 1,
   'identity_verified': False,
   'industri': 1,
   'land': 1,
   'one': 1,
   'open': 1,
   'page': 1,
   'payment_verified': True,
   'phone_verified': True,
   'platform': 1,
   'profile_complete': True,
   'project': 1,
   'simpl': 1,
   'site': 1,
   'sourc': 1,
   'special': 1,
   'web': 2,
   'websit': 1,
   'year': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'm',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'alvarion': 2,
   'app': 2,
   'architect': 1,
   'bank': 1,
   'base': 1,
   'bucharest': 1,
   'client/serv': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'erp': 1,
   'experi': 1,
   'exposur': 1,
   'facebook_connected': False,
   'french': 1,
   'ibm': 1,
   'identity_verified': False,
   'industri': 1,
   'involv': 1,
   'java': 1,
   'java/j2e': 1,
   'manag': 2,
   'mani': 1,
   'network': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'romania': 1,
   'senior': 1,
   'softwar': 1,
   'spring': 1,
   'strut': 1,
   'system': 1,
   'technic': 1,
   'web': 1,
   'webservic': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'3': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 't',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'ahm': 1,
   'assur': 1,
   'believ': 1,
   'best': 1,
   'code': 1,
   'css': 1,
   'css3': 1,
   'deliveri': 1,
   'deposit_made': True,
   'develop': 2,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'front-end': 2,
   'hello': 1,
   'honesti': 1,
   'html': 1,
   'html5': 1,
   'identity_verified': False,
   'java': 1,
   'jqueri': 1,
   'knowledg': 1,
   'last': 1,
   'layout': 1,
   'lot': 1,
   'nasir': 1,
   'new': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'qualiti': 1,
   'regular': 1,
   'research': 1,
   'script': 1,
   'semant': 1,
   'skill': 1,
   'strong': 1,
   'technolog': 1,
   'thank': 1,
   'time': 1,
   'visit': 1,
   'web': 1,
   'wordpress': 1,
   'work': 2,
   'xhtml': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'j',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'chang': 1,
   'clip': 1,
   'color': 1,
   'correct': 1,
   'deposit_made': False,
   'detail': 1,
   'email_verified': True,
   'facebook_connected': False,
   'guidelin': 1,
   'identity_verified': False,
   'imag': 1,
   'instruct': 1,
   'manipul': 1,
   'payment_verified': False,
   'per': 1,
   'perform': 1,
   'phone_verified': False,
   'profile_complete': True,
   'skill': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'applic': 1,
   'aw': 1,
   'deposit_made': True,
   'email_verified': True,
   'engin': 1,
   'especi': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'interest': 1,
   'look': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'relat': 1,
   'scale': 1,
   'senior': 1,
   'softwar': 1},
  'M'),
 ({"'re": 1,
   '...': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': None,
   'First': 'E',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'ap': 1,
   'articl': 2,
   'associ': 1,
   'award': 1,
   'best': 3,
   'blog': 1,
   'book': 2,
   'career': 1,
   'categori': 2,
   'check': 1,
   'client': 1,
   'degre': 1,
   'deposit_made': True,
   'e-book': 1,
   'earn': 1,
   'edit': 1,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': False,
   'former': 1,
   'four': 1,
   'freelanc': 2,
   'get': 1,
   'give': 1,
   'identity_verified': False,
   'journal': 1,
   'journalist': 2,
   'last': 1,
   'let': 1,
   'look': 2,
   'materi': 2,
   'matters.i': 1,
   'mind': 1,
   'modern': 1,
   "n't": 2,
   'news': 2,
   'payment_verified': True,
   'phone_verified': False,
   'press': 1,
   'profile_complete': True,
   'rate': 1,
   'research': 1,
   'rewritten': 1,
   'see': 1,
   'someth': 1,
   'subject': 1,
   'submit': 2,
   'sure': 1,
   'today': 1,
   'turn': 1,
   'use': 2,
   'varieti': 1,
   'want': 2,
   'work': 1,
   'write': 1,
   'written': 1,
   'year': 1},
  'F'),
 ({'2003': 1,
   '2008': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'e',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'access': 1,
   'administr': 3,
   'adob': 1,
   'also': 1,
   'area': 1,
   'arm': 1,
   'articul': 1,
   'camtasia': 1,
   'captiv': 1,
   'center': 1,
   'certif': 1,
   'certifi': 1,
   'consult': 1,
   'convers': 1,
   'data': 1,
   'deposit_made': False,
   'desgin': 1,
   'design': 1,
   'develop': 1,
   'elearn': 1,
   'email_verified': True,
   'examin': 1,
   'experi': 3,
   'extern': 1,
   'facebook_connected': False,
   'follow': 2,
   'identity_verified': False,
   'instruct': 2,
   'link': 1,
   'lm': 1,
   'mcsa': 1,
   'mct': 1,
   'microsoft': 1,
   'moodl': 3,
   'mssql': 3,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'server': 3,
   'system': 1,
   'univers': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'15': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='7'>,
   'First': 's',
   'Last': '1',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'avail': 1,
   'basic': 1,
   'busi': 1,
   'commerci': 1,
   'conscienti': 1,
   'cv': 1,
   'deposit_made': True,
   'economi': 1,
   'elementari': 1,
   'email_verified': True,
   'english': 1,
   'estat': 1,
   'experi': 2,
   'facebook_connected': False,
   'financ': 3,
   'fluenci': 1,
   'freelanc': 2,
   'french': 1,
   'german': 1,
   'identity_verified': False,
   'insur': 1,
   'italian': 2,
   'knowledg': 2,
   'languag': 1,
   'live': 1,
   'mani': 1,
   'motiv': 1,
   'nativ': 1,
   'oral': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'real': 1,
   'request': 1,
   'russian': 1,
   'sinc': 1,
   'tourism': 2,
   'translat': 1,
   'work': 1,
   'written': 1,
   'year': 2},
  'F'),
 ({'30': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
   'Digit': None,
   'First': 'W',
   'Last': 'z',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'actual': 1,
   'anyon': 1,
   'believ': 1,
   'build': 2,
   'combin': 1,
   'deposit_made': True,
   'develop': 2,
   'email_verified': True,
   'everyon': 1,
   'experi': 1,
   'facebook_connected': False,
   'find': 1,
   'identity_verified': False,
   'market': 1,
   'need': 1,
   'payment_verified': False,
   'perform': 1,
   'phone_verified': True,
   'produc': 2,
   'profile_complete': True,
   'sale': 2,
   'site': 1,
   'solut': 1,
   'web': 2,
   'websit': 2,
   'year': 1},
  'M'),
 ({"'m": 1,
   '1': 1,
   '3': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'y',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
   'client': 1,
   'close': 1,
   'complex': 1,
   'contact': 1,
   'deliv': 1,
   'deposit_made': True,
   'email_verified': True,
   'expect': 1,
   'experi': 1,
   'facebook': 4,
   'facebook_connected': False,
   'follow': 1,
   'friend': 1,
   'googl': 2,
   'google+': 1,
   'hard': 1,
   'identity_verified': False,
   'like': 2,
   'maintain': 1,
   'manag': 1,
   'market': 1,
   'media': 1,
   'now.i': 1,
   'payment_verified': True,
   'phone_verified': True,
   'pride': 1,
   'profile_complete': True,
   'project': 2,
   'smm': 1,
   'social': 1,
   'subscrib': 2,
   'twitter': 2,
   'undertak': 1,
   'view': 1,
   'work': 1,
   'year': 2,
   'youtub': 4},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='e'>,
   'advertis': 1,
   'alreadi': 1,
   'area': 1,
   'concept': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'new': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'tourism': 1,
   'work': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'brand': 1,
   'bring': 1,
   'busi': 1,
   'campaign': 1,
   'client-fac': 1,
   'close': 1,
   'commun': 2,
   'conceptu': 1,
   'content': 1,
   'deposit_made': False,
   'digit': 1,
   'email_verified': True,
   'event': 1,
   'execut': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'includ': 1,
   'integr': 1,
   'intern': 1,
   'manag': 2,
   'market': 5,
   'media': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'public': 1,
   'recruit': 1,
   'relat': 1,
   'strategi': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 's',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'choic': 1,
   'contact': 1,
   'critic': 1,
   'deposit_made': True,
   'develop': 2,
   'eight': 1,
   'email_verified': True,
   'facebook_connected': False,
   'fail': 1,
   'feel': 1,
   'free': 1,
   'full-stack': 1,
   'identity_verified': False,
   'look': 1,
   'magento': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pleas': 1,
   'plu': 1,
   'problem': 1,
   'profile_complete': True,
   'project': 1,
   'queri': 1,
   'right': 1,
   'skill': 1,
   'solut': 1,
   'thank': 1,
   'web': 1,
   'would': 1,
   'year': 1},
  'M'),
 ({"'s": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='1'>,
   'First': 't',
   'Last': '3',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'android': 1,
   'applic': 2,
   'bespok': 1,
   'best': 1,
   'bigcommerc': 1,
   'busi': 2,
   'c': 1,
   'certifi': 3,
   'ci': 1,
   'client': 1,
   'cost': 1,
   'creat': 1,
   'creativ': 1,
   'crm': 1,
   'custom': 2,
   'dear': 1,
   'deliv': 1,
   'deposit_made': False,
   'develop': 2,
   'eclips': 1,
   'email_verified': True,
   'erp': 1,
   'expertis': 1,
   'experts-': 1,
   'facebook_connected': False,
   'fit': 1,
   'help': 1,
   'identity_verified': True,
   'inventori': 1,
   'io': 1,
   'java': 1,
   'laravel': 1,
   'last': 1,
   'long': 1,
   'manag': 1,
   'master': 1,
   'mcsd': 1,
   'mct': 1,
   'microsoft': 3,
   'mission': 1,
   'mobil': 1,
   'natur': 1,
   'need': 1,
   'object': 1,
   'offer': 1,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': True,
   'phonegap': 1,
   'php': 1,
   'po': 1,
   'prefer': 1,
   'profile_complete': True,
   'proud': 1,
   'provid': 1,
   'rang': 1,
   'saa': 1,
   'salesforc': 2,
   'satisfi': 1,
   'scrum': 1,
   'servic': 1,
   'shopifi': 1,
   'softwar': 1,
   'solut': 4,
   'specialist': 1,
   'swift': 1,
   'team': 1,
   'technolog': 2,
   'us': 1,
   'volus': 1,
   'web': 2,
   'wide': 1,
   'wordpress': 1,
   'yii': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'o',
   'Last': '5',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'applic': 1,
   'articl': 2,
   'cloud': 1,
   'comput': 1,
   'creat': 1,
   'decis': 1,
   'deposit_made': True,
   'design': 2,
   'develop': 2,
   'dozen': 1,
   'e-commerc': 1,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'hii': 1,
   'hire': 1,
   'hundr': 1,
   'identity_verified': False,
   'impress': 1,
   'mobil': 2,
   'one': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'program': 1,
   'proud': 1,
   'rang': 1,
   'self': 1,
   'seo': 1,
   'servic': 1,
   'skill': 1,
   'taught': 1,
   'web': 1,
   'websit': 1,
   'write': 1,
   'written': 1},
  'M'),
 ({'...': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
   'alway': 1,
   'basi': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'hard': 1,
   'identity_verified': False,
   'minimum': 1,
   'money': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'readi': 2,
   'requir': 1,
   'start': 1,
   'urgent': 1,
   'work': 3},
  'M'),
 ({'2': 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 't',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'codeignit': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'framework': 1,
   'identity_verified': False,
   'laravel': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 2,
   'profile_complete': True,
   'use': 1,
   'year': 1},
  'M'),
 ({'.we': 1,
   '3': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='1'>,
   'First': 'f',
   'Last': 'e',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
   'accord': 1,
   'advanc': 1,
   'agreement': 1,
   'ambassador': 1,
   'appreci': 1,
   'asset': 1,
   'bangladesh': 2,
   'base': 4,
   'believ': 3,
   'best': 1,
   'build': 1,
   'busi': 2,
   'career': 1,
   'client': 3,
   'collect': 1,
   'commit': 1,
   'compani': 4,
   'complet': 2,
   'complianc': 1,
   'comput': 1,
   'consist': 1,
   'custom': 4,
   'decad': 1,
   'dedic': 1,
   'delight': 1,
   'deposit_made': False,
   'dhaka': 1,
   'director': 1,
   'drive': 1,
   'effort': 1,
   'email_verified': True,
   'employ': 1,
   'employe': 2,
   'enhanc': 1,
   'ensur': 2,
   'environ': 1,
   'equal': 1,
   'establish': 1,
   'everi': 1,
   'exceed': 1,
   'excel': 1,
   'experi': 1,
   'experienc': 1,
   'f1': 6,
   'facebook_connected': False,
   'firm': 1,
   'foreign': 1,
   'frequent': 1,
   'gener': 1,
   'global': 1,
   'growth': 1,
   'guarante': 1,
   'highli': 2,
   'identifi': 1,
   'identity_verified': False,
   'industri': 2,
   'inform': 1,
   'ite': 2,
   'knowledg': 1,
   'led': 1,
   'like': 1,
   'live': 1,
   'mainten': 1,
   'make': 1,
   'market': 1,
   'meet': 1,
   'mr.': 1,
   'need': 2,
   'offer': 1,
   'oper': 1,
   'opportun': 1,
   'outsourc': 2,
   'park': 1,
   'payment_verified': False,
   'peak': 1,
   'peopl': 2,
   'person': 1,
   'phone_verified': False,
   'price': 1,
   'profession': 2,
   'profile_complete': True,
   'proven': 1,
   'provid': 1,
   'provis': 1,
   'qualiti': 5,
   'rang': 1,
   'reason': 1,
   'regist': 1,
   'regul': 1,
   'relat': 1,
   'represent': 1,
   'resourc': 1,
   'result': 1,
   'return': 1,
   'reward': 1,
   'satisfact': 1,
   'sector': 1,
   'secur': 1,
   'servic': 1,
   'skill': 2,
   'softwar': 1,
   'solut': 2,
   'solutions.w': 1,
   'specif': 1,
   'speed': 1,
   'strive': 2,
   'support': 1,
   'sure': 1,
   'system': 1,
   'team': 2,
   'technic': 1,
   'technolog': 3,
   'time': 1,
   'total': 3,
   'trade': 1,
   'valu': 3,
   'valuabl': 1,
   'ventur': 1,
   'work': 2},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'c',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'access': 1,
   'applic': 1,
   'databas': 1,
   'deliv': 1,
   'deliveri': 1,
   'deposit_made': True,
   'driven': 1,
   'drupal': 1,
   'ektron': 1,
   'email_verified': True,
   'exampl': 1,
   'expert': 1,
   'facebook_connected': False,
   'fast': 1,
   'get': 1,
   'identity_verified': False,
   'joomla': 1,
   'msql': 1,
   'mysql': 1,
   'opensourc': 1,
   'oracl': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'special': 1,
   'sybas': 1,
   'web': 1,
   'wordpress': 1,
   'work': 1,
   'xml': 1},
  'M'),
 ({"'ve": 1,
   '+5:30': 1,
   '40': 1,
   '6': 1,
   '9:00': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'actionscript': 1,
   'ajax': 1,
   'also': 1,
   'avail': 1,
   'best': 1,
   'cm': 1,
   'codeignit': 1,
   'commun': 1,
   'consideration.thank': 1,
   'contact': 1,
   'creat': 3,
   'css': 1,
   'current': 1,
   'deposit_made': False,
   'design': 2,
   'develop': 1,
   'done': 1,
   'email_verified': True,
   'english': 1,
   'experi': 2,
   'extj': 1,
   'facebook_connected': False,
   'flash': 1,
   'forward': 1,
   'framework': 1,
   'gmt': 1,
   'good': 1,
   'hello': 1,
   'hour': 1,
   'html/xhtml': 1,
   'identity_verified': False,
   'integr': 1,
   'joomla': 1,
   'jqueri': 2,
   'know': 1,
   'knowledg': 1,
   'let': 1,
   'like': 2,
   'look': 1,
   'mani': 1,
   'monday': 1,
   'mootool': 1,
   'mysql': 1,
   'opencart': 1,
   'payment_verified': False,
   'per': 1,
   'phone_verified': False,
   'photoshop': 1,
   'php': 1,
   'pleas': 1,
   'plugin': 1,
   'posit': 1,
   'profile_complete': True,
   'project': 1,
   'prototyp': 1,
   'respons': 1,
   'singh': 1,
   'site': 1,
   'smarti': 1,
   'stuff': 1,
   'templat': 1,
   'thank': 1,
   'time': 2,
   'url': 10,
   'vast': 2,
   'want': 1,
   'web': 2,
   'week': 1,
   'well.i': 1,
   'widget': 1,
   'wordpress': 1,
   'work': 2,
   'year': 1,
   'zend': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'also': 1,
   'articl': 3,
   'content': 1,
   'contribut': 1,
   'could': 1,
   'deadlin': 1,
   'deposit_made': True,
   'email_verified': True,
   'ensur': 1,
   'especi': 1,
   'facebook_connected': False,
   'geek': 1,
   'grow': 1,
   'identity_verified': False,
   'make': 1,
   'meet': 1,
   'mine': 1,
   'miscellan': 1,
   'music': 1,
   'nearli': 1,
   'note': 1,
   'payment_verified': False,
   'phone_verified': False,
   'point': 1,
   'profession': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'side': 1,
   'sinc': 1,
   'site': 1,
   'web': 1,
   'work': 1,
   'writer': 1,
   'year': 1},
  'M'),
 ({'10': 2,
   'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'ax': 1,
   'cakephp': 1,
   'cart': 1,
   'cm': 1,
   'cms-': 1,
   'codeignit': 1,
   'commerc': 1,
   'concret': 1,
   'cost': 1,
   'cs': 1,
   'css-': 1,
   'css2': 1,
   'css3': 1,
   'dbm': 1,
   'deposit_made': False,
   'develop': 1,
   'dhtml': 1,
   'drupal': 1,
   'e': 1,
   'e-commerc': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'git': 1,
   'good': 1,
   'html': 1,
   'identity_verified': False,
   'javascript': 1,
   'joomla': 1,
   'jqueri': 1,
   'json': 1,
   'last': 1,
   'magento': 1,
   'mainli': 1,
   'mssql-': 1,
   'mvc': 1,
   'mysql': 1,
   'opencart': 1,
   'opensourc': 1,
   'oracl': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 3,
   'postgresql': 1,
   'profile_complete': True,
   'program': 2,
   'python': 1,
   'quick': 1,
   'reason': 1,
   'ror': 1,
   'rubi': 1,
   'skill': 2,
   'smarty-': 1,
   'strong': 1,
   'subvers': 1,
   'svn': 1,
   'symfoni': 1,
   'tool': 1,
   'tortois': 1,
   'turn': 1,
   'use': 1,
   'virtuemart': 1,
   'vss': 1,
   'web': 1,
   'websit': 1,
   'wordpress': 1,
   'work': 2,
   'xcart': 1,
   'xhtml': 1,
   'xml-': 1,
   'year': 2,
   'yii': 1,
   'yui': 1,
   'zencart': 1,
   'zend': 2},
  'M'),
 ({"'m": 3,
   "'ve": 1,
   '10': 1,
   '100': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'm',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>,
   'ad': 1,
   'becom': 1,
   'busi': 1,
   'card': 1,
   'cd': 1,
   'client': 3,
   'code': 1,
   'conscienti': 1,
   'creation': 1,
   'deadlin': 1,
   'decid': 1,
   'deposit_made': True,
   'design': 2,
   'develop': 1,
   'done': 1,
   'email_verified': True,
   'encount': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'find': 1,
   'freelanc': 2,
   'get': 1,
   'graphic': 1,
   'html': 1,
   'ident': 1,
   'identity_verified': False,
   'illustr': 1,
   'independ': 1,
   'indesign': 1,
   'last': 1,
   'like': 1,
   'make': 1,
   'mani': 1,
   'materi': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'profession': 1,
   'profile_complete': True,
   'promot': 1,
   'provid': 1,
   'puzzl': 1,
   'quark': 1,
   'recent': 1,
   'simpl': 1,
   'skill': 1,
   'solut': 1,
   'spent': 1,
   'sure': 1,
   'thing': 1,
   'thorough': 1,
   'use': 2,
   'usual': 1,
   'way': 1,
   'websit': 1,
   'well': 1,
   'whatev': 1,
   'work': 1,
   'year': 2},
  'F'),
 ({'9': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'c',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'client': 1,
   'commit': 1,
   'deposit_made': True,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'full': 1,
   'graphic': 1,
   'identity_verified': False,
   'intro': 1,
   'motion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'specialist': 1,
   'time': 1,
   'video': 1,
   'work': 1,
   'world': 1,
   'year': 1},
  'M'),
 ({"'m": 2,
   "'re": 1,
   '200': 1,
   '3,000': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='3'>,
   'First': 't',
   'Last': '6',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'also': 1,
   'alway': 1,
   'articl': 2,
   'client': 3,
   'content': 1,
   'copi': 1,
   'creat': 1,
   'credit': 1,
   'deposit_made': False,
   'design': 1,
   'detail-ori': 1,
   'differ': 1,
   'ebook': 2,
   'ehow': 1,
   'email_verified': True,
   'everi': 2,
   'exactli': 2,
   'facebook_connected': True,
   'fast': 2,
   'fiction': 1,
   'film': 2,
   'five': 1,
   'found': 1,
   'four': 1,
   'graphic': 1,
   'great': 1,
   'high-qual': 1,
   'identity_verified': False,
   'import': 1,
   'independ': 1,
   'individu': 1,
   'intern': 1,
   'market': 1,
   'name': 1,
   'need': 1,
   'non-fict': 1,
   'novel': 1,
   'one': 2,
   'payment_verified': False,
   'phone_verified': True,
   'produc': 1,
   'profile_complete': True,
   'provid': 3,
   'publish': 1,
   'qualiti': 1,
   'question': 1,
   'research': 1,
   'result': 1,
   'screenwrit': 1,
   'seek': 1,
   'sold': 1,
   'strive': 1,
   'today': 1,
   'tomorrow': 1,
   'topic': 1,
   'trail': 1,
   'travel': 1,
   'turnaround': 2,
   'two': 1,
   'understand': 1,
   'usa': 1,
   'varieti': 1,
   'vision': 1,
   'want': 1,
   'web': 1,
   'well': 2,
   'whether': 1,
   'within': 1,
   'work': 4,
   'writer': 1,
   'written': 2},
  'F'),
 ({'6': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'r',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'compani': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'huge': 1,
   'identity_verified': False,
   'intern': 1,
   'languag': 1,
   'local': 1,
   'one': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'program': 1,
   'small': 1,
   'techniqu': 1,
   'use': 1,
   'variou': 1,
   'web': 1,
   'well': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'algorithm': 1,
   'analyz': 1,
   'applic': 1,
   'background': 1,
   'base': 1,
   'cell': 1,
   'code': 1,
   'cycl': 1,
   'data': 1,
   'deploy': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'formula': 1,
   'identity_verified': False,
   'industri': 1,
   'knowledg': 1,
   'life': 1,
   'manufactur': 1,
   'object-ori': 1,
   'payment_verified': False,
   'phase': 1,
   'phone_verified': True,
   'profile_complete': True,
   'program': 2,
   'proven': 1,
   'softwar': 1,
   'strong': 1,
   'structur': 1,
   'translat': 1,
   'use': 1,
   'vba': 2,
   'web': 1,
   'well-vers': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'J',
   'Last': '8',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'alway': 1,
   'deliveri': 1,
   'deposit_made': True,
   'detail': 1,
   'due': 1,
   'email_verified': True,
   'ensur': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'provid': 1,
   'qualiti': 1,
   'receiv': 1,
   'time': 2,
   'work': 2},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 'n',
   'Last': '5',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'development.i': 1,
   'done': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'mani': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'web': 1,
   'year': 1},
  'M'),
 ({'2010.': 1,
   '2017': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'autocad': 1,
   'back': 2,
   'becom': 1,
   'chanc': 1,
   'deposit_made': False,
   'email_verified': True,
   'enough': 1,
   'establish': 1,
   'etab': 1,
   'excel': 1,
   'expert': 1,
   'facebook_connected': True,
   'fast': 1,
   'finish': 1,
   'freelanc': 2,
   'get': 1,
   'good': 1,
   'great': 1,
   'grow': 1,
   'here.i': 1,
   'identity_verified': True,
   'improv': 1,
   'join': 1,
   'less': 1,
   'local': 1,
   'octob': 1,
   'payment_verified': True,
   'phone_verified': True,
   'pleasur': 1,
   'postgradu': 1,
   'profile_complete': True,
   'program': 2,
   'project': 1,
   'sinc': 1,
   'site.i': 1,
   'skill': 1,
   'vb': 1,
   'wish': 1,
   'wonder': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'accuraci': 1,
   'afford': 1,
   'amount': 1,
   'certainli': 1,
   'confid': 1,
   'coupl': 1,
   'deposit_made': True,
   'drive': 1,
   'elpreiss': 2,
   'email_verified': True,
   'enthusiasm': 1,
   'experi': 1,
   'facebook_connected': False,
   'feel': 1,
   'financi': 1,
   'highest': 1,
   'hire': 1,
   'identity_verified': False,
   'level': 1,
   'make': 1,
   'motiv': 1,
   'need': 1,
   'opportun': 1,
   'origin': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'qualiti': 1,
   'quot': 1,
   'satisfi': 1,
   'self': 1,
   'skill': 1,
   'success': 1,
   'suit': 1,
   'today': 1,
   'vast': 1,
   'write': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
   'Digit': None,
   'First': 'W',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'build': 1,
   'busi': 3,
   'client': 2,
   'deposit_made': False,
   'design': 2,
   'develop': 1,
   'email_verified': True,
   'establish': 1,
   'facebook_connected': False,
   'happen': 1,
   'happi': 1,
   'help': 1,
   'identity_verified': False,
   'internet': 1,
   'make': 2,
   'money': 2,
   'payment_verified': False,
   'phone_verified': False,
   'portfolio': 1,
   'profile_complete': True,
   'relationship': 1,
   'run': 2,
   'seo': 1,
   'someth': 1,
   'success': 1,
   'via': 2,
   'web': 2,
   'whether': 1},
  'M'),
 ({'.develop': 1,
   '5': 1,
   '8+': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'abl': 1,
   'ajax': 1,
   'android': 2,
   'api': 1,
   'app': 2,
   'applic': 1,
   'asp.net': 1,
   'aspir': 1,
   'back-end': 1,
   'c': 2,
   'cake': 1,
   'challeng': 1,
   'codeignitor': 1,
   'css': 1,
   'css3': 1,
   'deposit_made': True,
   'develop': 5,
   'drupal': 1,
   'e-commerc': 1,
   'eclips': 2,
   'email_verified': True,
   'estim': 1,
   'excel': 1,
   'experi': 2,
   'facebook_connected': False,
   'gap': 1,
   'gateway': 1,
   'html5': 1,
   'identity_verified': False,
   'io': 2,
   'iphone/ipad': 1,
   'javascript': 2,
   'joomla': 2,
   'jqueri': 2,
   'knowledg': 1,
   'lamp': 1,
   'languag': 1,
   'linux': 1,
   'magento': 3,
   'make': 1,
   'map': 1,
   'mobil': 1,
   'mvc': 2,
   'mysql': 1,
   'nativ': 1,
   'notif': 1,
   'object': 1,
   'opencart': 1,
   'oscommerc': 1,
   'payment_verified': False,
   'phone': 1,
   'phone_verified': False,
   'php': 3,
   'profession': 1,
   'profile_complete': True,
   'programm': 1,
   'project': 1,
   'prototyp': 1,
   'servic': 1,
   'skill': 1,
   'smartphon': 1,
   'standard': 1,
   'take': 1,
   'use': 1,
   'web': 2,
   'wordpress': 2,
   'work': 1,
   'xcode': 1,
   'xhtml': 1,
   'year': 1,
   'yii': 1,
   'zencart': 1,
   'zend': 3},
  'M'),
 ({"'ll": 1,
   "'m": 1,
   '...': 1,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'm',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'also': 1,
   'assign': 1,
   'awesom': 1,
   'banner': 1,
   'best': 1,
   'book': 1,
   'busi': 1,
   'card': 1,
   'client': 2,
   'comment': 1,
   'creativ': 1,
   'deposit_made': True,
   'design': 4,
   'e-mail': 1,
   'edit': 1,
   'email_verified': True,
   'etc': 1,
   'experi': 1,
   'facebook_connected': True,
   'find': 1,
   'fit': 1,
   'flyer': 1,
   'graphic': 3,
   'head': 1,
   'hesit': 1,
   'identity_verified': True,
   'imag': 1,
   'introduc': 1,
   'job': 2,
   'kept': 1,
   'letter': 1,
   'like': 1,
   'link': 1,
   'logo': 1,
   'opportun': 1,
   'past': 1,
   'payment_verified': True,
   'phone_verified': True,
   'pleas': 1,
   'poster': 1,
   'profession': 1,
   'profile_complete': True,
   'satisfi': 1,
   'seek': 1,
   'self': 1,
   'show': 1,
   'signatur': 1,
   'special': 1,
   'sure': 1,
   'trust': 1,
   'type': 1,
   'variou': 1,
   'visit': 1,
   'web': 1,
   'without': 1,
   'work': 1,
   'would': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'm',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'activ': 1,
   'aim': 1,
   'anim': 1,
   'art': 1,
   'busi': 2,
   'consult': 1,
   'content': 1,
   'custom': 1,
   'deposit_made': False,
   'design': 1,
   'domain': 1,
   'edit': 1,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'field': 1,
   'follow': 1,
   'graphic': 1,
   'host': 1,
   'identity_verified': False,
   'internet': 1,
   'larg': 1,
   'number': 1,
   'optim': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photographi': 1,
   'profession': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'radio': 1,
   'registr': 1,
   'search': 1,
   'server': 1,
   'servic': 1,
   'solut': 1,
   'support': 1,
   'video': 1,
   'web': 2,
   'web-bas': 1,
   'write-up': 1},
  'M'),
 ({'15': 1,
   '2': 1,
   '3': 1,
   '5': 2,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abil': 1,
   'abl': 3,
   'ajax': 1,
   'also': 1,
   'amazon': 1,
   'background': 1,
   'banner': 1,
   'believ': 1,
   'best': 1,
   'card': 1,
   'chang': 1,
   'client': 1,
   'code': 1,
   'configur': 1,
   'convert': 1,
   'creat': 2,
   'cs3': 1,
   'css': 1,
   'day': 1,
   'deposit_made': True,
   'design': 1,
   'ean': 1,
   'edit': 1,
   'email': 2,
   'email_verified': True,
   'etc': 1,
   'etsi': 1,
   'everi': 1,
   'experi': 2,
   'experienc': 1,
   'facebook_connected': True,
   'found': 1,
   'full': 1,
   'fulli': 1,
   'gmail': 1,
   'good': 2,
   'got': 1,
   'graphic': 2,
   'hi': 1,
   'hotmail': 1,
   'hr': 1,
   'html': 3,
   'identity_verified': False,
   'imag': 2,
   'it.i': 1,
   'javascript': 1,
   'jqueri': 1,
   'kamal': 1,
   'key': 1,
   'like': 1,
   'logo': 1,
   'mainli': 1,
   'mani': 1,
   'mostofa': 1,
   'number': 1,
   'onlin': 1,
   'payment_verified': True,
   'phone_verified': True,
   'photoshop': 1,
   'php': 1,
   'product': 1,
   'profession': 2,
   'profile_complete': True,
   'psd': 2,
   'row': 1,
   'satisfied.i': 1,
   'seo': 1,
   'similar': 1,
   'skype': 1,
   'stop': 1,
   'success': 1,
   'support': 1,
   'templat': 2,
   'theme': 1,
   'time': 2,
   'upload': 1,
   'upwork': 1,
   'visit': 1,
   'wait': 1,
   'web': 1,
   'without': 1,
   'wordpress': 1,
   'work': 4,
   'work.i': 1,
   'worker': 1,
   'yahoo': 1,
   'year': 1},
  'M'),
 ({"'s": 1,
   '1.': 1,
   '2.': 1,
   '3.': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'A',
   'Last': '1',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   '``': 1,
   'attack': 1,
   'bs': 1,
   'colleg': 1,
   'data': 1,
   'degre': 1,
   'deposit_made': False,
   'differ': 2,
   'done': 1,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'name': 1,
   'ngo': 1,
   'payment_verified': False,
   'phone_verified': False,
   'prevent': 1,
   'profile_complete': True,
   'project': 1,
   'research': 1,
   'school': 1,
   'servic': 1,
   'websit': 1},
  'M'),
 ({'1': 1,
   '1b': 2,
   '2': 2,
   '3': 3,
   '4': 1,
   '5': 1,
   '6': 1,
   '7': 1,
   '8': 1,
   '9': 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'k',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'ad': 1,
   'add': 1,
   'anim': 3,
   'bold': 1,
   'crystal': 1,
   'deposit_made': False,
   'deterg': 1,
   'email': 1,
   'email_verified': True,
   'episod': 5,
   'experi': 1,
   'facebook_connected': False,
   'first': 2,
   'forest': 1,
   'identity_verified': False,
   'lost': 1,
   'oxford': 9,
   'payment_verified': False,
   'phone_verified': True,
   'phonic': 2,
   'profession': 1,
   'profile_complete': True,
   'project': 3,
   'rain': 1,
   'read': 2,
   'scienc': 3,
   'serial': 2,
   'stage': 9,
   'star': 2,
   'talk': 6,
   'tele': 2,
   'televis': 2,
   'text': 1,
   'tree': 2,
   'web': 1,
   'zoo': 1},
  'M'),
 ({'2.0': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'e',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'c': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': True,
   'pl': 1,
   'profile_complete': True,
   'qualit': 1,
   'quickli': 1,
   'remot': 1,
   'servic': 1,
   'sql': 1,
   'work': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='2'>,
   'First': 'u',
   'Last': '9',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
   'abl': 1,
   'academ': 1,
   'advoc': 1,
   'also': 2,
   'articl': 1,
   'audienc': 2,
   'author': 1,
   'background': 1,
   'blog': 1,
   'build': 1,
   'campaign': 1,
   'co-found': 1,
   'commun': 1,
   'complet': 1,
   'complex': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 1,
   'directli': 1,
   'divers': 2,
   'email_verified': True,
   'exist': 1,
   'experienc': 2,
   'explain': 1,
   'facebook_connected': False,
   'green': 1,
   'grievanc': 1,
   'hone': 1,
   'idea': 1,
   'identity_verified': False,
   'issu': 2,
   'last': 1,
   'led': 1,
   'letter': 1,
   'maintain': 1,
   'manag': 1,
   'media': 2,
   'media.i': 1,
   'numer': 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': True,
   'polici': 1,
   'post': 1,
   'press': 1,
   'print': 1,
   'profile_complete': True,
   'profit': 1,
   'program': 1,
   'provid': 1,
   'radio': 1,
   'ran': 1,
   'rang': 1,
   'releas': 1,
   'research': 1,
   'scratch': 1,
   'sector': 1,
   'senat': 1,
   'simpli': 1,
   'six': 1,
   'skill': 1,
   'social': 1,
   'solut': 1,
   'start': 1,
   'strong': 1,
   'submiss': 1,
   'sustain': 1,
   'tertiari': 1,
   'train': 1,
   'upon': 1,
   'whether': 1,
   'wordpress': 1,
   'work': 2,
   'workshop': 1,
   'write': 3,
   'wrote': 1,
   'year': 2},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'get': 1,
   'identity_verified': False,
   'job': 1,
   'man': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'successful': 1,
   'want': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'm',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'advanc': 1,
   'assur': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'good': 1,
   'identity_verified': False,
   'job': 2,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'sincer': 1,
   'speed': 1,
   'thank': 1,
   'type': 1,
   'want': 1},
  'M'),
 ({'6': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
   'First': 's',
   'Last': '7',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'deposit_made': False,
   'develop': 1,
   'digit': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'freelanc': 1,
   'identity_verified': False,
   'kumar': 1,
   'market': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profess': 1,
   'profile_complete': True,
   'self': 1,
   'web': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'--': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='4'>,
   'First': 's',
   'Last': '4',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'associ': 1,
   'bangalor': 3,
   'blog': 1,
   'bosch': 2,
   'coimbator': 2,
   'corpor': 1,
   'current': 1,
   'degre': 1,
   'delhi': 1,
   'deposit_made': True,
   'develop': 2,
   'differ': 1,
   'diploma': 1,
   'e-learn': 1,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'graduat': 1,
   'hold': 1,
   'human': 1,
   'icici': 1,
   'identity_verified': False,
   'includ': 1,
   'india': 3,
   'indian': 1,
   'manag': 1,
   'mani': 1,
   'mnc': 1,
   'new': 1,
   'payment_verified': True,
   'phone_verified': False,
   'post': 1,
   'profile_complete': True,
   'resourc': 1,
   'robert': 2,
   'skill': 1,
   'societi': 1,
   'studi': 1,
   'train': 3,
   'trainer': 1,
   'univers': 1,
   'visit': 1,
   'work': 1,
   'write': 1,
   'writer': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'S',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'comput': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'liter': 1,
   'need': 1,
   'part': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'time': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'h',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'excel': 1,
   'expert': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'microsoft': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': False,
   'powerpoint': 1,
   'profile_complete': True,
   'set': 1,
   'word': 1,
   'xp': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'j',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'blog': 1,
   'book': 1,
   'deposit_made': False,
   'doctor': 1,
   'email_verified': True,
   'facebook_connected': False,
   'good': 1,
   'grammar': 1,
   'identity_verified': False,
   'magazin': 1,
   'medic': 2,
   'payment_verified': True,
   'phone_verified': True,
   'produc': 1,
   'profile_complete': True,
   'proofread': 1,
   'read': 1,
   'spare': 1,
   'time': 1,
   'write': 1},
  'F'),
 ({"'ll": 1,
   '14': 1,
   '2004': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'abl': 1,
   'accept': 1,
   'across': 1,
   'alway': 1,
   'arshi': 2,
   'arvind': 2,
   'believ': 1,
   'better': 1,
   'bid': 1,
   'confid': 1,
   'custom': 1,
   'customers.i': 1,
   'deliv': 1,
   'deliveri': 1,
   'deposit_made': True,
   'design/develop': 1,
   'discuss': 1,
   'email_verified': True,
   'entir': 1,
   'experi': 1,
   'facebook_connected': True,
   'feel': 1,
   'find': 1,
   'freelanc': 2,
   'fulfil': 2,
   'globe': 1,
   'guarante': 1,
   'hi': 1,
   'identity_verified': False,
   'issu': 1,
   'long': 1,
   "n't": 1,
   'need': 1,
   'onlin': 1,
   'outsourc': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'project': 5,
   'provid': 2,
   'qualiti': 2,
   'relationship': 1,
   'requir': 2,
   'satisfact': 1,
   'servic': 2,
   'sinc': 1,
   'solut': 1,
   'time': 3,
   'web': 1,
   'whenev': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'x',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'fulltim': 1,
   'home': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'work': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='G'>,
   'Digit': None,
   'First': 'G',
   'Last': 'n',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'account': 1,
   'appli': 1,
   'area': 1,
   'assur': 1,
   'audit': 2,
   'better': 1,
   'career': 1,
   'charter': 1,
   'complianc': 1,
   'control': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 2,
   'explor': 1,
   'facebook_connected': False,
   'forward': 1,
   'gain': 1,
   'horizon': 1,
   'identity_verified': False,
   'intern': 1,
   'knowledg': 2,
   'look': 1,
   'new': 1,
   'organ': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'reput': 1,
   'revenu': 1,
   'skill': 2,
   'start': 1,
   'statutori': 1,
   'well': 1},
  'M'),
 ({"'m": 2,
   "'s": 2,
   '..': 1,
   '1997.': 1,
   '2002': 1,
   '2010': 1,
   '3': 1,
   '5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'o',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'access': 4,
   'accomplish': 1,
   'activ': 9,
   'actual': 2,
   'ad': 1,
   'aeronaut': 1,
   'also': 1,
   'among': 2,
   'analysi': 1,
   'analyz': 1,
   'apach': 2,
   'applic': 21,
   'approach': 1,
   'area': 3,
   'associ': 1,
   'audio': 1,
   'authent': 1,
   'automat': 1,
   'automot': 1,
   'bank': 1,
   'base': 4,
   'basic': 1,
   'benefit': 1,
   'board': 1,
   'bond': 2,
   'brd': 1,
   'busi': 1,
   'c': 1,
   'c++': 1,
   'c/c++': 2,
   'ca': 3,
   'case': 1,
   'cd': 2,
   'center': 1,
   'charg': 1,
   'check': 1,
   'client': 1,
   'close': 1,
   'club': 1,
   'codewarrior': 1,
   'collect': 1,
   'command': 1,
   'commun': 2,
   'compani': 2,
   'configur': 2,
   'consist': 1,
   'contain': 1,
   'control': 5,
   'craiova': 2,
   'creat': 1,
   'csv': 2,
   'custom': 2,
   'data': 2,
   'databas': 4,
   'date': 3,
   'defin': 1,
   'delet': 1,
   'deliv': 1,
   'depend': 1,
   'deposit_made': False,
   'descript': 3,
   'develop': 11,
   'differ': 1,
   'directori': 1,
   'discuss': 1,
   'distinguish': 1,
   'distribut': 1,
   'domain': 4,
   'download': 3,
   'dsm': 1,
   'dto': 4,
   'easi': 1,
   'eclips': 1,
   'effici': 1,
   'ehealth': 2,
   'eight': 1,
   'email_verified': True,
   'emerg': 1,
   'emilio': 2,
   'engin': 1,
   'entri': 1,
   'envelop': 1,
   'especi': 1,
   'etc': 1,
   'excel': 1,
   'exchang': 1,
   'exist': 1,
   'expans': 1,
   'experi': 2,
   'expertis': 2,
   'expiri': 1,
   'extens': 1,
   'extern': 2,
   'facebook_connected': True,
   'file': 4,
   'filter': 1,
   'financi': 2,
   'firm': 1,
   'flexibl': 1,
   'folder': 1,
   'follow': 2,
   'footbal': 1,
   'freelanc': 1,
   'frontpag': 1,
   'group': 3,
   'help': 1,
   'high': 1,
   'html': 1,
   'http': 1,
   'ide': 2,
   'ident': 4,
   'identity_verified': False,
   'import': 4,
   'includ': 2,
   'inform': 4,
   'input': 1,
   'instal': 1,
   'intelidei': 2,
   'internet': 2,
   'involv': 2,
   'itali': 1,
   'italian': 1,
   'item': 1,
   'januari': 1,
   'java': 15,
   'javascript': 1,
   'jboss': 1,
   'joomla': 1,
   'jsp': 2,
   'languag': 1,
   'latest': 1,
   'ldap': 1,
   'leas': 1,
   'leverag': 1,
   'limit': 1,
   'london': 1,
   'lower': 1,
   'made': 1,
   'maintain': 1,
   'mainten': 1,
   'make': 1,
   'manag': 9,
   'manager*': 2,
   'mark': 2,
   'market': 1,
   'materi': 1,
   'may': 1,
   'mean': 2,
   'member': 3,
   'minimum': 1,
   'moara': 1,
   'model': 1,
   'modul': 7,
   'monitor': 1,
   'move': 1,
   'mysql': 2,
   'net': 1,
   'net-sol': 3,
   'netbean': 1,
   'network': 3,
   'new': 1,
   'notic': 2,
   'offer': 1,
   'one': 1,
   'oper': 2,
   'oracl': 3,
   'orang': 1,
   'organ': 1,
   'organiz': 1,
   'outsourc': 1,
   'packag': 2,
   'page': 2,
   'part': 1,
   'password': 1,
   'payment': 1,
   'payment_verified': False,
   'pdf': 1,
   'person': 3,
   'phone_verified': False,
   'photoshop': 1,
   'php': 1,
   'platform': 1,
   'plugin': 1,
   'polic': 1,
   'polici': 1,
   'possibl': 1,
   'price': 1,
   'print': 3,
   'process': 1,
   'product': 2,
   'profile_complete': True,
   'program': 1,
   'programm': 1,
   'programmercompani': 3,
   'project': 7,
   'psitrad': 2,
   'purchas': 1,
   'quantiti': 3,
   'r12': 1,
   'r8': 2,
   'rang': 1,
   'raw': 1,
   'recip': 1,
   'remot': 1,
   'requir': 2,
   'restaur': 4,
   'resum': 1,
   'retriev': 1,
   'romania': 4,
   'romanian': 1,
   'sc': 1,
   'school': 1,
   'second': 1,
   'secur': 2,
   'send': 2,
   'sent': 1,
   'separ': 1,
   'servic': 1,
   'servicedesk': 8,
   'servlet': 2,
   'set': 1,
   'sever': 4,
   'similar': 1,
   'sinc': 3,
   'singl': 1,
   'site': 2,
   'small': 1,
   'smf': 1,
   'snmp': 1,
   'softwar': 3,
   'software/technologiescompani': 2,
   'solut': 2,
   'solvit': 3,
   'sound': 1,
   'sphere': 1,
   'sql': 2,
   'standalon': 1,
   'start': 1,
   'statist': 1,
   'stock': 4,
   'structur': 1,
   'strut': 1,
   'studi': 1,
   'suit': 2,
   'synchron': 1,
   'system': 5,
   'tabl': 2,
   'team': 2,
   'technolog': 2,
   'temporari': 1,
   'third': 1,
   'three': 1,
   'tomcat': 1,
   'tool': 1,
   'two': 1,
   'unicredit': 2,
   'uniqu': 1,
   'universitari': 1,
   'updat': 5,
   'upgrad': 1,
   'use': 12,
   'user': 3,
   'usernam': 1,
   'v3': 1,
   'variou': 2,
   'vc++': 1,
   'verif': 1,
   'version': 1,
   'via': 1,
   'video': 1,
   'visual': 2,
   'vodafon': 1,
   'volunt': 1,
   'waiter': 1,
   'web': 4,
   'web-bas': 1,
   'webpag': 1,
   'webserv': 1,
   'webservic': 1,
   'websit': 1,
   'wide': 1,
   'work': 4,
   'xml': 2,
   'york': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'area': 1,
   'audit': 1,
   'basi': 1,
   'bgp': 1,
   'cisco': 4,
   'composit': 1,
   'conduct': 1,
   'consist': 1,
   'custom': 2,
   'deposit_made': False,
   'design': 2,
   'eigrp': 1,
   'email_verified': True,
   'engin': 1,
   'enterpris': 1,
   'facebook_connected': False,
   'firewal': 1,
   'hierarch': 1,
   'identity_verified': False,
   'implement': 1,
   'inform': 1,
   'instal': 1,
   'model': 1,
   'network': 5,
   'new': 1,
   'ospf': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'r': 1,
   'router': 1,
   'run': 1,
   'secur': 1,
   'site': 1,
   'support': 1,
   'survey': 1,
   'switch': 1,
   'troubleshoot': 1,
   'upgrad': 1,
   'work': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'z',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'abil': 1,
   'addit': 1,
   'aim': 1,
   'articl': 2,
   'becom': 1,
   'best': 1,
   'blog': 2,
   'client': 2,
   'consid': 1,
   'custom': 1,
   'data': 2,
   'deposit_made': False,
   'effici': 1,
   'email_verified': True,
   'engin': 1,
   'enhanc': 1,
   'entri': 2,
   'extens': 1,
   'facebook_connected': False,
   'freelanc': 2,
   'gear': 1,
   'get': 1,
   'great': 1,
   'help': 1,
   'hone': 1,
   'identity_verified': False,
   'improv': 1,
   'manag': 1,
   'media': 1,
   'object': 1,
   'onlin': 1,
   'paramount': 1,
   'payment_verified': False,
   'phone_verified': False,
   'potenti': 1,
   'profile_complete': True,
   'provid': 3,
   'qualiti': 2,
   'research': 2,
   'result': 1,
   'satisfactori': 1,
   'search': 1,
   'servic': 2,
   'skill': 1,
   'social': 1,
   'success': 1,
   'variou': 1,
   'web': 2,
   'well': 3,
   'write': 2,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'j',
   'Last': '3',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'assign': 1,
   'count': 1,
   'creat': 1,
   'deposit_made': True,
   'eager': 1,
   'email_verified': True,
   'facebook_connected': True,
   'fantast': 1,
   'identity_verified': False,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'skill': 1,
   'specif': 1,
   'super': 1,
   'work': 1,
   'write': 1},
  'F'),
 ({'12': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'g',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'automot': 1,
   'bachelor': 1,
   'commun': 2,
   'deposit_made': False,
   'develop': 1,
   'electron': 1,
   'email_verified': True,
   'embed': 1,
   'engin': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'industri': 1,
   'manner': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'respect': 1,
   'skill': 1,
   'system': 1,
   'year': 1},
  'M'),
 ({'.net': 4,
   '1.1': 1,
   '18+': 1,
   '2.0': 1,
   '2.6': 1,
   '2003': 1,
   '2005': 1,
   '3.0': 1,
   '3.5': 1,
   '4.0': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'applic': 1,
   'around': 1,
   'asp.net': 1,
   'background': 1,
   'c': 1,
   'contact': 1,
   'control': 1,
   'databas': 1,
   'deposit_made': False,
   'desktop': 1,
   'develop': 1,
   'discuss': 1,
   'e-mail': 1,
   'email_verified': True,
   'enclos': 1,
   'experi': 1,
   'extens': 1,
   'facebook_connected': False,
   'follow': 2,
   'form': 1,
   'forward': 1,
   'foxpro': 1,
   'hear': 1,
   'html': 1,
   'identity_verified': False,
   'interview': 1,
   'intranet': 1,
   'java': 1,
   'knowledg': 1,
   'like': 1,
   'look': 1,
   'microsoft': 1,
   'opportun': 1,
   'payment_verified': False,
   'phone': 1,
   'phone_verified': True,
   'pleas': 1,
   'posit': 1,
   'profile_complete': True,
   'question': 1,
   'resum': 1,
   'review': 1,
   'schedul': 1,
   'script': 1,
   'server': 1,
   'servic': 1,
   'studio': 1,
   'web': 3,
   'welcom': 1,
   'would': 2,
   'xml': 1,
   'xsl': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'b',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ansibl': 1,
   'applic': 2,
   'aw': 1,
   'azur': 1,
   'chef': 1,
   'cloud': 1,
   'consult': 1,
   'corpor': 1,
   'custom': 1,
   'deliv': 1,
   'deposit_made': True,
   'devop': 4,
   'docker': 1,
   'elk': 1,
   'email_verified': True,
   'ensur': 1,
   'facebook_connected': False,
   'framework': 1,
   'git': 1,
   'hybrid': 1,
   'identity_verified': False,
   'implement': 2,
   'individu': 1,
   'jenkin': 1,
   'linux': 1,
   'migrat': 1,
   'payment_verified': True,
   'perl': 1,
   'phone_verified': True,
   'privat': 1,
   'profile_complete': True,
   'public': 1,
   'puppet': 1,
   'python': 1,
   'qualiti': 1,
   'rubi': 1,
   'script': 1,
   'shell': 1,
   'svn': 1,
   'train': 1,
   'unix': 1,
   'vmware': 1,
   'web': 1},
  'M'),
 ({'...': 2,
   'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'r',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'averag': 1,
   'base': 2,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'figur': 1,
   'flash': 1,
   'go': 1,
   'higher': 1,
   'hourli': 2,
   'identity_verified': False,
   'lower': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 2,
   'put': 1,
   'rate': 1,
   'type': 1,
   'vari': 1,
   'video': 1,
   'web': 1,
   'whether': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'around': 1,
   'audio': 1,
   'bend': 1,
   'coast': 2,
   'commerci': 1,
   'compani': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'format': 1,
   'heard': 1,
   'identity_verified': False,
   'imag': 1,
   'media': 1,
   'mind': 1,
   'multimedia': 1,
   'multipl': 1,
   'new': 1,
   'offer': 1,
   'one-stop': 1,
   'over': 1,
   'payment_verified': False,
   'phone_verified': False,
   'product': 3,
   'profile_complete': True,
   'radio': 2,
   'station': 1,
   'track': 1,
   'tv': 1,
   'voic': 2,
   'work': 1,
   'world': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 's',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'administr': 1,
   'debian': 1,
   'deposit_made': True,
   'email_verified': True,
   'experienc': 1,
   'facebook_connected': True,
   'framework': 2,
   'identity_verified': False,
   'laravel': 1,
   'mailserv': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'skill': 1,
   'system': 1,
   'webserv': 1,
   'work': 1,
   'yii': 1},
  'M'),
 ({'.i': 1,
   '1999': 1,
   '2009': 2,
   '2009.': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 's',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   '\\xe2\\u20ac\\u201c': 2,
   'account': 1,
   'alway': 1,
   'apr': 1,
   'balanc': 1,
   'best': 1,
   'calcul': 1,
   'check': 1,
   'data': 1,
   'deposit_made': True,
   'detail': 1,
   'develop': 1,
   'email_verified': True,
   'etc': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'gener': 1,
   'hard': 1,
   'identity_verified': False,
   'indonesia': 1,
   'januari': 1,
   'job': 1,
   'keep': 1,
   'manag': 1,
   'march': 1,
   'move': 1,
   'octob': 1,
   'payment_verified': True,
   'person': 1,
   'phone_verified': True,
   'present': 1,
   'print': 1,
   'profile_complete': True,
   'quickbook': 1,
   'report': 1,
   'respons': 1,
   'royalti': 2,
   'sa': 1,
   'senior': 1,
   'ten': 1,
   'usa': 1,
   'work': 1,
   'worker': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='4'>,
   'First': 'm',
   'Last': '0',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'edit': 1,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'french': 1,
   'identity_verified': False,
   'journalist': 1,
   'languag': 1,
   'master': 1,
   'mauritiu': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'proofread': 1,
   'translat': 1},
  'M'),
 ({'40': 1,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abil': 1,
   'agreement': 1,
   'anyon': 1,
   'arbitr': 1,
   'area': 1,
   'bank': 1,
   'believ': 1,
   'besid': 1,
   'best': 2,
   'client': 3,
   'combin': 1,
   'commerci': 2,
   'compani': 1,
   'complet': 1,
   'crimin': 1,
   'cyber': 1,
   'deposit_made': True,
   'draft': 1,
   'els': 1,
   'email_verified': True,
   'endeavour': 1,
   'engag': 1,
   'experi': 1,
   'facebook_connected': True,
   'high': 1,
   'identity_verified': False,
   'kind': 1,
   'law': 2,
   'lawyer': 1,
   'legal': 1,
   'make': 1,
   'matter': 1,
   'multin': 1,
   'net': 1,
   'payment_verified': False,
   'perform': 1,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'rang': 1,
   'render': 1,
   'review': 1,
   'satisfact': 1,
   'servic': 1,
   'special': 1,
   'taxat': 1,
   'team': 1,
   'tender': 1,
   'therefor': 1,
   'think': 1,
   'twice': 1,
   'variou': 2,
   'worth': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'o',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'base': 1,
   'chines': 1,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'mobil': 2,
   'payment_verified': False,
   'phone_verified': False,
   'popular': 1,
   'product': 1,
   'profession': 1,
   'profile_complete': True,
   'termin': 1,
   'varieti': 1,
   'work': 1},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'v',
   'Last': '3',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'channel': 2,
   'commerci': 1,
   'comput': 1,
   'consid': 1,
   'creation': 1,
   'current': 1,
   'deposit_made': True,
   'design': 1,
   'email_verified': True,
   'engag': 1,
   'facebook_connected': True,
   'graphic': 3,
   'identity_verified': False,
   'intro': 1,
   'involv': 1,
   'made': 1,
   'much': 1,
   'music': 1,
   'order': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'propos': 1,
   'readi': 1,
   'style': 1,
   'televis': 1,
   'video': 2,
   'work': 1,
   'year': 1},
  'M'),
 ({"'m": 2,
   "'re": 1,
   '...': 1,
   '30': 1,
   '8': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'achiev': 1,
   'adapt': 1,
   'alway': 3,
   'app': 2,
   'attempt': 1,
   'attest': 1,
   'beauti': 1,
   'becam': 1,
   'believ': 1,
   'belt': 1,
   'book': 1,
   'brows': 1,
   'case': 1,
   'check': 1,
   'client': 1,
   'comfort': 1,
   'compound': 1,
   'comput': 2,
   'corpor': 1,
   'deposit_made': False,
   'design': 4,
   'dynam': 1,
   'email_verified': True,
   'expect': 1,
   'experi': 2,
   'facebook_connected': False,
   'faculti': 1,
   'first': 1,
   'friendli': 1,
   'full': 1,
   'goal': 1,
   'graduat': 1,
   'graphic': 1,
   'headquart': 1,
   'help': 1,
   'hesit': 1,
   'hobbi': 1,
   'home': 1,
   'ident': 1,
   'identity_verified': False,
   'independ': 1,
   'job': 1,
   'kit': 1,
   'locat': 1,
   'look': 1,
   'love': 1,
   'mathemat': 1,
   'meet': 1,
   'mobil': 1,
   "n't": 1,
   'numer': 1,
   'old': 1,
   'orient': 1,
   'payment_verified': False,
   'perfect': 1,
   'phone_verified': False,
   'pleasant': 1,
   'profession': 1,
   'profil': 1,
   'profile_complete': True,
   'qualiti': 1,
   'reach': 1,
   'result': 1,
   'romania': 1,
   'satisfi': 1,
   'scienc': 2,
   'see': 1,
   'soon': 1,
   'special': 1,
   'succeed': 1,
   'testimoni': 1,
   'time': 1,
   'top': 2,
   'use': 1,
   'user': 1,
   'web': 2,
   'websit': 2,
   'work': 3,
   'year': 2},
  'F'),
 ({'2010': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'articl': 1,
   'date': 1,
   'deposit_made': False,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': False,
   'fortun': 1,
   'identity_verified': False,
   'occasion': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'sinc': 1,
   'submiss': 1,
   'written': 1},
  'F'),
 ({"'s": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='5'>,
   'First': 'v',
   'Last': '5',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
   'chat': 1,
   'data': 1,
   'deep': 1,
   'deposit_made': True,
   'do': 1,
   'email_verified': True,
   'engin': 2,
   'entri': 1,
   'facebook_connected': False,
   'find': 2,
   'freelanc': 1,
   'good': 2,
   'histori': 1,
   'identity_verified': False,
   'inform': 1,
   'internet': 1,
   'knowledg': 1,
   'like': 1,
   'market': 4,
   'media': 1,
   'optim': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'plu': 1,
   'profile_complete': True,
   'quit': 1,
   'research': 1,
   'search': 2,
   'sem': 1,
   'seo': 1,
   'smm': 1,
   'social': 1},
  'M'),
 ({"'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'j',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'basi': 1,
   'bid': 1,
   'busi': 1,
   'degre': 1,
   'deposit_made': True,
   'earlier': 1,
   'email_verified': True,
   'employ': 1,
   'english': 1,
   'even': 1,
   'facebook_connected': True,
   'good': 1,
   'identity_verified': False,
   'long': 1,
   'mani': 1,
   'master': 1,
   'medic': 1,
   "n't": 1,
   'part': 1,
   'passion': 1,
   'payment_verified': True,
   'peopl': 1,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'reason': 1,
   'sole': 1,
   'term': 1,
   'though': 1,
   'time': 1,
   'usa': 1,
   'write': 2,
   'wrote': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='2'>,
   'First': 'd',
   'Last': '1',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'bcom': 1,
   'complet': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': True,
   'gujarat': 1,
   'identity_verified': False,
   'mysql': 1,
   'payment_verified': False,
   'pgdca': 1,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'sheth': 1,
   'websit': 1},
  'M'),
 ({"'m": 3,
   'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'f',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'also': 1,
   'cooper': 1,
   'deposit_made': False,
   'easili': 1,
   'email_verified': True,
   'even': 1,
   'exampl': 1,
   'facebook_connected': False,
   'flexibl': 1,
   'full': 1,
   'good': 2,
   'hard': 1,
   'hardwork': 1,
   'identity_verified': False,
   'industri': 1,
   'job': 1,
   'late': 1,
   'leader': 1,
   'never': 1,
   'other': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'sleep': 1,
   'tackl': 1,
   'time': 1,
   'without': 1,
   'work': 1},
  'M'),
 ({"'m": 3,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
   'First': 't',
   'Last': '0',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'chanc': 1,
   'client': 1,
   'complet': 1,
   'deposit_made': True,
   'detail': 1,
   'email_verified': True,
   'ensur': 1,
   'facebook_connected': False,
   'given': 1,
   'identity_verified': False,
   'job': 2,
   'man': 1,
   'new': 1,
   'organis': 1,
   'orient': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'prove': 1,
   'satisfact': 1,
   'site': 1,
   'time': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 's',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'angular': 1,
   'cm': 1,
   'css': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'html': 1,
   'identity_verified': False,
   'javascript': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'technolog': 1,
   'use': 1,
   'web': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'y',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
   'anim': 1,
   'asp': 1,
   'asp.net': 1,
   'bid': 1,
   'commun': 1,
   'compani': 2,
   'concept': 1,
   'creativ': 1,
   'customer-specif': 1,
   'daili': 1,
   'deliv': 1,
   'deploy': 1,
   'deposit_made': False,
   'design': 2,
   'develop': 4,
   'dhtml': 1,
   'ecommerc': 1,
   'email': 1,
   'email_verified': True,
   'experi': 2,
   'expertis': 1,
   'facebook_connected': False,
   'flash': 2,
   'function': 1,
   'got': 1,
   'hi': 1,
   'html': 1,
   'identity_verified': False,
   'includ': 1,
   'java': 1,
   'look': 1,
   'match': 1,
   'messeng': 1,
   'ms': 1,
   'orient': 1,
   'payment_verified': False,
   'phone': 1,
   'phone_verified': False,
   'php': 1,
   'profession': 3,
   'profile_complete': True,
   'propos': 1,
   'readi': 1,
   'report': 1,
   'rich': 1,
   'script': 1,
   'send': 1,
   'server': 1,
   'servic': 1,
   'site': 1,
   'sql': 3,
   'start': 1,
   'team': 2,
   'test': 1,
   'web': 2,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'y',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'altern': 1,
   'articl': 1,
   'beauti': 1,
   'care': 1,
   'comprehens': 1,
   'content': 1,
   'deposit_made': True,
   'diet': 1,
   'diy': 1,
   'edit': 1,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'fashion': 1,
   'fit': 1,
   'health': 1,
   'home': 1,
   'identity_verified': False,
   'leisur': 1,
   'lyric': 1,
   'nutrit': 1,
   'origin': 1,
   'payment_verified': False,
   'pet': 1,
   'phone_verified': False,
   'profile_complete': True,
   'provid': 1,
   'seo': 1,
   'solut': 1,
   'special': 1,
   'stori': 1,
   'technolog': 1,
   'therapi': 1,
   'travel': 1,
   'write': 1},
  'F'),
 ({"'m": 2,
   '40': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'l',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'also': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'english': 1,
   'entri': 1,
   'experi': 1,
   'facebook_connected': False,
   'gujarati': 1,
   'hindi': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'transcript': 1,
   'year': 1},
  'M'),
 ({'15': 1,
   '1994.': 1,
   '3': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'j',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'again.i': 1,
   'also': 1,
   'asp.net': 1,
   'base': 1,
   'box': 1,
   'bs': 1,
   'c': 1,
   'ci': 1,
   'code': 2,
   'coldfus': 1,
   'compani': 3,
   'contract': 1,
   'creat': 1,
   'custom': 1,
   'datacent': 1,
   'degre': 1,
   'deposit_made': False,
   'develop': 2,
   'done': 3,
   'elk': 1,
   'email_verified': True,
   'estat': 1,
   'etc': 1,
   'except': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'job': 1,
   'like': 1,
   'linux': 1,
   'lot': 1,
   'make': 1,
   'manag': 1,
   'newel': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php/mysql': 1,
   'profile_complete': True,
   'project': 1,
   'real': 1,
   'report': 1,
   'roof': 1,
   'search': 2,
   'server': 2,
   'simpl': 1,
   'sinc': 1,
   'site': 1,
   'softwar': 1,
   'special': 1,
   'sql': 1,
   'system': 1,
   'web': 2,
   'window': 1,
   'work': 1,
   'year': 1,
   'zip': 1},
  'M'),
 ({"'ve": 1,
   '15': 1,
   'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'd',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
   'also': 1,
   'anim': 1,
   'busi': 1,
   'commerci': 1,
   'corpor': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'graphic': 1,
   'identity_verified': False,
   'motion': 1,
   'music': 1,
   'payment_verified': False,
   'phone_verified': True,
   'product': 1,
   'profil': 1,
   'profile_complete': True,
   'small': 1,
   'special': 1,
   'train': 1,
   'video': 3,
   'work': 1,
   'year': 1},
  'M'),
 ({'/asp.net': 1,
   '2005': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 't',
   'Last': 'd',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'agil': 1,
   'also': 1,
   'applic': 1,
   'c': 1,
   'codeignit': 1,
   'command': 1,
   'concept': 1,
   'databas': 1,
   'deposit_made': False,
   'develop': 1,
   'driven': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'framework': 1,
   'good': 2,
   'identity_verified': False,
   'littl': 1,
   'magento': 1,
   'oop': 1,
   'payment_verified': False,
   'phone_verified': True,
   'play': 1,
   'profile_complete': True,
   'rang': 1,
   'sinc': 1,
   'tdd': 1,
   'use': 1,
   'vb6': 1,
   'web': 1,
   'well': 1,
   'wide': 1,
   'wordpress': 1,
   'zend': 1},
  'M'),
 ({'100': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'd',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   '\\xe2\\u20ac\\u201c': 1,
   'adob': 1,
   'advertis': 1,
   'attent': 1,
   'banner': 1,
   'believ': 1,
   'brochur': 1,
   'busi': 1,
   'card': 2,
   'ccna': 1,
   'ccnp': 1,
   'certif': 1,
   'certifi': 1,
   'choos': 1,
   'client': 1,
   'commun': 2,
   'concept': 1,
   'continu': 1,
   'core': 1,
   'corel': 1,
   'corpor': 1,
   'creativ': 1,
   'custom': 1,
   'deposit_made': False,
   'design': 4,
   'detail': 2,
   'direct': 1,
   'draw': 1,
   'email_verified': True,
   'end': 1,
   'envelop': 1,
   'experi': 1,
   'facebook_connected': False,
   'fair': 1,
   'first': 1,
   'flash': 1,
   'flyer': 1,
   'folder': 1,
   'graphic': 1,
   'guy': 1,
   'hardwork': 1,
   'header': 1,
   'hello': 1,
   'high': 1,
   'highli': 1,
   'i\\xe2\\u20ac\\u2122m': 1,
   'ident': 1,
   'identity_verified': False,
   'illustr': 1,
   'includ': 1,
   'invit': 1,
   'ip': 1,
   'key': 1,
   'letterhead': 1,
   'like': 1,
   'logo': 3,
   'louder': 1,
   'market': 1,
   'materi': 1,
   'motiv': 1,
   'name': 1,
   'number': 1,
   'offer': 1,
   'one': 1,
   'option': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'price': 1,
   'print': 1,
   'prioriti': 1,
   'profession': 1,
   'profile_complete': True,
   'program': 1,
   'provid': 1,
   'qualiti': 2,
   'quick': 1,
   'research': 1,
   'result': 1,
   'revis': 1,
   'satisfact': 1,
   'satisfi': 1,
   'sell': 1,
   'send': 1,
   'servic': 1,
   'sheet': 1,
   'speak': 1,
   'specialti': 2,
   'start': 1,
   'stationari': 1,
   'support': 1,
   'thank': 2,
   'that\\xe2\\u20ac\\u2122': 1,
   'time': 1,
   'turnaround': 1,
   'type': 1,
   'usual': 1,
   'web': 1,
   'word': 2,
   'work': 4,
   'would': 1,
   'year': 1},
  'M'),
 ({"'m": 2,
   '15': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'p',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'blogger': 1,
   'came': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'great': 2,
   'hang': 1,
   'hear': 1,
   'identity_verified': False,
   'old': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'recent': 1,
   'site': 2,
   'therebi': 1,
   'thought': 1,
   'would': 1,
   'yr': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 't',
   'Last': '7',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'ad': 1,
   'administr': 1,
   'classifi': 1,
   'creativ': 1,
   'depend': 1,
   'deposit_made': False,
   'e-commerc': 1,
   'e-mail': 1,
   'email_verified': True,
   'estat': 1,
   'facebook_connected': False,
   'handl': 1,
   'honest': 1,
   'identity_verified': False,
   'includ': 1,
   'offer': 1,
   'payment_verified': False,
   'phone_verified': False,
   'post': 1,
   'profile_complete': True,
   'real': 1,
   'reliabl': 1,
   'research': 2,
   'servic': 2,
   'support': 2,
   'web': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(12, 13), match='0'>,
   'First': 'g',
   'Last': '8',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'bing': 1,
   'deposit_made': True,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'first': 1,
   'googl': 1,
   'grow': 1,
   'identity_verified': False,
   'imagin': 1,
   'make': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'sale': 1,
   'sign-up': 1,
   'togeth': 1,
   'traffic': 1,
   'visitor': 1,
   'web': 1,
   'work': 1,
   'yahoo': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   '\\xe2\\u20ac\\u201c': 1,
   'alway': 1,
   'assess': 1,
   'board': 1,
   'civil': 1,
   'colleagu': 1,
   'content': 1,
   'creativ': 1,
   'deposit_made': False,
   'distanc': 1,
   'educ': 1,
   'elig': 1,
   'email_verified': True,
   'employ': 1,
   'evalu': 1,
   'exam': 1,
   'expans': 1,
   'facebook_connected': False,
   'flexibl': 1,
   'graduat': 1,
   'high': 1,
   'identity_verified': False,
   'investigatori': 1,
   'let': 1,
   'licens': 1,
   'major': 1,
   'manag': 2,
   'master': 1,
   'nation': 1,
   'paper': 1,
   'payment_verified': False,
   'philippin': 1,
   'phone_verified': False,
   'polici': 1,
   'posit': 1,
   'prc': 1,
   'profession': 1,
   'profile_complete': True,
   'program': 1,
   'public': 2,
   'pursu': 1,
   'rate': 1,
   'receiv': 1,
   'research': 1,
   'resourc': 1,
   'school': 1,
   'scienc': 1,
   'servic': 1,
   'student': 1,
   'studi': 1,
   'talent': 1,
   'teach': 2,
   'teacher': 1,
   'train': 1,
   'univers': 1,
   'wise': 1},
  'F'),
 ({"'s": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'e',
   'Last': '0',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'alway': 1,
   'aspect': 2,
   'balanc': 1,
   'busi': 2,
   'client': 1,
   'compani': 1,
   'deposit_made': True,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'implement': 1,
   'improv': 2,
   'lean': 1,
   'manag': 4,
   'oper': 2,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'profit': 1,
   'relat': 1,
   'skill': 3,
   'specialist': 1,
   'strateg': 1,
   'theori': 1,
   'therefor': 1,
   'ultim': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'm',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'attitud': 1,
   'best': 1,
   'deadlin': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'orient': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
   'First': 'm',
   'Last': '3',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'alway': 1,
   'applic': 1,
   'busi': 1,
   'come': 1,
   'databas': 2,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'everyday': 1,
   'exit': 1,
   'facebook_connected': False,
   'filemak': 1,
   'find': 1,
   'first': 1,
   'great': 1,
   'identity_verified': False,
   'market': 1,
   'open': 1,
   'passion': 1,
   'payment_verified': True,
   'peopl': 1,
   'phone_verified': True,
   'pro': 1,
   'profile_complete': True,
   'see': 1,
   'sourc': 1,
   'tool': 1,
   'use': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'c',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'client': 1,
   'corpor': 1,
   'deposit_made': True,
   'design': 6,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': True,
   'graphic': 1,
   'high': 1,
   'ident': 1,
   'identity_verified': False,
   'layout': 1,
   'media': 2,
   'payment_verified': True,
   'per': 1,
   'phone_verified': True,
   'print': 1,
   'profile_complete': True,
   'provid': 2,
   'qualiti': 1,
   'relat': 1,
   'servic': 1,
   'stationari': 1,
   'web': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'b',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'applic': 1,
   'compani': 1,
   'consult': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'india': 1,
   'like': 1,
   'mobil': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'provid': 2,
   'seo': 1,
   'servic': 4,
   'web': 2},
  'M'),
 ({'...': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'beij': 1,
   'china': 1,
   'deposit_made': False,
   'email_verified': True,
   'european': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'japan': 1,
   'locat': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'programm': 1,
   'team': 1,
   'toward': 1,
   'translat': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='2'>,
   'First': 'r',
   'Last': '2',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'respons': 1,
   'simpl': 1,
   'worker': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'c',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'alpha': 2,
   'articl': 4,
   'car': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'fashion': 1,
   'identity_verified': False,
   'includ': 1,
   'latest': 4,
   'music': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pro': 1,
   'profile_complete': True,
   'qualif': 1,
   'review': 1,
   'seek': 2},
  'M'),
 ({'...': 1,
   '10': 1,
   '12': 1,
   '2000': 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'e',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   'also': 1,
   'api': 1,
   'appli': 1,
   'asana': 1,
   'aw': 1,
   'basecamp': 1,
   'cake': 1,
   'code': 1,
   'commerc': 1,
   'complet': 1,
   'cre': 1,
   'cvn': 1,
   'deposit_made': False,
   'develop': 1,
   'differ': 1,
   'drupal': 1,
   'email_verified': True,
   'etc': 1,
   'etc\\xe2\\u20ac\\xa6-': 2,
   'experi': 2,
   'experience.-': 1,
   'facebook_connected': False,
   'framework': 1,
   'git': 1,
   'give': 1,
   'handl': 1,
   'identity_verified': False,
   'joomla': 1,
   'json': 1,
   'lamp': 1,
   'laravel': 1,
   'lead': 1,
   'like': 3,
   'load': 2,
   'magento': 1,
   'manag': 1,
   'mani': 1,
   'manti': 1,
   'multipl': 1,
   'mysql-': 1,
   'open': 1,
   'os': 1,
   'output': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 2,
   'press': 1,
   'profile_complete': True,
   'project': 3,
   'server': 1,
   'servic': 2,
   'setup': 1,
   'size': 1,
   'smarti': 1,
   'sourc': 1,
   'summari': 1,
   'svn': 1,
   'system': 1,
   'team': 2,
   'tool': 1,
   'use': 1,
   'variou': 2,
   'vast': 1,
   'version': 1,
   'web': 2,
   'word': 1,
   'work': 4,
   'yii': 1},
  'M'),
 ({'25': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='6'>,
   'First': 'S',
   'Last': '5',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='A'>,
   'achiev': 1,
   'busi': 1,
   'client': 1,
   'commun': 1,
   'compos': 1,
   'contribut': 1,
   'deposit_made': True,
   'email_verified': True,
   'experi': 2,
   'facebook_connected': False,
   'focu': 1,
   'group': 1,
   'identity_verified': False,
   'implement': 1,
   'individu': 1,
   'inform': 2,
   'integr': 1,
   'involv': 1,
   'knowledg': 2,
   'led': 1,
   'manag': 2,
   'mr.': 1,
   'object': 1,
   'oper': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'provid': 2,
   'reason': 1,
   'reliabl': 1,
   'reorgan': 1,
   'resourc': 1,
   'servic': 1,
   'size': 1,
   'solut': 1,
   'team': 1,
   'technolog': 3,
   'util': 1,
   'year': 1},
  'M'),
 ({'12+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'asp.net': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'key': 1,
   'microsoft': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'skill': 1,
   'technolog': 1,
   'use': 1,
   'year': 1},
  'M'),
 ({"'s": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
   'First': 'l',
   'Last': '8',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'bag': 2,
   'beij': 1,
   'compani': 1,
   'deposit_made': False,
   'email_verified': True,
   'especi': 1,
   'etc': 2,
   'experi': 2,
   'facebook_connected': False,
   'fujian': 1,
   'garment': 1,
   'girl': 1,
   'identity_verified': False,
   'inform': 1,
   'internet': 1,
   'kind': 1,
   'ladi': 1,
   'live': 1,
   'made': 1,
   'major': 1,
   'mani': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'school': 1,
   'technic': 1,
   'trade': 1,
   'translat': 2,
   'underwear': 1,
   'variou': 1,
   'via': 1,
   'year': 2},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'also': 1,
   'blog': 1,
   'decid': 1,
   'deposit_made': False,
   'email_verified': True,
   'especi': 1,
   'facebook_connected': True,
   'famili': 1,
   'freelanc': 1,
   'identity_verified': False,
   'love': 1,
   'na': 1,
   'network': 1,
   'payment_verified': False,
   'phone_verified': False,
   'plan': 1,
   'profile_complete': True,
   'secretari': 1,
   'social': 1,
   'spent': 1,
   'time': 1,
   'wan': 1,
   'year': 1},
  'F'),
 ({'4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'also': 1,
   'client': 1,
   'damag': 1,
   'deposit_made': False,
   'edit': 1,
   'email_verified': True,
   'enthusiast': 1,
   'exact': 1,
   'experience.i': 1,
   'extrem': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'involv': 1,
   'learn': 1,
   'like': 1,
   'lookout': 1,
   'mean': 1,
   'new': 1,
   'offer': 1,
   'opportun': 1,
   'passion': 1,
   'payment_verified': False,
   'perman': 1,
   'phone_verified': False,
   'process': 1,
   'profession': 1,
   'profile_complete': True,
   'proofread': 1,
   'qualiti': 1,
   'reflect': 1,
   'servic': 1,
   'specif': 1,
   'style.i': 1,
   'tailor': 1,
   'text': 1,
   'translat': 4,
   'webdesign': 1,
   'without': 1,
   'year': 1},
  'F'),
 ({"'m": 1,
   '15': 1,
   '4': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='8'>,
   'First': 'H',
   'Last': '6',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'best': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'evangelist': 1,
   'experi': 1,
   'facebook_connected': False,
   'focu': 1,
   'identity_verified': False,
   'magento': 2,
   'payment_verified': False,
   'perform': 1,
   'phone_verified': False,
   'php': 1,
   'practic': 1,
   'profile_complete': True,
   'program': 1,
   'scalabl': 1,
   'system': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'commit': 1,
   'confid': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'hardwork': 1,
   'identity_verified': False,
   'orient': 1,
   'payment_verified': False,
   'per': 1,
   'person': 1,
   'phone_verified': False,
   'profile_complete': True,
   'result': 1,
   'schedul': 1,
   'time': 1,
   'work': 1},
  'M'),
 ({'10': 1,
   '2010': 1,
   '6': 1,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   'code': 1,
   'deposit_made': False,
   'dig': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'framework': 1,
   'got': 1,
   'html/css': 1,
   'i\\xe2\\u20ac\\u2122v': 2,
   'identity_verified': False,
   'interest': 1,
   'learn': 1,
   'less': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'rail': 1,
   'rubi': 2,
   'start': 2,
   'technolog': 1,
   'web': 2,
   'year': 3},
  'M'),
 ({"'s": 1,
   '12': 1,
   '2004': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'M',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'age': 1,
   'architectur': 1,
   'back': 1,
   'besid': 1,
   'databas': 1,
   'deposit_made': False,
   'design': 3,
   'develop': 2,
   'element': 1,
   'email_verified': True,
   'explor': 1,
   'facebook_connected': False,
   'first': 1,
   'form': 1,
   'got': 1,
   'hand': 1,
   'identity_verified': False,
   'import': 1,
   'keep': 1,
   'land': 1,
   'like': 1,
   'look': 1,
   'manag': 1,
   'mostli': 1,
   'never': 1,
   'new': 1,
   'often': 1,
   'one': 1,
   'payment_verified': False,
   'phone_verified': True,
   'platform': 1,
   'profession': 2,
   'profile_complete': True,
   'program': 1,
   'project': 2,
   'rang': 1,
   'sinc': 1,
   'solut': 1,
   'start': 1,
   'technolog': 1,
   'test': 1,
   'though': 1,
   'ui': 1,
   'web': 1,
   'wide': 1,
   'work': 5,
   'year': 1},
  'M'),
 ({'100': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'alway': 1,
   'australia': 1,
   'canada': 1,
   'client': 2,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'germani': 1,
   'give': 1,
   'identity_verified': False,
   'india': 1,
   'output': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'u.k.': 1,
   'u.s.': 1,
   'work': 1},
  'M'),
 ({'1992': 1,
   '500': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'e',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'also': 1,
   'art': 1,
   'book': 1,
   'busi': 3,
   'c++': 1,
   'compani': 1,
   'compliant': 1,
   'creativ': 1,
   'deposit_made': False,
   'develop': 1,
   'done': 1,
   'email_verified': True,
   'facebook_connected': False,
   'fiction': 1,
   'fine': 1,
   'fortun': 1,
   'genr': 1,
   'grant': 1,
   'howev': 1,
   'identity_verified': False,
   'internet': 1,
   'it.i': 1,
   'littl': 1,
   'look': 1,
   'mani': 1,
   'manuscript': 1,
   'market': 1,
   'master': 1,
   'mfa': 1,
   'mysql': 1,
   'non-fict': 1,
   'offer': 1,
   'other': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'publish': 1,
   'qualiti': 1,
   'seo': 1,
   'show': 1,
   'sinc': 1,
   'site': 1,
   'skill': 2,
   'small': 1,
   'technic': 1,
   'vb': 1,
   'web': 1,
   'write': 5},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'm',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'achiev': 1,
   'agre': 1,
   'attitud': 1,
   'best': 1,
   'competit': 1,
   'deposit_made': False,
   'email_verified': True,
   'enabl': 1,
   'enhanc': 1,
   'facebook_connected': False,
   'focus': 2,
   'gain': 1,
   'high': 1,
   'identity_verified': False,
   'individu': 1,
   'inform': 1,
   'knowledg': 2,
   'object': 1,
   'passion': 1,
   'payment_verified': False,
   'perform': 2,
   'phone_verified': False,
   'player': 1,
   'practic': 1,
   'profile_complete': True,
   'right': 1,
   'self-motiv': 1,
   'set': 1,
   'skill': 1,
   'special': 1,
   'standard': 1,
   'team': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'd',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'adword': 1,
   'also': 2,
   'anywher': 1,
   'area': 1,
   'automot': 1,
   'best': 3,
   'busi': 4,
   'cart': 1,
   'cloth': 1,
   'complet': 1,
   'contact': 1,
   'current': 1,
   'deposit_made': True,
   'develop': 1,
   'done': 1,
   'ecommerc': 2,
   'elit': 1,
   'email_verified': True,
   'enough': 1,
   'etc': 1,
   'experi': 1,
   'facebook_connected': False,
   'find': 1,
   'follow': 1,
   'furnitur': 1,
   'get': 1,
   'go': 1,
   'good': 1,
   'guid': 2,
   'help': 1,
   'hundr': 1,
   'identity_verified': True,
   'know': 1,
   'knowledg': 1,
   'last': 1,
   'like': 1,
   'mani': 1,
   'market': 3,
   'marketplac': 1,
   'media': 1,
   'onlin': 2,
   'payment_verified': True,
   'phone_verified': True,
   'plan': 1,
   'platforms.i': 1,
   'product': 1,
   'profile_complete': True,
   'project': 1,
   'research': 1,
   'right': 1,
   'sale': 1,
   'seo': 1,
   'shop': 1,
   'social': 1,
   'sourc': 1,
   'start': 1,
   'start-up': 1,
   'succeed': 1,
   'success': 1,
   'tactic': 1,
   'three': 1,
   'variou': 1,
   'websit': 2,
   'wholesal': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': None,
   'First': 'E',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'deposit_made': False,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'nativ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'qualiti': 1,
   'servic': 1,
   'web': 1,
   'writer': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'g',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'commun': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'high': 1,
   'identity_verified': False,
   'instal': 1,
   'linux': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'remot': 1,
   'server': 1,
   'servic': 1,
   'support': 2,
   'voip': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'r',
   'Last': '1',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'ajax': 1,
   'apach': 1,
   'css': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'good': 1,
   'identity_verified': False,
   'javascript': 1,
   'look': 1,
   'mysql': 1,
   'need': 1,
   'offshor': 1,
   'outsourc': 1,
   'partner': 2,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'programm': 1,
   'real': 1,
   'technolog': 1,
   'work': 1},
  'M'),
 ({'10': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'R',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'accentur': 1,
   'client': 1,
   'combin': 1,
   'deposit_made': True,
   'email_verified': True,
   'en': 1,
   'experi': 1,
   'facebook_connected': False,
   'final': 1,
   'freelanc': 1,
   'hp': 1,
   'identity_verified': False,
   'italian': 1,
   'ite': 1,
   'languag': 1,
   'like': 1,
   'mani': 1,
   'microsoft': 1,
   'other': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profession': 2,
   'profile_complete': True,
   'provid': 1,
   'servic': 1,
   'translat': 2,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'e',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'ajax': 1,
   'base': 1,
   'basic': 1,
   'cse': 1,
   'css': 1,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'engin': 1,
   'expert': 1,
   'facebook_connected': False,
   'graphic': 1,
   'html': 1,
   'identity_verified': False,
   'javascript': 1,
   'knowledg': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'php': 1,
   'profile_complete': True,
   'program': 1,
   'use': 1,
   'web': 2},
  'M'),
 ({"'s": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='J'>,
   'Digit': None,
   'First': 'J',
   'Last': 'C',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'also': 2,
   'angel': 1,
   'articl': 1,
   'attend': 1,
   'author': 1,
   'blog': 1,
   'book': 1,
   'broke': 1,
   'cat': 1,
   'colleg': 1,
   'comic': 1,
   'compani': 1,
   'cours': 1,
   'current': 1,
   'deposit_made': True,
   'email_verified': True,
   'establish': 1,
   'facebook_connected': False,
   'famili': 1,
   'featur': 1,
   'first': 1,
   'freelanc': 1,
   'head': 1,
   'home': 1,
   'host': 1,
   'identity_verified': False,
   'illinoi': 1,
   'independ': 1,
   'jani': 1,
   'magazin': 1,
   'mari': 1,
   'mom': 1,
   'mostli': 1,
   'move': 1,
   'new': 1,
   'one': 1,
   'onlin': 2,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'profile_complete': True,
   'publish': 2,
   'resid': 1,
   'rock': 1,
   'scene': 1,
   'script': 1,
   'self': 1,
   'singl': 2,
   'site': 2,
   'son': 1,
   'train': 1,
   'upcom': 1,
   'valley': 1,
   'variou': 1,
   'web': 1,
   'websit': 1,
   'well': 1,
   'work': 1,
   'write': 3,
   'writer': 2,
   'young': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 'a',
   'Last': '8',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'hard': 1,
   'identity_verified': False,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'profile_complete': True,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
   'First': 'm',
   'Last': '6',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'big': 1,
   'compani': 1,
   'deposit_made': True,
   'done': 1,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'multin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'writer': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'q',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
   'also': 1,
   'cool': 1,
   'deposit_made': True,
   'design': 1,
   'dynam': 1,
   'edit': 1,
   'effect': 1,
   'email_verified': True,
   'facebook_connected': True,
   'good': 1,
   'graphic': 1,
   'identity_verified': False,
   'make': 1,
   'motion': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'sever': 1,
   'short': 1,
   'univers': 1,
   'videos.i': 1,
   'visual': 1,
   'want': 1},
  'M'),
 ({"''": 1,
   "'ll": 2,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='U'>,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
   'First': 'U',
   'Last': '4',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='U'>,
   '``': 1,
   'artist': 1,
   'benefit': 1,
   'budget': 1,
   'busi': 1,
   'choos': 1,
   'compani': 1,
   'creativ': 3,
   'crowd': 1,
   'current': 1,
   'custom': 1,
   'deposit_made': False,
   'design': 2,
   'differ': 2,
   'dozen': 1,
   'email_verified': True,
   'experi': 1,
   'expert': 1,
   'facebook_connected': False,
   'gener': 1,
   'get': 2,
   'graphic': 1,
   'hand': 1,
   'http': 1,
   'hundr': 1,
   'identity_verified': False,
   'instead': 1,
   'kindli': 1,
   'logo': 1,
   'manufactur': 1,
   'materi': 1,
   'payment_verified': False,
   'phone_verified': False,
   'practic': 1,
   'profile_complete': True,
   'programm': 1,
   'proof': 2,
   'qualiti': 1,
   'reason': 1,
   'see': 1,
   'sourc': 1,
   'team': 1,
   'uniqu': 1,
   'want': 1,
   'websit': 2,
   'work': 2,
   'worldwid': 1},
  'F'),
 ({'.net': 1,
   '15': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='3'>,
   'First': 'b',
   'Last': '2',
   'Numchar': 5,
   'Vowel': None,
   'android': 1,
   'app': 1,
   'asp': 1,
   'deposit_made': False,
   'develop': 1,
   'differ': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'industri': 1,
   'mvc': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'recent': 1,
   'server': 1,
   'softwar': 1,
   'solid': 1,
   'sql': 1,
   'type': 1,
   'version': 1,
   'year': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'g',
   'Last': '3',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'admin': 1,
   'css': 1,
   'deposit_made': False,
   'email_verified': True,
   'exerienc': 1,
   'facebook_connected': True,
   'html': 1,
   'identity_verified': False,
   'java': 1,
   'linux': 1,
   'payment_verified': True,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'account': 1,
   'build': 1,
   'comfort': 1,
   'creation': 1,
   'data': 1,
   'deliv': 1,
   'deposit_made': True,
   'email_verified': True,
   'entri': 1,
   'expert': 1,
   'facebook_connected': True,
   'freelanc': 1,
   'hous': 1,
   'identity_verified': False,
   'india': 1,
   'link': 1,
   'maker': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profil': 1,
   'profile_complete': True,
   'qualiti': 1,
   'small': 1,
   'task': 1,
   'time': 1,
   'variou': 1,
   'work': 2,
   'worker': 1},
  'F'),
 ({"''": 2,
   "'m": 1,
   "'s": 1,
   "'ve": 2,
   '..': 2,
   '...': 1,
   '2008.': 1,
   '2600': 1,
   '3': 1,
   '4': 1,
   '64': 2,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   '``': 2,
   'age': 1,
   'atari': 1,
   'basic': 3,
   'cant': 1,
   'card': 1,
   'come': 1,
   'commodor': 2,
   'complet': 1,
   'comput': 1,
   'conclus': 1,
   'deposit_made': True,
   'design': 2,
   'develop': 1,
   'dig': 1,
   'earn': 1,
   'easili': 1,
   'email_verified': True,
   'enough': 1,
   'enter': 1,
   'everyth': 2,
   'expert': 2,
   'facebook_connected': True,
   'field': 1,
   'first': 2,
   'give': 1,
   'graphic': 3,
   'identity_verified': False,
   'im': 2,
   'info': 1,
   'instead': 1,
   'know': 3,
   'knowledg': 2,
   'learn': 1,
   'lesson': 1,
   'like': 1,
   'logic': 1,
   'money': 1,
   'need': 1,
   'old': 1,
   'paint': 1,
   'passion': 1,
   'payment_verified': True,
   'pc': 1,
   'phone_verified': True,
   'play': 1,
   'player': 1,
   'posit': 1,
   'prefer': 1,
   'problem': 1,
   'profile_complete': True,
   'project': 2,
   'remind': 1,
   'say': 2,
   'sinc': 1,
   'soccer': 1,
   'softwar': 3,
   'someth': 3,
   'sound': 1,
   'specif': 2,
   'start': 1,
   'tell': 2,
   'tool': 1,
   'use': 1,
   'visual': 1,
   'way': 2,
   'web': 1,
   'without': 2,
   'wonder': 1,
   'word': 1,
   'world': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'android': 1,
   'app': 2,
   'applic': 3,
   'cakephp': 1,
   'codeignit': 1,
   'commerc': 1,
   'compon': 1,
   'core': 1,
   'custom': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 8,
   'e-commerc': 1,
   'email_verified': True,
   'expertis': 2,
   'facebook': 1,
   'facebook_connected': False,
   'frame': 1,
   'framework': 1,
   'html5': 1,
   'identity_verified': True,
   'implement': 1,
   'io': 1,
   'joomla': 2,
   'magento': 1,
   'mobil': 1,
   'modul': 1,
   'offshor': 1,
   'os': 1,
   'payment_verified': False,
   'phone_verified': True,
   'phonegap': 1,
   'php': 1,
   'plugin': 1,
   'profile_complete': True,
   'program': 1,
   'provid': 1,
   'rail': 1,
   'relat': 1,
   'rubi': 1,
   'servic': 1,
   'theme': 1,
   'virtuemart': 1,
   'web': 2,
   'wordpress': 2,
   'work': 1,
   'zend': 1},
  'M'),
 ({'10': 1,
   '11': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'academ': 1,
   'basis.mi': 1,
   'client': 2,
   'commun': 1,
   'complex': 1,
   'contact': 1,
   'content': 1,
   'cost': 1,
   'day': 2,
   'deposit_made': False,
   'determin': 1,
   'direct': 1,
   'directli': 1,
   'directori': 1,
   'ebook': 1,
   'effect': 1,
   'email_verified': True,
   'engin': 1,
   'english': 2,
   'entri': 1,
   'etci': 1,
   'exact': 1,
   'experienc': 1,
   'facebook_connected': False,
   'fluent': 1,
   'focus': 1,
   'forum': 1,
   'highli': 1,
   'hour': 1,
   'identity_verified': False,
   'interact': 1,
   'monitor': 1,
   'need': 1,
   'nomin': 1,
   'offer': 1,
   'optim': 1,
   'option': 1,
   'oversea': 1,
   'past': 1,
   'payment': 1,
   'payment_verified': False,
   'per': 2,
   'phone_verified': False,
   'post': 1,
   'prefer': 1,
   'press': 1,
   'price': 3,
   'product': 1,
   'profile_complete': True,
   'progress': 1,
   'project': 2,
   'rang': 1,
   'reason': 1,
   'requir': 1,
   'search': 1,
   'seo': 1,
   'short': 1,
   'solut': 1,
   'speak': 1,
   'specif': 2,
   'submiss': 1,
   'suit': 1,
   'typic': 1,
   'variou': 1,
   'web': 1,
   'write': 3,
   'writer': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='8'>,
   'First': 'w',
   'Last': '7',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'comput': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'graduat': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'scienc': 1},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 't',
   'Last': '5',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'capabl': 1,
   'creation': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'enter': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'microsoft': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': True,
   'point': 1,
   'profile_complete': True,
   'relat': 1,
   'set': 1,
   'work': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'M',
   'Last': '3',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'academ': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'financ': 1,
   'highest': 1,
   'identity_verified': False,
   'major': 1,
   'manageri': 1,
   'mba': 1,
   'nation': 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'posit': 1,
   'profile_complete': True,
   'qualif': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 's',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'africa': 1,
   'app': 1,
   'applic': 1,
   'asp': 1,
   'au': 1,
   'base': 2,
   'build': 1,
   'chang': 1,
   'compani': 2,
   'dashboard': 1,
   'deposit_made': True,
   'destin': 1,
   'devic': 1,
   'email_verified': True,
   'engin': 1,
   'exist': 1,
   'facebook_connected': False,
   'financi': 1,
   'forex': 1,
   'identity_verified': False,
   'in-hous': 1,
   'increas': 1,
   'industri': 1,
   'inhous': 1,
   'lead': 1,
   'linux': 1,
   'maintain': 1,
   'manag': 2,
   'migrat': 1,
   'mobil': 1,
   'move': 1,
   'mssql': 1,
   'offer': 1,
   'os': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php/mysql': 1,
   'port': 1,
   'portal': 1,
   'profile_complete': True,
   'project': 1,
   'rate': 1,
   'sa': 2,
   'school': 1,
   'server': 2,
   'site': 1,
   'softwar': 1,
   'solut': 1,
   'success': 1,
   'transact': 1,
   'travel': 1,
   'uk': 1,
   'web': 2,
   'websit': 1,
   'window': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'i',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'also': 1,
   'applic': 2,
   'base': 1,
   'core': 1,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'intelig': 1,
   'languag': 1,
   'latest': 1,
   'learn': 1,
   'machin': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'port': 1,
   'profile_complete': True,
   'special': 1,
   'techniqu': 1,
   'use': 1},
  'M'),
 ({"'m": 1,
   "'s": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 's',
   'Last': '1',
   'Numchar': 6,
   'Vowel': None,
   'api': 1,
   'aw': 1,
   'build': 1,
   'cento': 1,
   'citrix': 1,
   'debian': 1,
   'deposit_made': True,
   'email_verified': True,
   'engin': 1,
   'esxi': 1,
   'experienc': 1,
   'expert': 1,
   'facebook_connected': False,
   'found': 1,
   'googl': 1,
   'greet': 1,
   'identity_verified': False,
   'js': 1,
   'keyword': 1,
   'kvm': 1,
   'linux': 2,
   'list': 1,
   'love': 1,
   'map': 1,
   'media': 2,
   'nginx': 1,
   'oracl': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'relat': 1,
   'rhel': 1,
   'servic': 1,
   'stream': 3,
   'system': 1,
   'ubuntu': 1,
   'vmware': 1,
   'wowza': 1,
   'xenserv': 1},
  'M'),
 ({"'m": 2,
   'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'r',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'ajax': 1,
   'aka': 1,
   'blog': 1,
   'deposit_made': False,
   'django': 1,
   'dojo': 1,
   'email_verified': True,
   'experienc': 1,
   'facebook_connected': False,
   'hi': 1,
   'identity_verified': False,
   'javascript': 1,
   'jqueri': 1,
   'json': 1,
   'live': 1,
   'mootool': 1,
   'mysql': 1,
   'north': 1,
   'oracle-': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'prototyp': 1,
   'pylon': 1,
   'python': 1,
   'toolkit': 1,
   'webdevelop': 1,
   'xml': 1},
  'M'),
 ({'10+': 1,
   '6+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'a',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'advertis': 1,
   'base': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'experi': 2,
   'facebook_connected': False,
   'forward': 1,
   'freelanc': 1,
   'graphic': 1,
   'hong': 1,
   'identity_verified': False,
   'industri': 1,
   'invit': 1,
   'kong': 1,
   'like': 1,
   'look': 1,
   'market': 1,
   'overal': 1,
   'payment_verified': True,
   'phone_verified': True,
   'photography.i': 1,
   'portfolio': 1,
   'profile_complete': True,
   'request': 1,
   'retail': 1,
   'take': 1,
   'work': 2,
   'would': 1,
   'year': 2},
  'F'),
 ({"'s": 1,
   '...': 2,
   '10+': 1,
   '100': 1,
   '7': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='7'>,
   'First': 's',
   'Last': '6',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'accuraci': 1,
   'achiev': 1,
   'add': 1,
   'administr': 1,
   'almost': 1,
   'alway': 1,
   'area': 1,
   'around': 1,
   'articl': 1,
   'asp.net*': 1,
   'assist': 1,
   'best': 3,
   'blog': 1,
   'cart': 1,
   'client': 5,
   'commit': 1,
   'competit': 1,
   'compil': 1,
   'contact': 1,
   'continu': 1,
   'corner': 1,
   'css*': 1,
   'data': 2,
   'deliv': 1,
   'deposit_made': True,
   'describ': 1,
   'design': 1,
   'detail': 1,
   'develop': 1,
   'devis': 1,
   'directori': 1,
   'email_verified': True,
   'entri': 2,
   'erp': 1,
   'etc.web': 1,
   'event': 2,
   'everi': 2,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'far': 1,
   'focu': 1,
   'forum': 1,
   'freelanc': 2,
   'give': 1,
   'globe': 1,
   'hospit': 1,
   'hotel': 1,
   'hrm': 1,
   'html*': 1,
   'hubpag': 1,
   'huge': 1,
   'identity_verified': False,
   'import': 2,
   'industri': 1,
   'inform': 1,
   'job': 2,
   'key': 1,
   'like': 1,
   'link': 1,
   'ltd.': 1,
   'mainli': 1,
   'manag': 2,
   'name': 1,
   'one': 1,
   'onlin': 3,
   'particular': 1,
   'past': 1,
   'payment_verified': True,
   'payrol': 1,
   'per': 1,
   'percent': 1,
   'person': 1,
   'phone_verified': True,
   'platform': 1,
   'po': 1,
   'print': 1,
   'process': 1,
   'product': 1,
   'profil': 1,
   'profile_complete': True,
   'project': 2,
   'provid': 1,
   'qualiti': 1,
   'quick': 1,
   'rate': 1,
   'report': 1,
   'requirement.data': 1,
   'research': 4,
   'sale': 1,
   'satisfi': 1,
   'schedul': 1,
   'serv': 1,
   'servic': 3,
   'set': 1,
   'shop': 1,
   'sinc': 1,
   'site': 2,
   'small': 1,
   'social': 1,
   'softwar': 1,
   'solut': 2,
   'specif': 1,
   'squidoo': 1,
   'start': 1,
   'still': 1,
   'submiss': 2,
   'submission*': 2,
   'success': 1,
   'technolog': 1,
   'tri': 1,
   'turn': 1,
   'updat': 1,
   'upload': 1,
   'us': 1,
   'valuabl': 1,
   'virtual': 1,
   'websit': 1,
   'work': 3,
   'year': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'a',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'assist': 1,
   'backbone.j': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'interest': 1,
   'javascript': 3,
   'jqueri': 1,
   'middl': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 3,
   'pure': 1,
   'rail': 2,
   'react': 1,
   'rubi': 1,
   'simpli': 1,
   'well': 1,
   'work': 1},
  'M'),
 ({'6': 1,
   'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'h',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
   'applic': 2,
   'area': 1,
   'associ': 1,
   'bpm': 1,
   'busi': 2,
   'certif': 1,
   'certifi': 3,
   'data': 1,
   'deliveri': 1,
   'deploy': 1,
   'deposit_made': False,
   'develop': 7,
   'email_verified': True,
   'execut': 1,
   'experi': 2,
   'facebook_connected': False,
   'field': 1,
   'hibern': 1,
   'identity_verified': False,
   'implement': 1,
   'integr': 2,
   'java/j2e': 1,
   'languag': 1,
   'main': 1,
   'manag': 1,
   'payment_verified': False,
   'phone_verified': False,
   'platform': 1,
   'post': 1,
   'power': 1,
   'process': 4,
   'product': 3,
   'profile_complete': True,
   'project': 1,
   'server': 3,
   'servic': 2,
   'soa': 2,
   'softwar': 1,
   'solut': 1,
   'sphere': 4,
   'support': 1,
   'test': 1,
   'unit': 1,
   'web': 5,
   'webspher': 3,
   'year': 1},
  'M'),
 ({"'s": 2,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'h',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'accord': 2,
   'accuraci': 1,
   'achiev': 2,
   'across': 1,
   'allow': 2,
   'alway': 1,
   'applic': 1,
   'approach': 1,
   'apt': 1,
   'bank': 2,
   'benefit': 1,
   'best': 1,
   'bpo': 1,
   'bring': 1,
   'busi': 4,
   'calcul': 1,
   'capit': 1,
   'client': 2,
   'clients.our': 1,
   'collect': 1,
   'compani': 5,
   'competit': 2,
   'comput': 1,
   'consist': 1,
   'consult': 1,
   'content': 1,
   'continu': 1,
   'contract': 1,
   'convert': 4,
   'core': 2,
   'courtesi': 1,
   'creat': 2,
   'custom': 7,
   'daili': 1,
   'data': 1,
   'deliv': 1,
   'deliveri': 2,
   'demand': 1,
   'deposit_made': True,
   'design': 3,
   'develop': 2,
   'digit': 2,
   'distribut': 1,
   'diver': 3,
   'doc': 3,
   'document': 1,
   'drawn': 1,
   'driver': 1,
   'dynam': 1,
   'edg': 1,
   'edit': 1,
   'electron': 1,
   'email_verified': True,
   'emphasi': 1,
   'enabl': 1,
   'ensur': 2,
   'entir': 1,
   'environ': 1,
   'environment.our': 1,
   'excel': 1,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'faith': 1,
   'financ': 1,
   'flexibl': 1,
   'format': 1,
   'fund': 1,
   'gif': 2,
   'global': 2,
   'globe': 1,
   'goal': 1,
   'govern': 2,
   'help': 1,
   'highli': 2,
   'identity_verified': False,
   'imag': 2,
   'implement': 1,
   'improv': 1,
   'includ': 1,
   'industri': 1,
   'inform': 2,
   'innov': 1,
   'insight': 1,
   'insur': 2,
   'integr': 2,
   'intellig': 1,
   'intrins': 1,
   'keen': 1,
   'key': 1,
   'line': 1,
   'log': 4,
   'look': 1,
   'mainten': 1,
   'make': 2,
   'manag': 2,
   'manpow': 1,
   'manufactur': 1,
   'market': 1,
   'meet': 1,
   'member': 1,
   'mind': 1,
   'model': 1,
   'modifi': 1,
   'ms': 1,
   'mutual': 1,
   'need': 1,
   'number': 1,
   'offer': 2,
   'optim': 1,
   'partner': 1,
   'payment': 1,
   'payment_verified': True,
   'pdf': 1,
   'phone_verified': True,
   'pool': 1,
   'pride': 1,
   'pro-act': 1,
   'process': 3,
   'processingw': 1,
   'product': 4,
   'profession': 1,
   'profile_complete': True,
   'provid': 6,
   'qualiti': 2,
   'rang': 1,
   'reflect': 1,
   'relationship': 1,
   'reorgan': 1,
   'resourc': 1,
   'respons': 1,
   'retail': 1,
   'retain': 1,
   'sai': 1,
   'salari': 1,
   'schedul': 2,
   'servic': 8,
   'share': 1,
   'sheet': 1,
   'shop': 1,
   'simpl': 1,
   'skill': 2,
   'softwar': 3,
   'solut': 4,
   'soul': 1,
   'span': 1,
   'spirit': 1,
   'stage': 1,
   'strive': 1,
   'support': 1,
   'sustain': 1,
   'talent': 1,
   'task': 1,
   'team': 2,
   'technolog': 2,
   'technology-bas': 1,
   'time': 2,
   'today': 1,
   'total': 1,
   'track': 1,
   'transform': 1,
   'trend': 1,
   'trust': 1,
   'undertak': 1,
   'us': 1,
   'use': 2,
   'util': 1,
   'valu': 2,
   'variou': 1,
   'vast': 1,
   'vertic': 2,
   'virtualcad': 4,
   'vision': 1,
   'wealth': 1,
   'word': 4,
   'work': 1},
  'M'),
 ({"'s": 1,
   '...': 1,
   '35': 1,
   '78': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'q',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'articl': 1,
   'banner': 1,
   'better': 1,
   'blog': 1,
   'bring': 2,
   'busi': 3,
   'client': 5,
   'collabor': 1,
   'consist': 1,
   'cricket': 1,
   'daili': 1,
   'deposit_made': False,
   'either': 1,
   'email_verified': True,
   'end': 2,
   'energi': 1,
   'entrepreneur': 1,
   'exactli': 1,
   'facebook_connected': False,
   'faster': 1,
   'find': 1,
   'flyer': 1,
   'freelanc': 1,
   'gone': 1,
   'googl': 1,
   'guarante': 1,
   'help': 1,
   'ideal': 1,
   'identity_verified': False,
   'increas': 1,
   'interest': 1,
   'internet': 1,
   'know': 1,
   'lead': 1,
   'look': 1,
   'make': 2,
   'market': 1,
   'measur': 1,
   'media': 1,
   'money': 1,
   "n't": 1,
   'one': 1,
   'outsid': 1,
   'owner': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pleas': 1,
   'post': 1,
   'press': 1,
   'profile_complete': True,
   'qualifi': 1,
   'releas': 1,
   'remark': 1,
   'result': 2,
   'satisfi': 1,
   'save': 1,
   'search': 2,
   'see': 2,
   'sell': 1,
   'servic': 1,
   'small': 1,
   'social': 1,
   'stori': 1,
   'tell': 1,
   'time': 1,
   'tri': 1,
   'updat': 1,
   'visual': 1,
   'want': 1,
   'websit': 1,
   'work': 3},
  'F'),
 ({'...': 1,
   '9': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'c',
   'Last': '0',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'ajax': 1,
   'angularj': 2,
   'api': 1,
   'applic': 2,
   'assur': 1,
   'avail': 1,
   'bootstrap': 1,
   'button': 1,
   'code': 1,
   'contact': 1,
   'css3': 2,
   'custom': 1,
   'deliv': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'differ': 1,
   'email_verified': True,
   'end': 1,
   'experi': 2,
   'expertis': 1,
   'facebook_connected': True,
   'fair': 1,
   'fast': 2,
   'framework': 2,
   'front': 1,
   'get': 1,
   'googl': 1,
   'great': 1,
   'high-qual': 1,
   'hire': 1,
   'html5': 1,
   'identity_verified': False,
   'ignitor': 1,
   'integr': 1,
   'interact': 1,
   'javascript': 2,
   'lamp': 1,
   'larg': 1,
   'like': 1,
   'manag': 1,
   'map': 1,
   'media': 1,
   'method': 1,
   'mvc': 2,
   'mysql': 1,
   "n't": 1,
   'node.j': 1,
   'offer': 1,
   'payment': 1,
   'payment_verified': False,
   'perl': 1,
   'phone_verified': True,
   'php': 1,
   'price': 1,
   'profession': 1,
   'profile_complete': True,
   'prompt': 1,
   'qualiti': 1,
   'quick': 1,
   'react': 2,
   'reliabl': 1,
   'respons': 1,
   'robust': 1,
   'senior': 1,
   'server': 1,
   'servic': 1,
   'sever': 1,
   'shell': 1,
   'size': 1,
   'social': 1,
   'solutions-': 1,
   'sql': 1,
   'strong': 1,
   'summari': 1,
   'turnaround': 2,
   'web': 4,
   'wo': 1,
   'wordpress': 2,
   'work': 2,
   'would': 1,
   'xml': 1,
   'year': 1},
  'F'),
 ({'10': 1,
   '100': 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'client': 1,
   'deposit_made': False,
   'develop': 1,
   'drive': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'fortun': 1,
   'help': 1,
   'identity_verified': False,
   'implement': 1,
   'mnc': 1,
   'open': 1,
   'passion': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'provid': 1,
   'scale': 1,
   'sme': 2,
   'solut': 1,
   'sourc': 1,
   'succeed': 1,
   'success': 1,
   'technolog': 1,
   'use': 1,
   'variou': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'P',
   'Last': '5',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'academ': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'websit': 1,
   'writer': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'believ': 1,
   'clariti': 1,
   'clear': 1,
   'commun': 1,
   'content': 1,
   'custom': 1,
   'deliv': 1,
   'deposit_made': False,
   'email_verified': True,
   'engag': 1,
   'english': 1,
   'everi': 1,
   'expect': 1,
   'facebook_connected': False,
   'feedback': 1,
   'give': 1,
   'goal': 1,
   'grammar': 1,
   'high': 1,
   'highli': 1,
   'identity_verified': False,
   'key': 1,
   'make': 1,
   'nativ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'present': 1,
   'profession': 2,
   'profile_complete': True,
   'project': 2,
   'proper': 1,
   'qualiti': 2,
   'reader': 1,
   'satisfi': 1,
   'speaker': 1,
   'time': 2,
   'us': 1,
   'work': 3,
   'writer': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'deposit_made': False,
   'direct': 1,
   'easier': 1,
   'email_verified': True,
   'energi': 1,
   'experienc': 1,
   'facebook_connected': False,
   'flow': 1,
   'focu': 1,
   'found': 1,
   'freelanc': 1,
   'identity_verified': False,
   'im': 1,
   'internet': 1,
   'like': 1,
   'market': 3,
   'money': 1,
   'net': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'tradit': 1,
   'year': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'k',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'activ': 1,
   'ad': 1,
   'applic': 1,
   'assembl': 1,
   'authent': 1,
   'author': 1,
   'basic': 1,
   'c/c++': 1,
   'com': 1,
   'compon': 1,
   'consol': 1,
   'cryptographi': 1,
   'dcom': 1,
   'delphi': 1,
   'deposit_made': False,
   'develop': 1,
   'directori': 1,
   'eap': 1,
   'email_verified': True,
   'facebook_connected': False,
   'gdi': 1,
   'gui': 1,
   'identity_verified': False,
   'instrument': 1,
   'interfac': 1,
   'local': 1,
   'manag': 2,
   'microsoft': 1,
   'mmc': 1,
   'netbio': 1,
   'pascal': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'qt': 1,
   'secur': 1,
   'socket': 1,
   'softwar': 1,
   'system': 2,
   'unix/linux': 1,
   'visual': 1,
   'vpn': 1,
   'window': 4,
   'wmi': 1,
   'x': 1},
  'M'),
 ({"'m": 2,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'm',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'abl': 1,
   'alreadi': 1,
   'attent': 1,
   'bit': 1,
   'bore': 1,
   'chanc': 1,
   'clean': 1,
   'compani': 1,
   'convinc': 1,
   'custom': 2,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'germani': 1,
   'get': 2,
   'give': 1,
   'given': 1,
   'heavili': 1,
   'identity_verified': False,
   'implement': 1,
   'known': 2,
   'larg': 1,
   'life': 1,
   'littl': 1,
   'mani': 1,
   'pay': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'program': 1,
   'user-friendli': 1,
   'usual': 1,
   'varieti': 1,
   'well': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'f',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'ad': 1,
   'advantag': 1,
   'assist': 1,
   'base': 1,
   'client': 1,
   'current': 1,
   'deposit_made': False,
   'done': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'get': 1,
   'good': 1,
   'hi': 1,
   'identity_verified': False,
   'industri': 1,
   'job': 1,
   'knowledg': 2,
   'lead': 1,
   'manag': 1,
   'payment_verified': False,
   'peopl': 1,
   'person': 1,
   'phone_verified': True,
   'profil': 1,
   'profile_complete': True,
   'sinc': 1,
   'task': 1,
   'team': 1,
   'us': 1,
   'variou': 1,
   'virtual': 2,
   'work': 3},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'f',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'site': 1,
   'view': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'p',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'access': 2,
   'analyt': 1,
   'applic': 1,
   'area': 1,
   'client': 1,
   'consult': 1,
   'cours': 1,
   'curricula': 1,
   'databas': 2,
   'deposit_made': False,
   'design': 2,
   'detail-ori': 1,
   'develop': 2,
   'educ': 1,
   'email_verified': True,
   'employe': 1,
   'experi': 1,
   'expertis': 1,
   'extens': 1,
   'facebook_connected': False,
   'global': 1,
   'help': 1,
   'highli': 1,
   'identity_verified': False,
   'includ': 1,
   'independ': 1,
   'internet': 1,
   'leader': 1,
   'ms': 3,
   'offic': 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'provid': 2,
   'rang': 1,
   'school': 1,
   'servic': 1,
   'specif': 1,
   'technolog': 1,
   'train': 1,
   'transform': 1,
   'use': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'b.a': 1,
   'career': 1,
   'continu': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'grand': 1,
   'identity_verified': False,
   'look': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'state': 1,
   'univers': 1,
   'valley': 1,
   'work': 1,
   'write': 2},
  'M'),
 ({'2.5': 1,
   '2010.': 1,
   '3+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'e',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abl': 1,
   'api': 2,
   'applic': 1,
   'attent': 1,
   'autom': 3,
   'back': 1,
   'basic': 1,
   'blocker': 1,
   'case': 1,
   'choos': 1,
   'come': 1,
   'decemb': 1,
   'deposit_made': True,
   'design': 1,
   'detail': 1,
   'develop': 4,
   'differ': 1,
   'discov': 1,
   'done': 1,
   'email_verified': True,
   'engin': 3,
   'experienc': 1,
   'extens': 1,
   'extrem': 1,
   'facebook_connected': True,
   'find': 1,
   'framework': 3,
   'freelanc': 1,
   'full': 1,
   'get': 1,
   'got': 1,
   'hire': 1,
   'identity_verified': False,
   'implement': 1,
   'java': 1,
   'knowledg': 1,
   'last': 1,
   'linkedin': 1,
   'manual': 1,
   'need': 1,
   'one': 1,
   'organ': 1,
   'passion': 3,
   'payment_verified': False,
   'phone_verified': True,
   'plan': 1,
   'profil': 1,
   'profile_complete': True,
   'protocol': 1,
   'qa': 4,
   'qualiti': 1,
   'real': 2,
   'rest': 1,
   'right': 1,
   'script': 1,
   'selenium': 1,
   'senior': 1,
   'setup': 1,
   'side': 2,
   'soap': 1,
   'softwar': 1,
   'spent': 1,
   'strong': 1,
   'switch': 1,
   'test': 5,
   'tester': 1,
   'thing': 1,
   'variou': 1,
   'web': 3,
   'work': 2,
   'year': 3},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'c',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'administr': 1,
   'ahm': 1,
   'deposit_made': False,
   'email_verified': True,
   'experienc': 1,
   'facebook_connected': False,
   'hi': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'server': 1,
   'web': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'analysi': 1,
   'applic': 2,
   'architect': 1,
   'back-offic': 1,
   'client': 1,
   'compani': 2,
   'connect': 1,
   'custom': 1,
   'deposit_made': True,
   'design': 3,
   'develop': 6,
   'dynam': 1,
   'economi': 1,
   'email_verified': True,
   'engin': 1,
   'experi': 2,
   'extens': 1,
   'facebook_connected': True,
   'gener': 1,
   'horizont': 1,
   'identity_verified': False,
   'implement': 3,
   'integr': 4,
   'internet/intranet': 1,
   'market': 3,
   'new': 1,
   'offer': 2,
   'offshor': 1,
   'optim': 1,
   'part': 1,
   'payment_verified': False,
   'phone_verified': False,
   'product': 4,
   'product.w': 1,
   'profile_complete': True,
   'program': 1,
   'provid': 1,
   'search': 1,
   'sell': 1,
   'seo': 1,
   'servic': 5,
   'services.th': 1,
   'softwar': 3,
   'solut': 4,
   'support': 2,
   'system': 1,
   'take': 1,
   'technic': 1,
   'technolog': 2,
   'test': 1,
   'total': 1,
   'turnkey': 1,
   'user': 1,
   'vertic': 1,
   'web': 1,
   'web-sit': 1,
   'well': 2,
   'work': 1},
  'M'),
 ({"'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'v',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ajax': 1,
   'compon': 1,
   'deposit_made': False,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'fluent': 1,
   'food': 1,
   'identity_verified': False,
   'joomla': 1,
   'oop': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'russian': 1,
   'speaker': 1,
   'wonderland': 1,
   'work': 1,
   'xml': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'N',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'account': 1,
   'deposit_made': False,
   'email_verified': True,
   'expert': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'softwar': 1},
  'M'),
 ({'3.5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(12, 13), match='2'>,
   'First': 'v',
   'Last': '8',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'applic': 1,
   'area': 2,
   'autom': 1,
   'base': 1,
   'deposit_made': False,
   'ecommerc': 1,
   'email_verified': True,
   'experi': 1,
   'exposur': 1,
   'facebook_connected': False,
   'focu': 1,
   'function': 1,
   'identity_verified': False,
   'major': 1,
   'mobil': 1,
   'payment_verified': False,
   'phone_verified': False,
   'process': 1,
   'profile_complete': True,
   'project': 1,
   'selenium': 1,
   'softwar': 1,
   'system': 1,
   'technic': 1,
   'test': 3,
   'toward': 1,
   'use': 1,
   'web': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'...': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='0'>,
   'First': 'C',
   'Last': '7',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'adob': 1,
   'bfa': 1,
   'busi': 1,
   'creativ': 2,
   'cut': 1,
   'deposit_made': False,
   'educ': 1,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'final': 1,
   'identity_verified': False,
   'microsoft': 1,
   'new': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': False,
   'press': 1,
   'profile_complete': True,
   'quark': 1,
   'small': 1,
   'solut': 1,
   'studio': 1,
   'suit': 1,
   'univers': 1,
   'writingcont': 1,
   'york': 1},
  'F'),
 ({'15': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'R',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'banner': 1,
   'comput': 1,
   'current': 1,
   'degre': 1,
   'deposit_made': False,
   'design': 3,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'graphic': 2,
   'identity_verified': False,
   'master': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'technolog': 1,
   'web': 2,
   'year': 1},
  'F'),
 ({'15': 1,
   '2009.': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'x',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'also': 1,
   'back-end': 1,
   'career': 1,
   'comfort': 1,
   'deposit_made': False,
   'develop': 1,
   'drupal': 1,
   'email_verified': True,
   'encod': 1,
   'facebook_connected': False,
   'feel': 1,
   'front-end': 1,
   'identity_verified': False,
   'like': 1,
   'magento': 1,
   'modul': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'respons': 1,
   'sinc': 1,
   'start': 1,
   'succeed': 1,
   'symfony2': 1,
   'task': 1,
   'technolog': 1,
   'wordpress': 1},
  'M'),
 ({'18th': 1,
   '1985': 1,
   '1993': 1,
   '1999': 2,
   '2005': 2,
   '2006': 5,
   '2007': 3,
   '2008': 2,
   '2009': 1,
   '22': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='2'>,
   'First': 'b',
   'Last': '0',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   '\\xc3\\u02dc': 32,
   '\\xe2\\u20ac\\u201c': 2,
   'abil': 3,
   'academ': 1,
   'achiev': 1,
   'activ': 1,
   'akinola': 2,
   'akoko': 6,
   'analyt': 1,
   'appreci': 1,
   'architect': 1,
   'architectur': 3,
   'asp': 1,
   'attend': 1,
   'auto': 1,
   'birth': 2,
   'build': 1,
   'cad': 1,
   'career': 1,
   'centr': 1,
   'certif': 3,
   'christian': 1,
   'classic': 1,
   'colleg': 2,
   'command': 1,
   'commun': 1,
   'compet': 1,
   'complex': 1,
   'comput': 4,
   'consist': 1,
   'construct': 2,
   'contribut': 1,
   'correct': 1,
   'curricular': 1,
   'data': 1,
   'date': 1,
   'date\\xc3\\u02dc': 2,
   'deadlin': 1,
   'degre': 1,
   'deposit_made': False,
   'dept': 1,
   'develop': 1,
   'diploma': 1,
   'display': 1,
   'divers': 1,
   'easili': 1,
   'effect': 1,
   'email_verified': True,
   'energi': 1,
   'english': 1,
   'ensur': 1,
   'entrepreneuri': 1,
   'examin': 1,
   'excel': 2,
   'facebook_connected': False,
   'firm': 1,
   'five': 1,
   'form': 1,
   'formerli': 1,
   'giwa': 2,
   'goal': 1,
   'govt': 1,
   'growth': 1,
   'gsm': 1,
   'harmoni': 1,
   'headquart': 1,
   'heritag': 1,
   'high': 1,
   'human': 1,
   'identity_verified': False,
   'immens': 1,
   'institut': 1,
   'interperson': 1,
   'june': 1,
   'lago': 3,
   'land': 1,
   'landscap': 1,
   'languag': 1,
   'layout': 1,
   'learn': 1,
   'lectur': 1,
   'live': 1,
   'local': 1,
   'maintain': 1,
   'mainten': 1,
   'male': 1,
   'manageri': 1,
   'marit': 1,
   'maven': 1,
   'maxim': 1,
   'meet': 1,
   'minimum': 1,
   'nation': 3,
   'nd': 1,
   'neighborhood': 2,
   'nigeria': 8,
   'nigerian': 1,
   'oba': 4,
   'object': 2,
   'offic': 2,
   'ondo': 9,
   'optim': 1,
   'organiz': 1,
   'organization\\xe2\\u20ac\\u2122': 1,
   'origin': 1,
   'osun': 2,
   'owo': 3,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'place': 2,
   'plan': 2,
   'polic': 2,
   'polytechn': 3,
   'pressur': 1,
   'primari': 1,
   'process': 1,
   'product': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 2,
   'prospect': 1,
   'public': 2,
   'qualif': 1,
   'quickli': 1,
   'recreat': 1,
   'relat': 2,
   'relax': 1,
   'religi': 1,
   'research': 1,
   'resourc': 1,
   'road': 1,
   'rufu': 2,
   'school': 3,
   'senior': 2,
   'sex': 1,
   'shop': 1,
   'singl': 1,
   'site': 1,
   'skill': 6,
   'solut': 1,
   'south': 1,
   'space': 1,
   'spirit': 1,
   'sport': 1,
   'star': 1,
   'state': 14,
   'statu': 1,
   'step': 1,
   'suit': 1,
   'supervis': 1,
   'system': 1,
   'take': 1,
   'team': 1,
   'tel': 4,
   'three': 1,
   'time': 1,
   'top': 1,
   'toward': 1,
   'town': 1,
   'travel': 1,
   'twenti': 1,
   'use': 1,
   'util': 1,
   'west': 1,
   'work': 6},
  'M'),
 ({"'s": 2,
   '2008': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'm',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'analysi': 1,
   'autom': 1,
   'busi': 1,
   'challeng': 1,
   'code': 1,
   'commun': 2,
   'contribut': 1,
   'critic': 1,
   'customers.i': 1,
   'deploy': 1,
   'deposit_made': True,
   'drupal': 5,
   'email_verified': True,
   'enterpris': 1,
   'expert': 1,
   'facebook_connected': False,
   'grow': 2,
   'help': 1,
   'identity_verified': False,
   'involv': 1,
   'issu': 1,
   'lead': 1,
   'lot': 1,
   'mnc': 1,
   'organization.i': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'product': 1,
   'profile_complete': True,
   'provid': 2,
   'sinc': 1,
   'software/web': 1,
   'solut': 2,
   'solv': 1,
   'statist': 1,
   'support': 1,
   'variou': 1,
   'work': 2},
  'M'),
 ({"'m": 2,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'o',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'activ': 1,
   'ajax': 1,
   'also': 2,
   'applic': 1,
   'base': 1,
   'branch': 1,
   'care': 1,
   'cross-brows': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'framework': 1,
   'freelanc': 1,
   'graphic': 1,
   'identity_verified': False,
   'interact': 1,
   'involv': 1,
   'jqueri': 1,
   'js': 1,
   'like': 1,
   'mani': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'script': 1,
   'server-sid': 1,
   'templat': 1,
   'web': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'v',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'acc': 1,
   'deposit_made': False,
   'email_verified': True,
   'excel': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'ms': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'visio': 1,
   'word': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'P',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'agenda': 1,
   'area': 1,
   'articl': 1,
   'behind': 1,
   'better': 1,
   'busi': 1,
   'challeng': 2,
   'client': 2,
   'compromis': 1,
   'continu': 1,
   'daili': 1,
   'date': 1,
   'deadlin': 1,
   'decid': 1,
   'deliv': 1,
   'deposit_made': True,
   'done': 1,
   'down.thank': 1,
   'email_verified': True,
   'ever': 1,
   'experi': 1,
   'experienc': 1,
   'facebook_connected': False,
   'fail': 1,
   'frame': 1,
   'give': 1,
   'great': 1,
   'handl': 1,
   'height': 1,
   'hi': 1,
   'identity_verified': False,
   'improv': 1,
   'intens': 1,
   'let': 1,
   'look': 1,
   'love': 2,
   'make': 1,
   'mani': 1,
   'moment': 1,
   'never': 1,
   'new': 1,
   'payment_verified': False,
   'phone_verified': True,
   'prime': 1,
   'profile_complete': True,
   'project': 2,
   'provid': 1,
   'qualiti': 2,
   'regard': 1,
   'relat': 1,
   'result': 1,
   'short': 1,
   'sure': 1,
   'take': 1,
   'team': 3,
   'that': 1,
   'tight': 1,
   'till': 1,
   'time': 2,
   'trust': 3,
   'us': 4,
   'well': 1,
   'within': 1,
   'without': 1,
   'work': 4,
   'would': 3,
   'writer': 1,
   'year': 1},
  'M'),
 ({"'m": 1,
   '3d': 2,
   '9': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='6'>,
   'First': 'r',
   'Last': '5',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'charact': 1,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'etc..': 1,
   'exactli': 1,
   'experi': 1,
   'expertis': 1,
   'exterior': 1,
   'facebook_connected': True,
   'graphic': 1,
   'hi': 1,
   'identity_verified': False,
   'illustr': 1,
   'interior': 1,
   'look': 1,
   'max': 1,
   'maya': 1,
   'model': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'potenti': 1,
   'product': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 1,
   'qualiti': 1,
   'quick': 1,
   'ray': 1,
   'right': 1,
   'skill': 1,
   'start': 1,
   'v': 1,
   'want': 1,
   'well': 1,
   'work': 3,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'u',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'look': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'qualiti': 1,
   'serious': 1,
   'work': 2},
  'F'),
 ({"'re": 1,
   "'s": 2,
   '1,000': 1,
   'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'also': 1,
   'appear': 1,
   'becom': 1,
   'brand': 1,
   'browser': 1,
   'care': 2,
   'code': 1,
   'configur': 1,
   'content': 3,
   'creat': 1,
   'css': 1,
   'deposit_made': True,
   'design': 1,
   'directli': 1,
   'dramat': 1,
   'easili': 1,
   'email_verified': True,
   'engin': 2,
   'enjoy': 1,
   'enough': 1,
   'enter': 1,
   'expert': 1,
   'facebook_connected': False,
   'forward': 1,
   'graphic': 1,
   'hand': 1,
   'help': 3,
   'html': 1,
   'identity_verified': False,
   'import': 1,
   'improv': 1,
   'increas': 2,
   'invis': 1,
   'learn': 1,
   'make': 1,
   'memor': 1,
   'one': 2,
   'onto': 1,
   'optim': 2,
   'payment_verified': True,
   'percent': 1,
   'phone_verified': False,
   'posit': 1,
   'privileg': 1,
   'profile_complete': True,
   'recognit': 1,
   'search': 6,
   'seo': 3,
   'servic': 1,
   'sure': 1,
   'theme': 2,
   'thousand': 1,
   'url': 1,
   'user': 1,
   'visibl': 1,
   'visit': 2,
   'websit': 4,
   'wo': 2,
   'wordpress': 5,
   'work': 1,
   'ye': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'k',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'bot': 1,
   'deposit_made': True,
   'develop': 2,
   'email_verified': True,
   'expert': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'seo': 2,
   'softwar': 1,
   'work': 1},
  'F'),
 ({"'ve": 3,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'alway': 1,
   'analyst': 1,
   'busi': 1,
   'c': 1,
   'c++': 1,
   'client': 1,
   'code': 3,
   'day': 1,
   'demo': 1,
   'deposit_made': False,
   'drupal': 1,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'hobbi': 1,
   'identity_verified': False,
   'includ': 1,
   'job': 1,
   'joomla': 2,
   'like': 1,
   'mambo': 1,
   'mingl': 1,
   'past': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'provid': 1,
   'quit': 1,
   'receiv': 1,
   'run': 1,
   'school': 1,
   'server': 1,
   'site': 1,
   'solut': 1,
   'student': 1,
   'ten': 1,
   'time': 1,
   'undergrad': 1,
   'univers': 1,
   'vb': 1,
   'want': 1,
   'wordpress': 1,
   'year': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'account': 1,
   'background': 1,
   'book': 1,
   'deposit_made': True,
   'design': 1,
   'email_verified': True,
   'everyth': 1,
   'facebook_connected': False,
   'financi': 1,
   'forward': 1,
   'identity_verified': False,
   'keep': 1,
   'look': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'statement': 1,
   'thinker': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'y',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'articl': 1,
   'broker': 1,
   'captiv': 1,
   'content': 1,
   'deadlin': 1,
   'deposit_made': False,
   'desk': 1,
   'email_verified': True,
   'facebook_connected': False,
   'goal': 1,
   'grammar': 1,
   'handl': 1,
   'identity_verified': False,
   'keep': 1,
   'last': 1,
   'let': 1,
   'need': 1,
   'payment_verified': False,
   'perfect': 1,
   'phone_verified': True,
   'piec': 1,
   'profile_complete': True,
   'project': 1,
   'punctuat': 1,
   'score': 1,
   'second': 1,
   'style': 1,
   'text': 1,
   'tick': 1,
   'wordsmith': 1,
   'work': 1,
   'write': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'r',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'alway': 1,
   'deposit_made': False,
   'email_verified': True,
   'expertis': 1,
   'facebook_connected': False,
   'hard': 1,
   'identity_verified': False,
   'learn': 1,
   'look': 1,
   'loyal': 1,
   'need': 1,
   'new': 2,
   'one': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'realli': 1,
   'servic': 1,
   'sincer': 1,
   'smart': 1,
   'softwar': 1,
   'technic': 1,
   'thing': 1,
   'want': 1,
   'worker': 1},
  'M'),
 ({"'m": 1,
   '6': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'o',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'clientel': 1,
   'commerci': 1,
   'deadlin': 1,
   'deposit_made': False,
   'done': 1,
   'effect': 1,
   'email_verified': True,
   'equal': 1,
   'experi': 1,
   'facebook_connected': False,
   'film': 1,
   'grow': 1,
   'hope': 1,
   'identity_verified': False,
   'list': 1,
   'passion': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'task': 1,
   'televis': 1,
   'tight': 1,
   'varieti': 1,
   'visual': 1,
   'year': 1},
  'M'),
 ({'...': 1,
   'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'o',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'accent': 1,
   'alway': 1,
   'asia': 1,
   'assur': 1,
   'australia': 1,
   'bangladesh': 1,
   'believ': 1,
   'better': 1,
   'bidder': 1,
   'biswa': 2,
   'canada': 1,
   'comfort': 1,
   'custom': 3,
   'deliveri': 1,
   'deposit_made': False,
   'director': 1,
   'durat': 1,
   'email_verified': True,
   'enthusiast': 1,
   'facebook_connected': True,
   'firm': 1,
   'identity_verified': True,
   'inform': 1,
   'keep': 1,
   'long': 1,
   'loop': 1,
   'manag': 1,
   'one': 2,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'progress': 1,
   'project': 4,
   'qualiti': 2,
   'realli': 1,
   'relat': 1,
   'relax': 1,
   'rest': 1,
   'satisfact': 1,
   'seriou': 1,
   'servic': 1,
   'technolog': 1,
   'time': 1,
   'uk': 1,
   'usa': 1,
   'work': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'l',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'api-': 1,
   'api.-': 1,
   'applic': 1,
   'cakephp': 1,
   'css': 1,
   'databas': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook': 1,
   'facebook_connected': False,
   'feed': 1,
   'framework': 1,
   'googl': 1,
   'graph': 1,
   'html': 1,
   'html5': 1,
   'identity_verified': False,
   'integr': 1,
   'javascript': 1,
   'jira': 1,
   'job': 1,
   'jquery/ajax': 1,
   'languag': 1,
   'map': 1,
   'memcach': 1,
   'misc': 1,
   'multi': 1,
   'mvc': 1,
   'mysql.-': 1,
   'netbean': 1,
   'oophp': 1,
   'payment_verified': False,
   'pdo': 1,
   'phone_verified': False,
   'php5': 1,
   'profile_complete': True,
   'rss': 1,
   'search': 1,
   'services.-': 1,
   'svn': 1,
   'web': 3,
   'websites.-': 1,
   'xhtml': 1,
   'xml': 2},
  'M'),
 ({'..': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'bpo': 1,
   'busi': 1,
   'deposit_made': False,
   'email_verified': True,
   'exp': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'industri': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'run': 1,
   'tri': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'*\\thave': 2,
   '*\\tsound': 2,
   '01': 1,
   '10th': 1,
   '17': 1,
   '17th': 2,
   '200': 2,
   '2003': 1,
   '2006': 2,
   '2007': 2,
   '2009': 1,
   '2d': 1,
   '3': 3,
   '3.0': 1,
   '31st': 1,
   '36': 2,
   '3d': 1,
   '4': 1,
   '5': 1,
   '6': 1,
   '600': 1,
   '8': 2,
   '800': 1,
   '94.3': 4,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='P'>,
   'Digit': None,
   'First': 'P',
   'Last': 'y',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '\\xe2\\u20ac\\u0153best': 1,
   '\\xe2\\u20ac\\u201c': 6,
   'abl': 1,
   'achiev': 1,
   'act': 1,
   'add': 1,
   'ahead': 1,
   'aid': 1,
   'airllab': 2,
   'also': 1,
   'among': 1,
   'ampl': 1,
   'anim': 1,
   'associ': 1,
   'audio': 3,
   'bardl': 2,
   'bringer': 2,
   'cdj': 3,
   'certifi': 1,
   'challeng': 1,
   'channel': 3,
   'citi': 2,
   'codec': 1,
   'commun': 1,
   'consol': 1,
   'contain': 1,
   'cut': 1,
   'date': 4,
   'day': 2,
   'deposit_made': False,
   'design': 1,
   'digit': 3,
   'digital-mix': 2,
   'dil': 2,
   'dj': 1,
   'done': 2,
   'drama': 1,
   'dub': 1,
   'edit': 2,
   'educ': 1,
   'electron': 1,
   'email_verified': True,
   'end': 3,
   'engin': 3,
   'english': 1,
   'esteem': 1,
   'etc': 2,
   'etc\\xe2\\u20ac\\xa6': 1,
   'expect': 1,
   'experi': 2,
   'explor': 1,
   'facebook_connected': False,
   'final': 1,
   'fl': 1,
   'fm': 5,
   'forg': 1,
   'freelanc': 1,
   'garag': 1,
   'gave': 1,
   'graphic': 1,
   'hindi': 1,
   'human': 1,
   'identity_verified': False,
   'india': 1,
   'internet': 1,
   'j': 1,
   'jan': 1,
   'jiyo': 2,
   'knowledg': 1,
   'known\\t': 1,
   'languag': 1,
   'last': 1,
   'level': 2,
   'live': 1,
   'look': 1,
   'marathi': 1,
   'may': 3,
   'mix': 2,
   'mixer': 2,
   'mk2': 2,
   'modul': 1,
   'month': 4,
   'month\\xe2\\u20ac\\u2122': 1,
   'myfm': 2,
   'nagpur': 5,
   'nation': 2,
   'nuendo': 2,
   'object': 1,
   'oct': 2,
   'onair': 2,
   'opportun': 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pioneer': 3,
   'play': 1,
   'posit': 1,
   'privat': 1,
   'pro': 1,
   'produc': 3,
   'product': 2,
   'profici': 1,
   'profile_complete': True,
   'promo': 4,
   'provid': 1,
   'qualif': 1,
   'r': 2,
   'raipur': 2,
   'rc': 2,
   'record': 1,
   'region': 1,
   'repeat': 1,
   'right': 1,
   'se': 2,
   'servic': 1,
   'show': 1,
   'sinc': 1,
   'softwar': 3,
   'sound': 5,
   'stage': 1,
   'start': 3,
   'station': 1,
   'storm': 1,
   'studio': 2,
   'technic': 1,
   'techniqu': 1,
   'time': 1,
   'transfer': 1,
   'transmiss': 1,
   'tx': 2,
   'upto': 1,
   'use': 2,
   'user': 1,
   'v2': 1,
   'v3': 2,
   'vega': 1,
   'vers': 1,
   'visual': 1,
   'work': 6,
   'yamaha': 2,
   'year': 1},
  'M'),
 ({'+254': 2,
   '097e-mail': 1,
   '10': 1,
   '10.': 1,
   '100': 2,
   '1986nation': 1,
   '2008-2009': 1,
   '2008/2009': 1,
   '2009': 1,
   '2011': 1,
   '2012': 1,
   '2013.2006-2007': 1,
   '2015.2007-2011': 1,
   '2015\\tmaseno': 1,
   '266': 1,
   '50': 1,
   '595': 1,
   '715': 1,
   '722779914': 1,
   '727': 1,
   '875': 1,
   '9.6': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'r',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '\\t': 1,
   '\\t25th': 1,
   '\\t26457404languag': 1,
   '\\t\\t+254': 1,
   '\\t\\tmaled': 1,
   '\\tacadem': 1,
   '\\tenglish': 1,
   '\\tkenyanid': 1,
   '\\tmaseno': 4,
   '\\tmisori': 1,
   '\\tonyango': 1,
   '\\tresearch': 2,
   '\\tsingletel': 1,
   '\\tst': 1,
   '\\tthe': 2,
   '\\xe2\\u20ac\\u201c': 4,
   'academ': 1,
   'across': 1,
   'address': 1,
   'adult': 1,
   'advanc': 1,
   'africa': 1,
   'african': 3,
   'agenda': 2,
   'ambiti': 1,
   'appetit': 1,
   'appreciation.refereesgeorg': 1,
   'art': 2,
   'articl': 4,
   'articles2012': 1,
   'attend': 2,
   'attract': 1,
   'august': 1,
   'awb': 1,
   'ba': 2,
   'bachelor': 2,
   'background2013': 1,
   'basi': 1,
   'basic': 1,
   'benchmark': 1,
   'big': 1,
   'birth': 1,
   'blog': 3,
   'brief': 2,
   'brought': 1,
   'bureau': 1,
   'busi': 7,
   'career': 3,
   'center': 3,
   'certif': 3,
   'class': 1,
   'colleg': 1,
   'commun': 3,
   'compani': 2,
   'complet': 2,
   'comput': 2,
   'conduct': 3,
   'confer': 1,
   'content': 2,
   'contest': 2,
   'cours': 3,
   'cover': 1,
   'creat': 1,
   'credit.2003-2006': 1,
   'curriculum': 1,
   'custom': 1,
   'deal': 1,
   'defer': 1,
   'department': 1,
   'deposit_made': False,
   'design': 1,
   'detailsful': 1,
   'director': 1,
   'divis': 1,
   'e.a': 1,
   'east': 4,
   'editingachievements2010-2011': 1,
   'editor': 1,
   'educ': 2,
   'email_verified': True,
   'emerg': 1,
   'entri': 1,
   'essay': 1,
   'experi': 1,
   'experience2013': 1,
   'facebook_connected': False,
   'fact': 1,
   'featur': 2,
   'field': 1,
   'finalist': 1,
   'finest': 1,
   'follow': 1,
   'gather': 1,
   'grade.1994-2002': 1,
   'graduat': 2,
   'gruel': 1,
   'guchu': 1,
   'half': 1,
   'high': 2,
   'identity_verified': False,
   'inform': 4,
   'innov': 1,
   'insati': 1,
   'institut': 1,
   'interest': 1,
   'interview': 2,
   'jacob': 1,
   'joonyango2012': 1,
   'journal': 3,
   'journalist': 1,
   'kcpe': 1,
   'kcse': 1,
   'kenya': 4,
   'kiswahilimarit': 1,
   'kombo': 1,
   'lead': 1,
   'left': 1,
   'leonard': 1,
   'ligisa': 1,
   'limit': 2,
   'link': 1,
   'long': 1,
   'magazine.2008': 1,
   'manag': 2,
   'market': 2,
   'media': 5,
   'microsoft': 1,
   'million': 1,
   'mitc': 1,
   'muc': 1,
   'name': 1,
   'new': 2,
   'next': 1,
   'nose': 1,
   'number': 1,
   'object': 1,
   'objectivejacob': 1,
   'offic': 1,
   'one': 1,
   'opportunities.2008-2009': 1,
   'organ': 1,
   'otienogend': 1,
   'overal': 1,
   'paper': 1,
   'part': 1,
   'part-tim': 1,
   'particip': 1,
   'paul\\xe2\\u20ac\\u2122': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photojourn': 1,
   'plu': 3,
   'prefer': 1,
   'present': 2,
   'press': 1,
   'primari': 2,
   'proceed': 1,
   'profile_complete': True,
   'project': 2,
   'publish': 2,
   'purs': 1,
   'pursu': 3,
   'qualiti': 1,
   'rang': 1,
   'rate': 1,
   'readi': 1,
   'region': 1,
   'research': 4,
   'rwc': 2,
   'sale': 1,
   'sampl': 1,
   'sat': 2,
   'scale': 1,
   'school': 2,
   'school.work': 1,
   'scienc': 2,
   'scoop': 1,
   'score': 1,
   'script': 1,
   'second': 1,
   'secondari': 2,
   'set': 1,
   'skill': 2,
   'skills.oth': 1,
   'skillsbas': 1,
   'social': 2,
   'sponsor': 1,
   'statu': 1,
   'still': 1,
   'stori': 1,
   'straightforward': 1,
   'strong': 1,
   'student': 1,
   'studi': 3,
   'submiss': 1,
   'submit': 2,
   'supervis': 2,
   'task.academ': 1,
   'technolog': 5,
   'tel': 2,
   'ten': 1,
   'time': 4,
   'took': 1,
   'train': 3,
   'univers': 5,
   'upper': 1,
   'use': 1,
   'video': 1,
   'vitaeperson': 1,
   'web': 3,
   'websit': 1,
   'win': 1,
   'world': 1,
   'worth': 1,
   'write': 7,
   'writer': 2,
   'written': 2,
   'year': 2,
   'young': 1},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'agenc': 1,
   'compani': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 1,
   'digit': 2,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'market': 1,
   'payment_verified': True,
   'philippin': 1,
   'phone_verified': True,
   'profile_complete': True,
   'richard': 1,
   'run': 1,
   'small': 1,
   'web': 2,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 's',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'applic': 1,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'experi': 1,
   'experienc': 1,
   'facebook_connected': False,
   'full': 2,
   'identity_verified': False,
   'lifecycl': 1,
   'oper': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'stack': 1,
   'web': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
   'alway': 1,
   'best': 1,
   'client': 1,
   'deposit_made': True,
   'develop': 2,
   'email_verified': True,
   'facebook_connected': False,
   'fl': 1,
   'give': 1,
   'identity_verified': False,
   'learn': 1,
   'love': 1,
   'newest': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 1,
   'produc': 1,
   'profile_complete': True,
   'receiv': 1,
   'rubi': 1,
   'servic': 1,
   'show': 1,
   'tampa': 1,
   'techniqu': 1,
   'web': 1,
   'work': 1},
  'M'),
 ({'11:00': 1,
   '40': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'b',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'avail': 1,
   'deposit_made': False,
   'easili': 1,
   'email_verified': True,
   'facebook_connected': False,
   'gmt': 1,
   'hour': 1,
   'identity_verified': False,
   'mon': 1,
   'onlin': 1,
   'payment_verified': False,
   'per': 1,
   'phone_verified': False,
   'portfolio': 1,
   'profile_complete': True,
   'promin': 1,
   'reach': 1,
   'sat': 1,
   'site': 1,
   'week': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 's',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'amazon': 1,
   'commerc': 1,
   'deposit_made': True,
   'e': 1,
   'email_verified': True,
   'etc': 1,
   'expert.': 1,
   'facebook_connected': False,
   'financi': 1,
   'flipkart': 1,
   'freelanc': 1,
   'hardwar': 1,
   'identity_verified': False,
   'like': 1,
   'onlin': 1,
   'payment_verified': True,
   'phone_verified': False,
   'product': 1,
   'profession': 1,
   'profile_complete': True,
   'sell': 2,
   'servic': 1,
   'site': 1,
   'snapdeal': 1,
   'variou': 1},
  'M'),
 ({'30': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='6'>,
   'First': 'z',
   'Last': '1',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'armi': 2,
   'assur': 1,
   'attent': 1,
   'attitud': 1,
   'award': 1,
   'big': 1,
   'bring': 1,
   'dedic': 1,
   'deposit_made': False,
   'detail': 1,
   'disciplin': 1,
   'email_verified': True,
   'ex': 1,
   'facebook_connected': False,
   'futur': 1,
   'hallmark': 1,
   'identity_verified': False,
   'irrespect': 1,
   'job': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': False,
   'posit': 1,
   'profile_complete': True,
   'provid': 1,
   'regret': 1,
   'servic': 2,
   'small': 1,
   'whether': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'o',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'alway': 1,
   'assur': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'home': 1,
   'identity_verified': False,
   'job': 1,
   'like': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'prompt': 1,
   'qualiti': 1,
   'remain': 1},
  'M'),
 ({'2000/2005/2008': 1,
   '5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'h',
   'Last': '7',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'access': 1,
   'activ': 2,
   'ado/': 1,
   'angularj': 2,
   'citi': 1,
   'compon': 1,
   'crystal': 1,
   'data': 1,
   'databas': 1,
   'db': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'dynam': 1,
   'email_verified': True,
   'entiti': 1,
   'excel': 1,
   'facebook_connected': False,
   'file': 1,
   'format': 1,
   'framework': 1,
   'identity_verified': False,
   'ii': 1,
   'imag': 1,
   'javascript': 1,
   'js': 1,
   'kendo': 1,
   'lead': 1,
   'linq': 1,
   'microsoft': 2,
   'ms': 5,
   'mvc': 1,
   'nunit': 1,
   'odbc': 1,
   'offic': 3,
   'one': 1,
   'outlook': 1,
   'pars': 1,
   'pattern': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'program': 2,
   'report': 5,
   'server': 1,
   'servic': 1,
   'sql': 1,
   'summari': 1,
   'technic': 1,
   'technolog': 1,
   'tool': 1,
   'ui-': 1,
   'vba': 1,
   'viewer': 1,
   'wcf': 1},
  'M'),
 ({'7': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'k',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'around': 1,
   'data': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'entri': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'java': 1,
   'like': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'softwar': 1,
   'technolog': 1,
   'work': 1,
   'would': 1,
   'yr': 1},
  'M'),
 ({"''": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
   'Digit': None,
   'First': 'B',
   'Last': 'X',
   'Numchar': 3,
   'Vowel': None,
   '``': 1,
   'achiev': 1,
   'adob': 1,
   'among': 1,
   'build': 1,
   'capabl': 1,
   'capac': 1,
   'carrier': 1,
   'commun': 1,
   'comput': 1,
   'coupl': 1,
   'deposit_made': True,
   'design': 1,
   'domain': 1,
   'email_verified': True,
   'engin': 1,
   'excel': 1,
   'experience.i': 1,
   'facebook_connected': False,
   'faculti': 1,
   'field': 1,
   'file': 1,
   'form': 1,
   'graduat': 1,
   'help': 1,
   'identity_verified': False,
   'knowledg': 1,
   'mani': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'realiz': 1,
   'scienc': 1,
   'sinc': 1,
   'special': 1,
   'strong': 2,
   'team': 1,
   'univers': 1,
   'web': 1,
   'wish': 1,
   'work': 1,
   'year': 2},
  'M'),
 ({'3': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'ajax': 1,
   'also': 1,
   'area': 1,
   'bug': 1,
   'build': 1,
   'busi': 1,
   'compani': 1,
   'compet': 1,
   'complet': 1,
   'core': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'email_verified': True,
   'end-end': 1,
   'experi': 1,
   'facebook_connected': True,
   'fix': 1,
   'follow': 1,
   'framework': 1,
   'ground': 1,
   'hmtl': 1,
   'identity_verified': False,
   'includ': 1,
   'last': 1,
   'lie': 1,
   'manag': 1,
   'mvc': 1,
   'mysql': 1,
   'new': 1,
   'oop': 1,
   'opportun': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'rang': 1,
   'seek': 1,
   'site': 1,
   'softwar': 1,
   'sql': 1,
   'startup': 1,
   'test': 1,
   'use': 1,
   'websit': 3,
   'wide': 1,
   'year': 1},
  'M'),
 ({"'m": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'S',
   'Last': '1',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'ali': 1,
   'appli': 1,
   'bangladesh': 1,
   'chemic': 1,
   'chemistri': 1,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'leav': 1,
   'name': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'rajshahi': 1,
   'student': 1,
   'univers': 1},
  'M'),
 ({'.net': 2,
   '1.6': 1,
   '15': 1,
   '2': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'k',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'agil': 1,
   'ajax': 1,
   'analyt': 1,
   'applic': 2,
   'architect': 1,
   'arm': 1,
   'avid': 1,
   'base': 3,
   'believ': 2,
   'busi': 2,
   'c': 1,
   'capabl': 1,
   'capac': 1,
   'client': 1,
   'coder': 1,
   'comfort': 1,
   'command': 1,
   'complet': 1,
   'convers': 1,
   'cycl': 1,
   'deliveri': 1,
   'deposit_made': False,
   'develop': 4,
   'domain': 1,
   'driven': 1,
   'earlier': 1,
   'eclips': 1,
   'email_verified': True,
   'embed': 1,
   'english': 1,
   'entrepreneur': 1,
   'etc': 1,
   'etc..': 1,
   'experienc': 1,
   'expos': 1,
   'facebook_connected': False,
   'fast': 1,
   'feedback': 1,
   'focu': 1,
   'gui': 1,
   'hand': 1,
   'identity_verified': False,
   'industri': 1,
   'input': 1,
   'iter': 1,
   'java': 3,
   'junit': 1,
   'launch': 1,
   'lead': 3,
   'learner': 1,
   'manufactur': 1,
   'market': 1,
   'mechan': 1,
   'meet': 1,
   'mortgag': 1,
   'open': 1,
   'particip': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': True,
   'primarili': 1,
   'profile_complete': True,
   'project': 6,
   'python': 1,
   'requir': 1,
   'sampl': 1,
   'schedul': 2,
   'server': 1,
   'short': 1,
   'skill': 1,
   'skype': 1,
   'softwar': 2,
   'sourc': 1,
   'specif': 1,
   'stakehold': 1,
   'strong': 2,
   'success': 1,
   'team': 3,
   'technolog': 1,
   'test': 1,
   'tool': 1,
   'translat': 1,
   'turnkey': 1,
   'understand': 1,
   'us': 1,
   'use': 1,
   'varieti': 1,
   'version': 1,
   'voip': 1,
   'web': 2,
   'wide': 1,
   'work': 1,
   'workflow': 1,
   'world': 1,
   'year': 1},
  'M'),
 ({'18': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': None,
   'First': 'E',
   'Last': 'x',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'agenc': 1,
   'audienc': 1,
   'busi': 1,
   'compani': 1,
   'deposit_made': True,
   'design': 2,
   'email_verified': True,
   'everyth': 1,
   'experi': 1,
   'extens': 1,
   'facebook_connected': True,
   'forward': 1,
   'govern': 1,
   'graphic': 2,
   'identity_verified': False,
   'individu': 1,
   'kind': 1,
   'look': 1,
   'organ': 1,
   'payment_verified': True,
   'phone_verified': True,
   'product': 2,
   'profile_complete': True,
   'provid': 1,
   'purpos': 1,
   'sens': 1,
   'year': 1},
  'M'),
 ({'.experienc': 1,
   '2012': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'aspect': 1,
   'avaya': 1,
   'ccna': 2,
   'ccnp': 2,
   'collabor': 1,
   'comfort': 1,
   'complet': 1,
   'configur': 1,
   'consult': 1,
   'deep': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'ethernet': 1,
   'experi': 1,
   'facebook_connected': True,
   'hold': 1,
   'identity_verified': False,
   'implement': 1,
   'instal': 1,
   'ip': 1,
   'junip': 1,
   'knowledg': 1,
   'level': 1,
   'mcse': 1,
   'network': 1,
   'optic': 1,
   'payment_verified': False,
   'phone_verified': True,
   'practic': 1,
   'profile_complete': True,
   'r': 1,
   'secur': 1,
   'sopho': 1,
   'support': 1,
   'technic': 1,
   'telecommun': 1,
   'theoret': 1,
   'train': 2,
   'transmiss': 2,
   'voic': 1,
   'wireless': 1,
   'year': 1},
  'M'),
 ({"''": 1,
   "'ve": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='1'>,
   'First': 'm',
   'Last': '3',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   '``': 1,
   'abl': 1,
   'absolut': 1,
   'account': 3,
   'also': 1,
   'award': 1,
   'collect': 1,
   'convinc': 2,
   'copyright': 1,
   'countri': 1,
   'deposit_made': False,
   'discuss': 1,
   'easili': 1,
   'editor': 3,
   'email_verified': True,
   'english': 1,
   'enough': 1,
   'except': 1,
   'experi': 1,
   'experienc': 1,
   'facebook_connected': False,
   'fake': 1,
   'feedback': 1,
   'find': 2,
   'freelanc': 5,
   'freelancer.com': 1,
   'genuin': 1,
   'googl': 2,
   'identity_verified': False,
   'inexperienc': 2,
   'inform': 1,
   'intellectu': 1,
   'investig': 1,
   'job': 1,
   'leav': 2,
   'lie': 1,
   'like': 1,
   'line': 1,
   'linguist': 1,
   'live': 1,
   'mani': 2,
   'martin': 1,
   'nativ': 1,
   'often': 1,
   'open': 1,
   'origin': 1,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': True,
   'place': 1,
   'pleas': 1,
   'posit': 1,
   'preserv': 1,
   'profession': 2,
   'profil': 2,
   'profile_complete': True,
   'project': 2,
   'properti': 1,
   'qualif': 1,
   'rare': 1,
   'regard': 1,
   'requir': 1,
   'sell': 1,
   'side': 1,
   'site': 1,
   'skill': 1,
   'speak': 1,
   'steal': 1,
   'subcontract': 1,
   'translat': 1,
   'tri': 1,
   'unskil': 2,
   'use': 2,
   'user': 1,
   'websit': 1,
   'without': 2,
   'work': 1,
   'would': 2,
   'writer': 3,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'z',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'background': 1,
   'c': 1,
   'communications*': 1,
   'deposit_made': False,
   'development*': 1,
   'digit': 1,
   'email_verified': True,
   'engin': 1,
   'experi': 1,
   'facebook_connected': True,
   'firmwar': 1,
   'identity_verified': False,
   'javascript': 1,
   'languag': 1,
   'machin': 1,
   'payment_verified': False,
   'phone_verified': True,
   'processing*': 1,
   'profile_complete': True,
   'python*': 1,
   'senior': 1,
   'signal': 1,
   'strong': 1,
   'system': 1,
   'technolog': 1,
   'visual': 1,
   'web': 1},
  'M'),
 ({"''": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'R',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='E'>,
   '\\xd0\\xb2': 2,
   '\\xd0\\xb8': 2,
   '\\xd1\\x81\\xd0\\xbe\\xd1\\u201e\\xd1\\u201a': 2,
   '``': 1,
   'basic': 1,
   'delphi': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'visual': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'e',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'advertis': 1,
   'alway': 1,
   'artist': 1,
   'come': 1,
   'dental': 1,
   'deposit_made': False,
   'draw': 2,
   'email_verified': True,
   'face': 1,
   'facebook_connected': False,
   'find': 1,
   'idea': 2,
   'identity_verified': False,
   'like': 1,
   'moonlight': 1,
   'observ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'process': 1,
   'profile_complete': True,
   'stimul': 1,
   'surgeon': 1,
   'white': 1,
   'write': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'applic': 2,
   'architectur': 1,
   'automat': 1,
   'best': 1,
   'bot': 1,
   'client/serv': 1,
   'crawl': 1,
   'creat': 1,
   'css': 1,
   'custom': 1,
   'data': 1,
   'deliv': 1,
   'delphi': 1,
   'deposit_made': False,
   'develop': 1,
   'effici': 1,
   'email_verified': True,
   'estat': 1,
   'experi': 3,
   'extract': 1,
   'facebook_connected': False,
   'fast': 1,
   'freelanc': 1,
   'hr': 1,
   'identity_verified': False,
   'industri': 1,
   'javascript': 1,
   'latest': 1,
   'multi-thread': 1,
   'mysql': 1,
   'nativ': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'post': 1,
   'profile_complete': True,
   'program': 2,
   'provid': 1,
   'qualiti': 1,
   'scratch': 1,
   'seo': 1,
   'server': 1,
   'servic': 1,
   'small': 1,
   'soap': 1,
   'softwar': 2,
   'team': 1,
   'technolog': 1,
   'templat': 1,
   'train': 1,
   'use': 2,
   'valid': 1,
   'vision': 1,
   'w3c': 1,
   'web': 2,
   'websit': 2,
   'win32': 2,
   'work': 2,
   'xhtml': 1},
  'M'),
 ({'9': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'y',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'account': 1,
   'advertis': 4,
   'agenc': 1,
   'begin': 1,
   'believ': 1,
   'brows': 1,
   'busi': 1,
   'compani': 1,
   'comprehens': 1,
   'concept': 1,
   'creat': 1,
   'creativ': 3,
   'current': 1,
   'day-to-day': 1,
   'deposit_made': True,
   'design': 1,
   'digit': 1,
   'email_verified': True,
   'engag': 1,
   'entertain': 1,
   'exist': 1,
   'expand': 1,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'good': 1,
   'hands-on': 1,
   'identity_verified': True,
   'includ': 1,
   'insur': 1,
   'intern': 1,
   'kind': 1,
   'look': 1,
   'lot': 1,
   'mainstream': 1,
   'mani': 1,
   'medic': 1,
   'memor': 1,
   'more.if': 1,
   'nation': 1,
   'need': 1,
   'new': 1,
   'payment_verified': True,
   'phone_verified': True,
   'pitch': 2,
   'possess': 1,
   'profile_complete': True,
   'relev': 1,
   'sampl': 1,
   'sell': 1,
   'servic': 1,
   'set': 1,
   'sever': 1,
   'simpli': 1,
   'skill': 1,
   'start': 1,
   'stuff': 1,
   'success': 1,
   'that\\xe2\\u20ac\\u2122': 1,
   'understand': 1,
   'upon': 1,
   'win': 1,
   'work': 1,
   'year': 1,
   'you\\xe2\\u20ac\\u2122r': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'e',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'access': 1,
   'arab': 1,
   'busi': 1,
   'corel': 1,
   'cut': 1,
   'databas': 1,
   'deposit_made': False,
   'draw': 1,
   'email_verified': True,
   'etc': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'laser': 1,
   'line': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profici': 1,
   'profile_complete': True,
   'run': 1,
   'type': 1,
   'urdu': 1,
   'work': 1},
  'M'),
 ({'.net': 4,
   '/2008': 1,
   '2000': 1,
   '2003': 1,
   '4.0': 1,
   '5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='1'>,
   'First': 's',
   'Last': '3',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'abstract': 2,
   'ajax': 1,
   'analysi': 2,
   'appli': 1,
   'applic': 1,
   'applications.\\xe2\\u20ac\\xa2\\tveri': 1,
   'asp.net': 2,
   'c': 1,
   'client-serv': 1,
   'command': 1,
   'concept': 1,
   'control': 2,
   'creat': 1,
   'custom': 1,
   'cycl': 2,
   'deposit_made': False,
   'design': 4,
   'develop': 6,
   'dhtml': 1,
   'email_verified': True,
   'experi': 2,
   'exposur': 1,
   'facebook_connected': False,
   'factori': 1,
   'form': 2,
   'framework': 1,
   'full': 1,
   'good': 2,
   'html': 2,
   'identity_verified': False,
   'implement': 1,
   'input': 1,
   'java': 1,
   'knowledg': 1,
   'life': 2,
   'like': 4,
   'mvc': 1,
   'object': 1,
   'ooad': 1,
   'oracl': 1,
   'orient': 1,
   'pattern': 2,
   'payment_verified': False,
   'phase': 1,
   'phone_verified': False,
   'profile_complete': True,
   'requir': 1,
   'script': 1,
   'server': 1,
   'servic': 1,
   'singleton': 1,
   'skin': 1,
   'softwar': 1,
   'sql': 1,
   'studio': 1,
   'technolog': 1,
   'test': 1,
   'theme': 1,
   'unit': 1,
   'use': 2,
   'user': 2,
   'valid': 2,
   'vb.net': 1,
   'visual': 1,
   'web': 2,
   'web-bas': 1,
   'win': 1,
   'work': 1,
   'wpf': 1,
   'xml': 1,
   'xpath': 1,
   'xslt': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'd',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'angularj': 1,
   'cake': 1,
   'codeign': 1,
   'css': 1,
   'databas': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'differ': 1,
   'email_verified': True,
   'end': 1,
   'experi': 1,
   'extj': 1,
   'facebook_connected': False,
   'framework': 1,
   'front': 1,
   'good': 1,
   'identity_verified': False,
   'java': 2,
   'jqueri': 1,
   'jsp': 1,
   'laravel': 1,
   'last': 1,
   'librari': 1,
   'like': 2,
   'oracl': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 2,
   'platform': 1,
   'profile_complete': True,
   'script': 1,
   'seven': 1,
   'softwar': 1,
   'use': 1,
   'work': 1,
   'year': 1,
   'zend': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'android': 1,
   'angularj': 1,
   'backbon': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'expertis': 1,
   'facebook_connected': False,
   'framework': 1,
   'identity_verified': False,
   'java': 1,
   'javascript': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'ui': 1},
  'M'),
 ({"'m": 1,
   "'ve": 1,
   '3': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'accord': 1,
   'also': 1,
   'and/or': 1,
   'avid': 1,
   'color': 1,
   'deposit_made': True,
   'edit': 1,
   'effici': 1,
   'email_verified': True,
   'equip': 1,
   'facebook_connected': False,
   'fast': 1,
   'give': 1,
   'grade': 1,
   'identity_verified': False,
   'industri': 1,
   'long': 1,
   'look': 1,
   'need': 2,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': True,
   'premier': 1,
   'pro': 1,
   'profile_complete': True,
   'project': 2,
   'time': 1,
   'use': 1,
   'video': 1,
   'work': 3,
   'year': 1},
  'M'),
 ({'4': 1,
   '6': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'j',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'blog': 1,
   'blogger': 1,
   'build': 1,
   'cant': 1,
   'choic': 1,
   'credibl': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'help': 1,
   'identity_verified': False,
   'industri': 1,
   'last': 2,
   'mani': 1,
   'one': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'say': 1,
   'seo': 1,
   'start': 1,
   'ultim': 1,
   'well': 1,
   'work': 1,
   'write': 1,
   'year': 2},
  'M'),
 ({'3d': 1,
   '8+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'r',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   'access': 1,
   'allow': 1,
   'applic': 1,
   'arcgi': 1,
   'asp.net': 1,
   'back': 1,
   'base': 1,
   'central': 1,
   'cluster': 1,
   'css': 1,
   'data': 1,
   'databas': 1,
   'degre': 1,
   'deploy': 1,
   'deposit_made': False,
   'develop': 2,
   'effici': 1,
   'email_verified': True,
   'engin': 3,
   'environ': 1,
   'excel': 2,
   'experi': 1,
   'facebook_connected': True,
   'field': 1,
   'geoserv': 2,
   'gi': 3,
   'globe': 1,
   'gp': 1,
   'horizont': 1,
   'html5': 1,
   'identity_verified': False,
   'involv': 1,
   'javascript': 1,
   'languag': 1,
   'leaflet': 1,
   'manag': 2,
   'ms': 1,
   'mysql': 1,
   'navig': 1,
   'offic': 1,
   'open': 1,
   'openlay': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'powerpoint': 1,
   'profile_complete': True,
   'project': 3,
   'sector': 2,
   'servic': 1,
   'sever': 1,
   'skill': 1,
   'softwar': 1,
   'sourc': 1,
   'spatial': 1,
   'use': 1,
   'vector': 1,
   'vertic': 1,
   'web': 1,
   'wf': 1,
   'wm': 1,
   'word': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"''": 1,
   '6+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'r',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   '``': 1,
   'also': 2,
   'angularjs*': 1,
   'bootstrap': 1,
   'client': 1,
   'compani': 1,
   'creat': 2,
   'deposit_made': True,
   'develop': 4,
   'development*': 1,
   'editor': 1,
   'email': 1,
   'email_verified': True,
   'enhancement*': 1,
   'ensur': 1,
   'enterpris': 1,
   'etc.skil': 1,
   'experi': 1,
   'expert': 2,
   'extens': 2,
   'facebook_connected': True,
   'feel': 1,
   'free': 1,
   'full': 1,
   'gold': 1,
   'great': 1,
   'hire': 1,
   'html5': 1,
   'hubspot': 2,
   'identity_verified': True,
   'javascript': 1,
   'jqueri': 1,
   'laravel': 1,
   'larg': 1,
   'like': 3,
   'magento': 1,
   'mainten': 1,
   'manag': 1,
   'mani': 1,
   'modif': 1,
   'partner': 1,
   'payment_verified': True,
   'phone_verified': True,
   'plugin': 3,
   'profile_complete': True,
   'project': 2,
   'provid': 2,
   'qualiti': 1,
   'rang': 1,
   'servic': 1,
   'sm': 1,
   'small': 1,
   'startup': 1,
   'support*': 1,
   'web': 1,
   'websit': 1,
   'wordpress': 2,
   'work': 2,
   'world': 1,
   'year': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'v',
   'Last': '0',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'exp': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'manag': 1,
   'market': 2,
   'onlin': 2,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'qualiti': 1,
   'sem': 2,
   'seo': 2,
   'smm': 1,
   'smo': 1,
   'team': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'1997': 1,
   '1st': 1,
   '24': 1,
   '25': 2,
   '4': 1,
   '5.3': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'a2bil': 2,
   'access': 1,
   'ad': 1,
   'admin': 1,
   'age': 1,
   'allow': 2,
   'apach': 1,
   'applic': 1,
   'area': 1,
   'around': 2,
   'asterisk': 1,
   'bbb': 1,
   'begin': 1,
   'better': 1,
   'bulk': 1,
   'bureau': 1,
   'busi': 3,
   'call': 4,
   'card': 2,
   'cent': 2,
   'cento': 1,
   'charg': 1,
   'client': 2,
   'code': 1,
   'comcard': 4,
   'compani': 5,
   'compet': 1,
   'complain': 1,
   'complaint': 1,
   'complet': 1,
   'contact': 1,
   'convers': 1,
   'custom': 1,
   'data': 2,
   'delet': 1,
   'deposit_made': True,
   'detail': 1,
   'develop': 1,
   'email_verified': True,
   'entri': 1,
   'expand': 1,
   'facebook_connected': False,
   'find': 1,
   'flat': 1,
   'forc': 1,
   'form': 1,
   'freepbx': 1,
   'give': 1,
   'good': 2,
   'happi': 1,
   'howev': 1,
   'hundr': 1,
   'identity_verified': False,
   'indiana': 2,
   'integr': 1,
   'intern': 1,
   'issu': 1,
   'januari': 1,
   'kentucki': 1,
   'line': 1,
   'littl': 1,
   'llc': 1,
   'local': 6,
   'look': 1,
   'loos': 1,
   'louisvil': 1,
   'mail': 1,
   'meet': 1,
   'member': 1,
   'microsoft': 1,
   'month': 1,
   'mysql': 1,
   'need': 1,
   'numer': 1,
   'offer': 2,
   'one': 1,
   'openvz': 1,
   'opportun': 1,
   'payment_verified': False,
   'pend': 1,
   'per': 1,
   'permiss': 1,
   'phone': 3,
   'phone_verified': False,
   'php-': 1,
   'platform': 1,
   'primari': 2,
   'profile_complete': True,
   'proud': 1,
   'provid': 1,
   'qmail': 1,
   'rate': 1,
   'regist': 1,
   'regular': 1,
   'reliabl': 1,
   'renam': 1,
   'report': 1,
   'request': 1,
   'retail': 1,
   'rout': 1,
   'seamlessli': 1,
   'seen': 1,
   'sent': 1,
   'shop': 1,
   'short': 1,
   'shut': 2,
   'softwar': 1,
   'solut': 1,
   'start': 1,
   'state': 3,
   'su': 1,
   'switch': 1,
   'telephoni': 1,
   'termin': 2,
   'time': 3,
   'updat': 1,
   'use': 2,
   'voip': 2,
   'webmin': 1,
   'wholesal': 1,
   'within': 1,
   'word': 1,
   'work': 2,
   'zero': 1,
   'zip': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'o',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'cloud': 1,
   'compani': 1,
   'deposit_made': False,
   'develop': 2,
   'django': 1,
   'email_verified': True,
   'facebook_connected': False,
   'familiar': 1,
   'identity_verified': False,
   'openstack': 1,
   'payment_verified': False,
   'phone_verified': False,
   'platform': 1,
   'profile_complete': True,
   'python': 1,
   'tornado': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='1'>,
   'First': 'd',
   'Last': '3',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'abil': 1,
   'automot': 1,
   'bachelor': 1,
   'compani': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'home': 1,
   'identity_verified': False,
   'job': 1,
   'look': 1,
   'managementwork': 1,
   'market': 1,
   'minimum': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'right': 1,
   'skill': 1,
   'suit': 1,
   'supervis': 1,
   'work': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='i'>,
   'bangalor': 1,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'softwar': 1,
   'technolog': 1,
   'woke': 1},
  'M'),
 ({'7': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'academ': 1,
   'advanc': 1,
   'background': 1,
   'brazil': 1,
   'corpor': 1,
   'depart': 1,
   'deposit_made': False,
   'develop': 2,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'gi': 1,
   'govern': 1,
   'identity_verified': False,
   'inform': 1,
   'internet': 2,
   'payment_verified': False,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'system': 2,
   'technolog': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'...': 3,
   '2006': 1,
   'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'h',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'also': 1,
   'back': 1,
   'bought': 1,
   'came': 1,
   'cheap': 1,
   'chief': 1,
   'compani': 1,
   'day': 1,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'etc': 1,
   'everybodi': 1,
   'execut': 1,
   'facebook_connected': False,
   'go': 1,
   'googl': 1,
   'group': 1,
   'identity_verified': False,
   'import': 2,
   'later': 1,
   'like': 1,
   'major': 1,
   'moscow': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'russian': 1,
   'senior': 2,
   'site': 1,
   'skill': 1,
   'split': 1,
   'studio': 1,
   'team': 1,
   'url': 1,
   'work': 2},
  'M'),
 ({"'s": 2,
   '.our': 1,
   '10': 1,
   '11': 1,
   '12': 1,
   '2': 1,
   '3': 1,
   '4': 1,
   '5': 2,
   '6': 1,
   '7': 1,
   '8': 1,
   '9': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='3'>,
   'First': 'i',
   'Last': 'd',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'abstract': 1,
   'access': 1,
   'accomplish': 1,
   'account': 1,
   'achiev': 3,
   'activ': 1,
   'afford': 1,
   'aim': 2,
   'also': 1,
   'approach': 2,
   'attitud': 1,
   'balancing-': 1,
   'banner-': 1,
   'batter': 3,
   'believ': 1,
   'best': 2,
   'blog': 1,
   'bottom': 1,
   'brain': 1,
   'built': 1,
   'busi': 4,
   'card': 2,
   'cards-': 1,
   'challeng': 1,
   'chang': 1,
   'choic': 1,
   'client': 3,
   'collabor': 2,
   'collect': 2,
   'color': 1,
   'combin': 1,
   'commit': 2,
   'commun': 2,
   'compani': 3,
   'concept': 1,
   'consist': 1,
   'constantli': 1,
   'consult': 4,
   'consum': 1,
   'contact': 1,
   'control': 2,
   'convert': 1,
   'cost': 2,
   'creat': 1,
   'creation': 1,
   'current': 1,
   'custom': 4,
   'cut': 1,
   'daili': 1,
   'data': 2,
   'deal': 1,
   'defin': 1,
   'deliveri': 1,
   'depend': 1,
   'deposit_made': True,
   'design': 3,
   'design-': 2,
   'develop': 2,
   'differ': 1,
   'directori': 1,
   'dn': 1,
   'domain': 6,
   'done': 1,
   'dvr': 2,
   'dynam': 2,
   'economi': 1,
   'edit': 1,
   'editing/proofread': 1,
   'effect': 1,
   'effici': 1,
   'email': 3,
   'email_verified': True,
   'enabl': 1,
   'ensur': 2,
   'entri': 1,
   'environ': 1,
   'even': 1,
   'everi': 1,
   'excel-': 1,
   'expertis': 1,
   'express': 1,
   'facebook_connected': False,
   'file': 1,
   'find': 1,
   'fit': 1,
   'ftp': 1,
   'fundament': 1,
   'futur': 1,
   'gener': 1,
   'get': 2,
   'give': 1,
   'global': 2,
   'gmail': 1,
   'goal': 3,
   'growth': 1,
   'help': 2,
   'high': 2,
   'highest': 1,
   'highli': 1,
   'icon': 1,
   'idea': 1,
   'identity_verified': False,
   'imag': 1,
   'individu': 1,
   'inform': 1,
   'initi': 1,
   'innov': 2,
   'instal': 3,
   'intern': 1,
   'job': 1,
   'kind': 1,
   'king': 1,
   'knowledg': 1,
   'last': 1,
   'leader': 1,
   'leadership': 3,
   'level': 3,
   'limit': 1,
   'line': 1,
   'link': 1,
   'list': 1,
   'listen': 1,
   'local': 1,
   'logo': 1,
   'low': 1,
   'mail': 1,
   'make': 3,
   'making-': 1,
   'manag': 2,
   'mani': 1,
   'market': 4,
   'matter': 1,
   'me.i': 1,
   'media': 1,
   'meet': 1,
   'menu': 1,
   'min': 1,
   'mind': 1,
   'modern': 1,
   'money': 1,
   'monitor': 4,
   'must': 1,
   'network': 1,
   'never': 1,
   'offlin': 1,
   'option': 1,
   'organ': 3,
   'outstand': 1,
   'payment_verified': False,
   'paypal': 2,
   'peopl': 1,
   'phone_verified': False,
   'platon': 1,
   'polici': 2,
   'pr': 1,
   'practic': 2,
   'premis': 1,
   'price': 1,
   'prime': 1,
   'principl': 1,
   'process': 2,
   'processing-': 1,
   'produc': 2,
   'product': 2,
   'profil': 1,
   'profile_complete': True,
   'project': 2,
   'promot': 1,
   'provid': 7,
   'purchas': 3,
   'qm': 1,
   'qualiti': 3,
   'remot': 1,
   'requir': 2,
   'research-': 1,
   'result': 1,
   'results-driven': 1,
   'retouch': 1,
   'right': 2,
   'run': 1,
   'sale': 1,
   'sampl': 1,
   'satisfact': 2,
   'schedul': 1,
   'search-': 1,
   'secur': 2,
   'see': 1,
   'self': 1,
   'servic': 8,
   'shortag': 1,
   'show': 1,
   'signific': 1,
   'sinc': 1,
   'skill': 1,
   'sky': 1,
   'sm': 1,
   'smaller': 2,
   'social': 1,
   'softwar': 1,
   'solut': 3,
   'special': 1,
   'specif': 2,
   'startup': 1,
   'strateg': 2,
   'strategi': 2,
   'strive': 1,
   'sub': 1,
   'surveil': 1,
   'system': 2,
   'talent': 1,
   'task': 2,
   'te': 1,
   'team': 2,
   'teamwork': 2,
   'technic': 1,
   'technolog': 1,
   'templat': 1,
   'think': 3,
   'though': 1,
   'thought': 1,
   'time': 1,
   'tip': 1,
   'today': 1,
   'togeth': 1,
   'tool': 1,
   'transfer': 1,
   'tutori': 1,
   'uniqu': 1,
   'updat': 1,
   'upload': 1,
   'us': 2,
   'use': 1,
   'verif': 1,
   'versatil': 1,
   'video': 3,
   'vision': 3,
   'way': 1,
   'web': 4,
   'websit': 1,
   'work': 6,
   'world-class': 1,
   'would': 1},
  'M'),
 ({'.i': 1,
   '5': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='5'>,
   'First': 'M',
   'Last': 'D',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'check': 1,
   'compani': 1,
   'css': 1,
   'deposit_made': False,
   'email_verified': True,
   'employ': 1,
   'experi': 1,
   'facebook_connected': False,
   'finish': 1,
   'freelanc': 1,
   'html': 1,
   'identity_verified': False,
   'interest': 1,
   'javascript': 1,
   'like': 1,
   'master': 1,
   'me.you': 1,
   'mysql': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'php': 1,
   'portfolio': 1,
   'profile_complete': True,
   'satisfi': 1,
   'sure': 1,
   'technic': 1,
   'univers': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'2': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(15, 16), match='1'>,
   'First': 'b',
   'Last': '1',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'also': 4,
   'applic': 1,
   'articl': 1,
   'blog': 1,
   'comput': 1,
   'data': 1,
   'databas': 2,
   'degre': 1,
   'deposit_made': False,
   'develop': 1,
   'diploma': 1,
   'econom': 2,
   'effici': 1,
   'email_verified': True,
   'enter': 1,
   'facebook_connected': False,
   'financ': 1,
   'given': 1,
   'graduat': 1,
   'identity_verified': False,
   'internet': 1,
   'larg': 1,
   'maintain': 3,
   'manag': 1,
   'payment_verified': False,
   'perform': 1,
   'phone_verified': False,
   'post': 1,
   'product': 1,
   'profile_complete': True,
   'program': 1,
   'research': 1,
   'review': 1,
   'static': 1,
   'topic': 1,
   'websit': 1,
   'write': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='7'>,
   'First': 'm',
   'Last': '3',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'abl': 1,
   'academi': 1,
   'advertis': 1,
   'also': 2,
   'analyt': 1,
   'art': 3,
   'assign': 1,
   'book': 1,
   'broaden': 1,
   'build': 1,
   'busi': 1,
   'cartoon': 1,
   'charact': 1,
   'comic': 1,
   'commun': 1,
   'concept': 1,
   'creativ': 1,
   'degre': 1,
   'deposit_made': False,
   'design': 1,
   'editori': 1,
   'effect': 1,
   'email_verified': True,
   'endeavor': 1,
   'exhibit': 1,
   'facebook_connected': True,
   'final': 1,
   'futur': 1,
   'good': 1,
   'graduat': 2,
   'graphic': 1,
   'houston': 1,
   'identity_verified': False,
   'illustr': 2,
   'initi': 1,
   'institut': 1,
   'level': 1,
   'logo': 1,
   'mauric': 1,
   'network': 1,
   'object': 1,
   'payment_verified': False,
   'phone_verified': True,
   'press': 1,
   'problem': 1,
   'profile_complete': True,
   'provid': 1,
   'relat': 1,
   'show': 1,
   'skill': 1,
   'solid': 1,
   'solv': 1,
   'special': 1,
   'stellar': 1,
   'studi': 1,
   'system': 1,
   't-shirt': 1,
   'texa': 1,
   'trade': 1,
   'univers': 2,
   'use': 1,
   'view': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'h',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abl': 1,
   'across': 1,
   'analysi': 1,
   'analyst': 1,
   'bank': 1,
   'big': 1,
   'busi': 4,
   'challeng': 1,
   'current': 1,
   'deliv': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'domain': 2,
   'email_verified': True,
   'environ': 1,
   'facebook_connected': False,
   'function': 1,
   'identity_verified': False,
   'intern': 1,
   'job': 1,
   'last': 1,
   'major': 1,
   'manag': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'role': 3,
   'sem': 1,
   'skill': 1,
   'strategi': 2,
   'variou': 1,
   'web': 1,
   'work': 6,
   'year': 1},
  'M'),
 ({'.net': 1,
   '3+': 1,
   '7': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'k',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'apex': 1,
   'c': 1,
   'combin': 1,
   'deposit_made': True,
   'email_verified': True,
   'experi': 1,
   'experienc': 1,
   'facebook_connected': False,
   'head': 1,
   'highli': 1,
   'identity_verified': False,
   'includ': 1,
   'javascript': 1,
   'jqueri': 1,
   'mysql': 1,
   'oracl': 2,
   'payment_verified': False,
   'per': 1,
   'perl': 1,
   'phone_verified': False,
   'php': 1,
   'pl/sql': 1,
   'profile_complete': True,
   'programm': 1,
   'set': 1,
   'skill': 2,
   'team': 1,
   'unix': 1,
   'year': 2},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'i',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'advisor': 1,
   'app': 1,
   'deposit_made': False,
   'design': 1,
   'edit': 1,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'insur': 1,
   'keep': 1,
   'like': 1,
   'make': 1,
   'market': 1,
   'movi': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'softwar': 1,
   'web': 1},
  'M'),
 ({"''": 1,
   "'m": 2,
   "'ve": 4,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   '``': 1,
   'account': 3,
   'acquir': 1,
   'alway': 3,
   'anoth': 1,
   'answer': 1,
   'ask': 1,
   'assign': 1,
   'buyer': 2,
   'capabl': 1,
   'cours': 1,
   'creation': 1,
   'data': 2,
   'deposit_made': False,
   'differ': 1,
   'effort': 1,
   'email': 1,
   'email_verified': True,
   'entri': 1,
   'etc': 1,
   'execut': 1,
   'experi': 2,
   'facebook_connected': False,
   'familiar': 1,
   'far': 1,
   'field': 1,
   'flexibl': 1,
   'freelanc': 1,
   'give': 1,
   'go': 1,
   'hand': 1,
   'identity_verified': False,
   'includ': 1,
   'indic': 1,
   'learn': 2,
   'like': 1,
   'long': 1,
   'love': 1,
   'make': 1,
   'mani': 1,
   'much': 1,
   "n't": 1,
   'narrat': 1,
   'network': 1,
   'object': 1,
   'often': 1,
   'one': 1,
   'onlin': 1,
   'payment_verified': True,
   'phone_verified': True,
   'previou': 1,
   'primari': 1,
   'probabl': 1,
   'profession': 1,
   'profile_complete': True,
   'proof': 1,
   'relat': 1,
   'relationship': 1,
   'respons': 1,
   'role': 1,
   'similar': 1,
   'skill': 2,
   'social': 1,
   'task': 1,
   'thing': 2,
   'thu': 1,
   'titl': 1,
   'wit': 1,
   'wo': 1,
   'work': 3,
   'would': 1},
  'M'),
 ({'7': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='2'>,
   'First': 't',
   'Last': '0',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'achiev': 1,
   'adob': 1,
   'ajax': 1,
   'android': 3,
   'angular': 1,
   'apach': 1,
   'applic': 3,
   'back-end': 1,
   'best': 1,
   'bootstrap': 1,
   'build': 1,
   'businesses.mi': 1,
   'client': 1,
   'core': 1,
   'creativ': 1,
   'css3': 1,
   'deposit_made': True,
   'design': 2,
   'develop': 2,
   'eclips': 1,
   'email_verified': True,
   'experi': 1,
   'expertis': 1,
   'extens': 1,
   'facebook_connected': True,
   'forward': 1,
   'front-end': 1,
   'glassfish': 1,
   'ground': 1,
   'hi': 1,
   'html5': 1,
   'identity_verified': False,
   'io': 2,
   'java': 2,
   'javascript': 1,
   'jqueri': 1,
   'js': 1,
   'jsp': 1,
   'knowledg': 1,
   'look': 1,
   'mobil': 3,
   'mysql': 1,
   'netbean': 1,
   'onpag': 1,
   'opportun': 1,
   'oracl': 1,
   'output': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 2,
   'possibl': 1,
   'profile_complete': True,
   'seek': 1,
   'seo': 1,
   'skill': 2,
   'spring': 2,
   'sql': 1,
   'sqlite': 1,
   'strut': 1,
   'studio': 1,
   'suit': 1,
   'suite.i': 1,
   'swift': 2,
   'technic': 1,
   'tomcat': 1,
   'tool': 1,
   'uml': 1,
   'use': 1,
   'web': 3,
   'wordpress': 2,
   'xcode': 1,
   'xml': 1,
   'year': 1},
  'M'),
 ({'13': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'v',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'administr': 1,
   'data': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'entri': 1,
   'etc': 1,
   'experi': 1,
   'facebook_connected': False,
   'firm': 1,
   'identity_verified': False,
   'larg': 1,
   'offic': 1,
   'payment_verified': False,
   'philippin': 1,
   'phone_verified': False,
   'profile_complete': True,
   'skill': 1,
   'work': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'artist': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'musician': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'web': 1,
   'writer': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'g',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'deposit_made': False,
   'edit': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'ihav': 1,
   'network': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photo': 1,
   'profile_complete': True},
  'M'),
 ({'6': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'angularj': 1,
   'asp': 1,
   'c': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'languag': 1,
   'like': 1,
   'mssql': 1,
   'mvc': 1,
   'mysql': 1,
   'nodej': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'postgresql': 1,
   'profile_complete': True,
   'program': 1,
   'variou': 1,
   'year': 1},
  'M'),
 ({'...': 3,
   'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'complet': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'hi': 1,
   'identity_verified': False,
   'im': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'u': 1,
   'ur': 1},
  'M'),
 ({'15': 1,
   '6': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'G',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'advertis': 1,
   'appli': 1,
   'aspect': 1,
   'colleg': 1,
   'content': 1,
   'copywrit': 1,
   'cover': 1,
   'day': 2,
   'deposit_made': False,
   'develop': 1,
   'digit': 1,
   'email_verified': True,
   'embrac': 1,
   'experi': 1,
   'extens': 1,
   'facebook_connected': False,
   'graduat': 1,
   'identity_verified': False,
   'includ': 2,
   'industri': 1,
   'internet': 1,
   'knowledg': 1,
   'last': 1,
   'lifestyl': 1,
   'london': 1,
   'market': 2,
   'payment_verified': False,
   'phone_verified': False,
   'print': 1,
   'profile_complete': True,
   'publish': 2,
   'run': 1,
   'scratch': 1,
   'seo': 2,
   'solut': 2,
   'specialis': 1,
   'spent': 1,
   'trade': 1,
   'travel': 2,
   'web': 1,
   'websit': 2,
   'well': 1,
   'world': 1,
   'year': 2},
  'F'),
 ({"'m": 1,
   "'ve": 2,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='8'>,
   'First': 'r',
   'Last': '5',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abl': 1,
   'addit': 1,
   'advertis': 2,
   'also': 2,
   'career': 1,
   'challeng': 1,
   'client': 2,
   'creativ': 1,
   'deposit_made': False,
   'email_verified': True,
   'english': 1,
   'english-spanish': 1,
   'facebook_connected': False,
   'fast': 1,
   'fun': 1,
   'identity_verified': False,
   'mainli': 1,
   'mani': 1,
   'market': 1,
   'mexico': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pressur': 1,
   'profile_complete': True,
   'realli': 1,
   'relax': 1,
   'spanish': 1,
   'thank': 1,
   'translat': 1,
   'u.s.': 1,
   'work': 3,
   'world': 1,
   'write': 2},
  'M'),
 ({'11': 1,
   '2': 1,
   '35.': 1,
   '6': 2,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 't',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'ad': 1,
   'also': 1,
   'analysi': 1,
   'app': 1,
   'aspect': 1,
   'believ': 1,
   'bid': 2,
   'ci': 1,
   'cm': 1,
   'complet': 1,
   'complex': 1,
   'confid': 1,
   'cover': 1,
   'deposit_made': True,
   'develop': 2,
   'differ': 1,
   'drupal': 1,
   'email_verified': True,
   'estat': 1,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'high': 1,
   'i.e': 1,
   'identity_verified': False,
   'increas': 1,
   'joomla': 1,
   'kind': 1,
   'laravel': 3,
   'last': 2,
   'like': 1,
   'magento': 2,
   'main': 1,
   'mani': 1,
   'mobil': 2,
   'motto': 1,
   'mysql': 1,
   "n't": 1,
   'nativ': 1,
   'network': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 1,
   'platform': 1,
   'profile_complete': True,
   'project': 5,
   'rate': 1,
   'real': 1,
   'requir': 1,
   'seo': 1,
   'size': 1,
   'social': 1,
   'team': 2,
   'technolog': 1,
   'websit': 3,
   'well': 1,
   'wordpress': 1,
   'work': 2,
   'year': 4},
  'M'),
 ({'8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'applic': 1,
   'area': 1,
   'deposit_made': False,
   'desktop': 1,
   'development.w': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'inc': 1,
   'mobil': 1,
   'payment_verified': True,
   'phone_verified': True,
   'pioneer': 1,
   'profile_complete': True,
   'web': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='3'>,
   'First': 'a',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'consult': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'list': 1,
   'offici': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'wordpress': 1},
  'M'),
 ({'100': 1,
   '20': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'u',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'analys': 1,
   'analysis.i': 1,
   'articl': 3,
   'believ': 1,
   'comment': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'five': 1,
   'gener': 1,
   'good': 1,
   'govern': 1,
   'identity_verified': False,
   'imag': 2,
   'includ': 1,
   'interest': 1,
   'like': 2,
   'make': 1,
   "n't": 1,
   'natur': 1,
   'need': 1,
   'organ': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': False,
   'possess': 1,
   'profession': 2,
   'profile_complete': True,
   'provid': 1,
   'qualifi': 1,
   'qualiti': 1,
   'quantiti': 1,
   'rather': 1,
   'report': 1,
   'review': 1,
   'satellit': 1,
   'sens': 1,
   'skill': 1,
   'softwar': 1,
   'topic': 1,
   'work': 2,
   'would': 1,
   'write': 5,
   'written': 1,
   'year': 1},
  'F'),
 ({'6': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'p',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
   'access': 1,
   'administr': 2,
   'ajax': 1,
   'also': 3,
   'area': 1,
   'asterisk': 1,
   'auto': 1,
   'basic': 1,
   'boonex': 1,
   'build': 1,
   'busi': 1,
   'call': 6,
   'cart': 5,
   'center': 3,
   'cento': 1,
   'clipshar': 1,
   'cm': 2,
   'compani': 1,
   'compet': 1,
   'complet': 1,
   'configur': 1,
   'core': 1,
   'cpanel': 1,
   'crm': 2,
   'css': 2,
   'deposit_made': False,
   'design': 2,
   'develop': 3,
   'dial': 1,
   'dialer': 3,
   'dolphin': 1,
   'domain': 1,
   'e-commerc': 1,
   'ecommerc': 2,
   'elastix': 2,
   'email_verified': True,
   'end-end': 1,
   'engin': 2,
   'etc': 3,
   'experi': 2,
   'facebook_connected': False,
   'ffmpeg': 1,
   'flash': 1,
   'follow': 1,
   'gateway': 1,
   'ground': 1,
   'host': 1,
   'hour': 1,
   'html': 1,
   'identity_verified': False,
   'implement': 1,
   'inbound': 1,
   'includ': 2,
   'instal': 1,
   'integr': 1,
   'interspir': 1,
   'issu': 1,
   'java': 2,
   'javascript': 1,
   'joomla': 2,
   'jsp': 1,
   'kind': 2,
   'last': 1,
   'lie': 1,
   'linux': 2,
   'list': 1,
   'lot': 1,
   'magento': 2,
   'maintain': 3,
   'make': 2,
   'mambo': 1,
   'manag': 3,
   'market': 1,
   'media': 2,
   'migrat': 2,
   'minut': 1,
   'multimedia': 1,
   'mysql': 2,
   'name': 1,
   'network': 3,
   'new': 1,
   'offic': 1,
   'oop': 1,
   'open': 1,
   'opencart': 1,
   'opportun': 1,
   'optim': 1,
   'oscommerc': 2,
   'outbound': 1,
   'payment': 1,
   'payment_verified': False,
   'per': 1,
   'phone_verified': False,
   'php': 2,
   'phpbb': 1,
   'phpfox': 1,
   'plan': 1,
   'plesk': 1,
   'portal': 1,
   'predict': 2,
   'prestashop': 1,
   'problem': 1,
   'profile_complete': True,
   'program': 1,
   'project': 1,
   'rang': 2,
   'red5': 1,
   'relat': 1,
   'script': 3,
   'search': 1,
   'second': 1,
   'seek': 1,
   'server': 10,
   'setup': 3,
   'share': 1,
   'shop': 2,
   'site': 1,
   'small': 1,
   'social': 2,
   'softwar': 2,
   'special': 1,
   'speed': 1,
   'sql': 1,
   'start': 1,
   'support': 1,
   'system': 1,
   'technic': 1,
   'test': 1,
   'tomcat': 1,
   'transfer': 1,
   'troubleshoot': 3,
   'upload': 1,
   'use': 1,
   'vbulletin': 1,
   'video': 1,
   'visual': 1,
   'voip': 1,
   'web': 1,
   'websit': 6,
   'whmc': 1,
   'wide': 2,
   'wordpress': 2,
   'year': 1,
   'zen': 2},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'Digit': None,
   'First': 'E',
   'Last': 'a',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='E'>,
   'complet': 1,
   'deposit_made': True,
   'design': 2,
   'done': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'govern': 1,
   'graphic': 2,
   'identity_verified': False,
   'india': 1,
   'mani': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 2,
   'recent': 1,
   'web': 2},
  'F'),
 ({'25': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'affair': 1,
   'current': 1,
   'deposit_made': True,
   'email_verified': True,
   'entertain': 1,
   'experienc': 1,
   'facebook_connected': True,
   'fleet': 1,
   'identity_verified': False,
   'journal': 1,
   'much': 1,
   'news': 1,
   'payment_verified': False,
   'phone_verified': True,
   'polit': 1,
   'profile_complete': True,
   'report': 2,
   'specialis': 1,
   'sport': 1,
   'street': 1,
   'write': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='1'>,
   'First': 'D',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'admin': 1,
   'background': 1,
   'broadcast': 1,
   'collect': 1,
   'commun': 1,
   'compani': 1,
   'convers': 1,
   'crop': 1,
   'data': 3,
   'deposit_made': True,
   'document': 1,
   'edit': 1,
   'email_verified': True,
   'enjoy': 1,
   'entri': 1,
   'excel': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'full-tim': 1,
   'gmail': 1,
   'identity_verified': False,
   'im': 1,
   'info': 1,
   'internet': 1,
   'job': 1,
   'known': 1,
   'limit': 1,
   'msn': 1,
   'organ': 1,
   'part-tim': 1,
   'passion': 1,
   'payment_verified': True,
   'pdf': 1,
   'peopl': 1,
   'phone_verified': True,
   'photo': 1,
   'photoshop': 1,
   'product': 1,
   'profile_complete': True,
   'provid': 3,
   'remov': 1,
   'satisfi': 1,
   'servic': 1,
   'skype': 1,
   'submit': 1,
   'upload': 1,
   'websiteso': 2,
   'well': 1,
   'word': 1,
   'work': 1,
   'work.i': 1,
   'yahoo': 1},
  'M'),
 ({'*develop': 2,
   '.net': 1,
   '2008.': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'v',
   'Last': '0',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'applic': 4,
   'base': 1,
   'c': 1,
   'cart': 1,
   'deposit_made': True,
   'develop': 1,
   'differ': 1,
   'durat': 1,
   'email_verified': True,
   'experi': 2,
   'facebook': 1,
   'facebook_connected': False,
   'field': 1,
   'good': 1,
   'identity_verified': False,
   'joomla': 1,
   'languag': 1,
   'like': 1,
   'mani': 3,
   'media': 2,
   'open': 2,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php/mysql': 1,
   'platform': 1,
   'profile_complete': True,
   'profound': 1,
   'program': 2,
   'sinc': 1,
   'social': 2,
   'sourc': 1,
   'use': 2,
   'websit': 2,
   'window': 1,
   'wordpress': 1,
   'work': 2},
  'M'),
 ({'10': 1,
   '25': 1,
   '7': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'b',
   'Last': '8',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   '\\xe2\\u20ac\\xa2\\t': 1,
   'also': 2,
   'certifi': 1,
   'commit': 1,
   'constantli': 1,
   'coordin': 1,
   'cours': 1,
   'day': 1,
   'deadlin': 2,
   'depend': 1,
   'deposit_made': True,
   'edit': 1,
   'email_verified': True,
   'en': 2,
   'enabl': 1,
   'english': 1,
   'facebook_connected': True,
   'fast': 1,
   'field': 1,
   'freelanc': 1,
   'fulli': 1,
   'given': 1,
   'hard': 1,
   'identity_verified': False,
   'ie': 1,
   'languag': 2,
   'latest': 1,
   'like': 1,
   'load': 1,
   'nativ': 1,
   'nuanc': 1,
   'opportun': 1,
   'payment_verified': True,
   'person': 1,
   'phone_verified': False,
   'pressur': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'proofread': 1,
   'skill': 1,
   'spanish': 2,
   'teacher': 1,
   'team': 1,
   'text': 1,
   'tight': 1,
   'translat': 2,
   'trend': 1,
   'updat': 1,
   'usual': 1,
   'week': 1,
   'well': 1,
   'work': 4,
   'written': 1,
   'year': 2},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'alway': 1,
   'creativ': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'improv': 1,
   'look': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 2,
   'skill': 1,
   'type': 1,
   'variou': 1,
   'work': 2},
  'M'),
 ({"'m": 2,
   "'s": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 'd',
   'Last': '2',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'accept': 1,
   'access': 1,
   'actual': 1,
   'analysi': 1,
   'architect': 1,
   'around': 1,
   'australia': 2,
   'base': 1,
   'beat': 1,
   'best': 2,
   'busi': 2,
   'canada': 2,
   'citi': 1,
   'compani': 1,
   'competitor': 2,
   'construct': 1,
   'contain': 1,
   'demo': 1,
   'deposit_made': True,
   'design': 1,
   'detail': 1,
   'email_verified': True,
   'europ': 2,
   'exactli': 1,
   'facebook_connected': False,
   'googl': 3,
   'group': 1,
   'gun': 1,
   'identity_verified': False,
   'industri': 1,
   'interior': 1,
   'internet': 2,
   'know': 1,
   'latest': 1,
   'leav': 1,
   'limit': 1,
   'local': 1,
   'market': 3,
   'me.i': 1,
   'money': 1,
   'one': 1,
   'part': 1,
   'payment_verified': False,
   'phone_verified': True,
   'place': 1,
   'profile_complete': True,
   'project': 1,
   'proof': 1,
   'provid': 1,
   'reach': 1,
   'remodel': 1,
   'right': 1,
   'search': 1,
   'see': 1,
   'send': 1,
   'seo': 3,
   'show': 1,
   'small': 1,
   'special': 1,
   'state': 1,
   'surgeon': 1,
   'tabl': 1,
   'target': 1,
   'technolog': 1,
   'top': 1,
   'u.': 2,
   'video': 2,
   'want': 1,
   'websit': 1,
   'work': 1,
   'world': 1},
  'M'),
 ({"'s": 1,
   '...': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'algorithm': 1,
   'alway': 2,
   'ampl': 1,
   'articl': 2,
   'bs': 1,
   'client': 3,
   'comput': 1,
   'copi': 1,
   'data': 1,
   'deposit_made': True,
   'differ': 1,
   'domain': 1,
   'done': 1,
   'electr': 2,
   'email_verified': True,
   'engin': 2,
   'entri': 1,
   'facebook_connected': False,
   'field': 1,
   'first': 1,
   'follow': 1,
   'get': 1,
   'guy': 1,
   'happi': 1,
   'hard': 1,
   'help': 1,
   'identity_verified': False,
   'latex': 1,
   'limit': 1,
   'linear': 2,
   'make': 1,
   'mathemat': 1,
   'matlab': 1,
   'ms': 1,
   'much': 1,
   'network': 1,
   'non': 1,
   'optim': 1,
   'payment_verified': False,
   'phone_verified': True,
   'present': 1,
   'prioriti': 1,
   'profile_complete': True,
   'program': 1,
   'project': 1,
   'proofread': 1,
   'push': 1,
   'rewrit': 1,
   'satisfact': 1,
   'sever': 1,
   'telecommun': 2,
   'transcript': 1,
   'type': 1,
   'variou': 1,
   'want': 1,
   'work': 2,
   'write': 1},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'k',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'android': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'identity_verified': False,
   'io': 1,
   'look': 1,
   'mac': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'someth': 1,
   'start': 1,
   'year': 1},
  'M'),
 ({'15': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'y',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'assign': 1,
   'broadband': 1,
   'comput': 1,
   'connect': 1,
   'deposit_made': True,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'fast': 1,
   'given': 1,
   'home': 1,
   'identity_verified': False,
   'internet': 1,
   'neat': 1,
   'new': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'time': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'd',
   'Last': '4',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'alter': 1,
   'contest': 1,
   'creat': 1,
   'deposit_made': True,
   'ear': 1,
   'email_verified': True,
   'facebook_connected': True,
   'idea': 1,
   'identity_verified': False,
   'individu': 2,
   'manifest': 1,
   'mention': 1,
   'nation': 1,
   'new': 1,
   'payment_verified': True,
   'phone_verified': True,
   'power': 2,
   'profile_complete': True,
   'right': 2,
   'societi': 1,
   'someth': 1,
   'spoken': 1,
   'total': 1,
   'word': 3,
   'write': 1},
  'M'),
 ({'9': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'a',
   'Last': '9',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'advertis': 1,
   'also': 1,
   'analyt': 4,
   'analyz': 1,
   'around': 1,
   'behavior': 1,
   'busi': 2,
   'businesses.i': 1,
   'categori': 1,
   'client': 1,
   'code': 1,
   'countri': 1,
   'deposit_made': True,
   'differ': 3,
   'email_verified': True,
   'engin': 1,
   'experi': 2,
   'expert': 1,
   'facebook_connected': False,
   'goal': 1,
   'help': 1,
   'identity_verified': False,
   'implement': 1,
   'improv': 2,
   'insight': 1,
   'market': 1,
   'paid': 1,
   'payment_verified': True,
   'perform': 2,
   'phone_verified': True,
   'profile_complete': True,
   'provid': 1,
   'reach': 1,
   'report': 1,
   'search': 2,
   'use': 1,
   'web': 3,
   'websit': 2,
   'work': 3,
   'year': 1},
  'M'),
 ({"''": 1,
   "'m": 1,
   '--': 1,
   '100': 1,
   '2003': 1,
   '2004.': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 's',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   '``': 1,
   'abstract': 1,
   'academ': 1,
   'accur': 1,
   'along': 1,
   'amazon': 1,
   'approach': 1,
   'audienc': 1,
   'author': 1,
   'background': 1,
   'broke': 1,
   'busi': 1,
   'commun': 1,
   'concept': 1,
   'consist': 1,
   'critic': 1,
   'current': 1,
   'degre': 1,
   'deposit_made': False,
   'develop': 1,
   'document': 1,
   'easi': 1,
   'email_verified': True,
   'english': 1,
   'enrol': 1,
   'essenti': 2,
   'establish': 1,
   'facebook_connected': False,
   'focus': 1,
   'found': 1,
   'fun': 1,
   'goal': 1,
   'ground': 1,
   'guid': 2,
   'highli': 1,
   'identity_verified': False,
   'inform': 1,
   'intellectu': 1,
   'languag': 1,
   'lay': 1,
   'learn': 1,
   'level': 1,
   'lifelong': 1,
   'logic': 1,
   'look': 1,
   'make': 1,
   'master': 1,
   'materi': 1,
   'move': 1,
   'need': 1,
   'new': 1,
   'novemb': 1,
   'one': 1,
   'payment_verified': False,
   'perfectli': 1,
   'person': 1,
   'philosophi': 3,
   'phone_verified': False,
   'pitch': 1,
   'prais': 1,
   'present': 1,
   'product': 1,
   'profile_complete': True,
   'project': 1,
   'publish': 1,
   'pursu': 1,
   'quest': 1,
   'reach': 1,
   'review': 3,
   'said': 1,
   'scienc': 1,
   'serious': 1,
   'sinc': 1,
   'subject': 1,
   'subsequ': 1,
   'success': 1,
   'take': 1,
   'teach': 1,
   'teacher': 1,
   'technic': 2,
   'think': 1,
   'thinker': 2,
   'understand': 1,
   'univers': 2,
   'user': 1,
   'well': 1,
   'work': 1,
   'write': 3,
   'yet': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'dedic': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'hardwork': 1,
   'identity_verified': False,
   'payment_verified': False,
   'person': 1,
   'phone_verified': True,
   'profile_complete': True},
  'M'),
 ({"'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'z',
   'Last': 'k',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'busi': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'let': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True},
  'M'),
 ({"'m": 1,
   '.net': 1,
   '10': 1,
   '2012': 1,
   '700': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='7'>,
   'First': 'd',
   'Last': '9',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'administr': 1,
   'also': 1,
   'applic': 1,
   'asp.net': 1,
   'build': 1,
   'c': 1,
   'center': 1,
   'cm': 1,
   'compani': 2,
   'configur': 1,
   'creat': 1,
   'daili': 1,
   'deposit_made': True,
   'dhcp': 1,
   'directori': 1,
   'dn': 1,
   'drupal': 1,
   'email_verified': True,
   'engin': 1,
   'etc': 1,
   'etc.': 1,
   'expert': 1,
   'facebook_connected': True,
   'gpo': 1,
   'hr': 1,
   'identity_verified': True,
   'ii': 1,
   'inventori': 1,
   'job': 2,
   'joomla': 1,
   'manag': 1,
   'mani': 1,
   'payment_verified': True,
   'phone_verified': True,
   'platform': 1,
   'profile_complete': True,
   'seo': 1,
   'server': 1,
   'site': 1,
   'system': 2,
   'use': 1,
   'web': 1,
   'wide': 1,
   'window': 4,
   'wordpress': 1,
   'work': 2,
   'workstat': 1,
   'world': 1,
   'year': 1,
   'years.i': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'a',
   'Last': '5',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'chanc': 1,
   'dazzl': 1,
   'deposit_made': False,
   'email_verified': True,
   'end': 1,
   'excel.i': 1,
   'facebook_connected': True,
   'give': 1,
   'identity_verified': False,
   'lowest': 1,
   'payment_verified': False,
   'phone_verified': True,
   'price': 1,
   'profile_complete': True,
   'short': 1,
   'start': 1,
   'thing': 1,
   'time': 1,
   'work': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'clean': 1,
   'creat': 1,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'facebook_connected': False,
   'georg': 1,
   'i`m': 1,
   'identity_verified': False,
   'last': 1,
   'love': 1,
   'modern': 1,
   'name': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'technolog': 1,
   'theme': 1,
   'use': 1,
   'web': 1},
  'M'),
 ({'/html5': 1,
   '20': 1,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'e',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'art': 1,
   'certifi': 1,
   'cluj-napoca': 1,
   'concept': 1,
   'css3': 1,
   'deposit_made': True,
   'design': 3,
   'develop': 1,
   'email_verified': True,
   'eu': 1,
   'experi': 1,
   'facebook_connected': True,
   'graphic': 2,
   'guarante': 1,
   'high': 1,
   'host': 1,
   'identity_verified': False,
   'locat': 1,
   'multimedia': 1,
   'offer': 1,
   'payment_verified': False,
   'phone_verified': True,
   'print': 1,
   'profession': 2,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'region': 1,
   'respons': 1,
   'romania': 1,
   'servic': 1,
   'technolog': 1,
   'transylvania': 1,
   'web': 2,
   'webdesign': 1,
   'websit': 1,
   'year': 1},
  'M'),
 ({'14': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(15, 16), match='1'>,
   'First': 'w',
   'Last': '1',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'abil': 1,
   'adult': 1,
   'blog': 1,
   'bottom': 1,
   'ca': 1,
   'content': 1,
   'creat': 3,
   'deposit_made': True,
   'design': 1,
   'develop': 1,
   'ecommerc': 1,
   'edit': 1,
   'email_verified': True,
   'everi': 1,
   'exist': 2,
   'facebook_connected': False,
   'graphic': 1,
   'identity_verified': False,
   'imagin': 2,
   'includ': 1,
   'limit': 1,
   'match': 1,
   "n't": 1,
   'noth': 1,
   'payment_verified': False,
   'phone_verified': False,
   'pleas': 1,
   'power': 1,
   'profile_complete': True,
   'program': 1,
   'site': 3,
   'special': 1,
   'top': 1,
   'turn': 1,
   'type': 1,
   'video': 1,
   'web': 1,
   'websit': 3,
   'wordpress': 2,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'articl': 1,
   'deposit_made': False,
   'editor': 1,
   'email_verified': True,
   'english': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'job': 1,
   'languag': 1,
   'mani': 1,
   'origin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'proofread': 1,
   'seo': 1,
   'site': 1,
   'specialist': 1,
   'teacher': 1,
   'translat': 1,
   'work': 1,
   'writer': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'basi': 1,
   'deposit_made': False,
   'done': 1,
   'email_verified': True,
   'facebook_connected': False,
   'get': 1,
   'group': 1,
   'identity_verified': False,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': False,
   'profile_complete': True,
   'project': 3,
   'talent': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'k',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   'bootstrap': 1,
   'css': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'joomla': 1,
   'less': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'profile_complete': True,
   'sass': 1,
   'wordpress': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'r',
   'Last': '8',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'also': 1,
   'bi': 1,
   'creat': 1,
   'data': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'engin': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'hand': 1,
   'identity_verified': False,
   'informatica': 1,
   'macro': 1,
   'ms': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'softwar': 1,
   'technolog': 1,
   'tool': 1,
   'warehous': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({"'s": 1,
   '10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'd',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'advertis': 1,
   'client': 2,
   'commerci': 1,
   'deposit_made': True,
   'director': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'film': 1,
   'group': 1,
   'identity_verified': False,
   'intern': 1,
   'local': 1,
   'mani': 1,
   'market': 2,
   'nation': 1,
   'offer': 2,
   'one': 2,
   'payment_verified': False,
   'phone_verified': False,
   'pleasur': 1,
   'produc': 1,
   'product': 3,
   'profile_complete': True,
   'qualiti': 1,
   'radio': 2,
   'seen': 1,
   'servic': 1,
   'skill': 1,
   'success': 1,
   'televis': 1,
   'thousand': 1,
   'use': 1,
   'web': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"''": 1,
   '3': 1,
   '7': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='3'>,
   'First': 'a',
   'Last': 'x',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   '``': 1,
   'adeel': 2,
   'ahm': 1,
   'base': 1,
   'compani': 2,
   'complex': 1,
   'databas': 1,
   'deposit_made': True,
   'develop': 2,
   'differ': 1,
   'dubai': 1,
   'email_verified': True,
   'facebook_connected': True,
   'give': 1,
   'hi': 1,
   'huge': 1,
   'idea': 1,
   'identity_verified': False,
   'kingdom': 1,
   'last': 2,
   'life': 1,
   'link': 1,
   'mysql': 1,
   'name': 1,
   'offshor': 1,
   'pakistan': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'project': 2,
   'sinc': 2,
   'think': 1,
   'unit': 1,
   'websit': 2,
   'work': 3,
   'year': 2},
  'M'),
 ({'.net': 1,
   '7': 1,
   '9': 2,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'k',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'good': 1,
   'html5': 1,
   'identity_verified': False,
   'jqueri': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'reactj': 1,
   'redux': 1,
   'usa': 1,
   'work': 1,
   'year': 3},
  'M'),
 ({"''": 1,
   '4.5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'd',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '``': 1,
   'afford': 1,
   'bangladesh.i': 1,
   'believ': 1,
   'click': 1,
   'data': 1,
   'depart': 1,
   'deposit_made': False,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': False,
   'hire': 1,
   'identity_verified': False,
   'job': 2,
   'last': 1,
   'make': 1,
   'manag': 1,
   'onlin': 1,
   'payment_verified': False,
   'pharmacist': 1,
   'phone_verified': True,
   'prefer': 1,
   'price': 1,
   'product': 1,
   'profile.i': 1,
   'profile_complete': True,
   'qualiti': 1,
   'readi': 1,
   'thank': 1,
   'time': 1,
   'visit': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'...': 1,
   '10': 1,
   '15': 2,
   '20': 1,
   '3d': 1,
   '5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'm',
   'Numchar': 3,
   'Vowel': None,
   'app': 1,
   'build': 1,
   'c/c++': 1,
   'canada': 1,
   'china': 1,
   'compani': 1,
   'complet': 1,
   'consist': 1,
   'deposit_made': False,
   'design': 1,
   'desktop': 1,
   'detail': 1,
   'develop': 1,
   'email_verified': True,
   'engin': 1,
   'experienc': 1,
   'facebook_connected': False,
   'finish': 1,
   'flash/flex': 1,
   'follow': 1,
   'french': 1,
   'give': 1,
   'identity_verified': False,
   'japan': 1,
   'java': 1,
   'korea': 1,
   'lot': 1,
   'mobil': 1,
   'new': 1,
   'ocr': 1,
   'order': 1,
   'payment_verified': False,
   'person': 2,
   'phone_verified': False,
   'profile_complete': True,
   'project': 2,
   'revers': 1,
   'team': 2,
   'translat': 1,
   'u.s.': 1,
   'web': 1,
   'websit': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'addit': 1,
   'base': 1,
   'basic': 2,
   'best': 1,
   'code': 1,
   'content': 1,
   'corpor': 1,
   'deposit_made': False,
   'design': 7,
   'develop': 2,
   'drupal': 1,
   'e-commerc': 1,
   'email_verified': True,
   'expert': 1,
   'facebook_connected': False,
   'famili': 1,
   'flash': 1,
   'freelanc': 2,
   'friend': 1,
   'graphic': 2,
   'handl': 1,
   'home': 1,
   'html/css': 1,
   'ident': 1,
   'identity_verified': False,
   'joomla': 1,
   'manag': 1,
   'offer': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'php': 1,
   'portfolio': 1,
   'profile_complete': True,
   'relat': 1,
   'servic': 2,
   'small': 1,
   'stationari': 1,
   'team': 3,
   'technolog': 1,
   'view': 1,
   'web': 1,
   'websit': 4,
   'wordpress': 1,
   'work': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'also': 1,
   'applic': 1,
   'base': 1,
   'code': 1,
   'css': 1,
   'data': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'framework': 1,
   'freelanc': 1,
   'fulltim': 1,
   'gimp': 1,
   'identity_verified': False,
   'ignit': 1,
   'includ': 1,
   'indonesia': 1,
   'jakarta': 1,
   'java': 1,
   'know': 1,
   'learn': 1,
   'machin': 1,
   'mine': 1,
   'name': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'progress': 1,
   'projects.i': 1,
   'script': 1,
   'skill': 1,
   'web': 3,
   'xhtml': 1},
  'M'),
 ({'15+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'l',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ad': 1,
   'ajax': 1,
   'appropri': 1,
   'asp': 1,
   'asp.net': 1,
   'averag': 1,
   'backend': 1,
   'base': 1,
   'busi': 1,
   'c': 1,
   'client': 1,
   'css': 1,
   'custom': 1,
   'deliveri': 1,
   'deposit_made': False,
   'dhtml': 1,
   'email_verified': True,
   'expand': 1,
   'experi': 1,
   'expert': 1,
   'expertis': 1,
   'facebook_connected': False,
   'full': 1,
   'give': 1,
   'group': 1,
   'help': 1,
   'high': 3,
   'html': 1,
   'identity_verified': False,
   'includ': 1,
   'industri': 3,
   'innov': 1,
   'javascript': 1,
   'like': 2,
   'local': 1,
   'mainli': 1,
   'make': 1,
   'mani': 1,
   'microsoft': 1,
   'money': 1,
   'motto': 1,
   'mysql': 1,
   'need': 1,
   'offer': 2,
   'payment_verified': False,
   'phone_verified': True,
   'primari': 1,
   'profile_complete': True,
   'program': 1,
   'proof': 1,
   'qualiti': 3,
   'reput': 1,
   'requir': 1,
   'satisfi': 1,
   'scope': 1,
   'server': 1,
   'servic': 1,
   'skill': 1,
   'solut': 2,
   'sql': 1,
   'support': 1,
   'technic': 1,
   'technolog': 2,
   'time': 1,
   'use': 1,
   'valu': 1,
   'vb': 1,
   'vb.net': 1,
   'vba': 1,
   'vbscript': 1,
   'within': 2,
   'worth': 1,
   'xml': 1,
   'year': 1},
  'M'),
 ({'.net': 1,
   '4': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='S'>,
   'Digit': None,
   'First': 'S',
   'Last': 'i',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'deposit_made': False,
   'differ': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'freelanc': 1,
   'home': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'prefer': 1,
   'profile_complete': True,
   'synchron': 1,
   'web': 1,
   'work': 2,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 's',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'android': 1,
   'applic': 3,
   'bank': 1,
   'base': 3,
   'biggest': 1,
   'central': 1,
   'databas': 1,
   'deposit_made': False,
   'develop': 2,
   'dm': 1,
   'documentum': 1,
   'email_verified': True,
   'europ': 1,
   'facebook_connected': False,
   'flex': 1,
   'framework': 1,
   'howev': 1,
   'identity_verified': False,
   'job': 1,
   'look': 1,
   'one': 1,
   'oracl': 1,
   'past': 1,
   'payment_verified': False,
   'phone_verified': False,
   'posit': 2,
   'profile_complete': True,
   'senior': 1,
   'server': 1,
   'specialist': 1,
   'system': 1,
   'use': 1,
   'weblog': 1,
   'websit': 1,
   'well': 1,
   'work': 1},
  'M'),
 ({'6': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 'y',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'compani': 1,
   'corpor': 1,
   'creation': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'style': 1,
   'uniqu': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='1'>,
   'First': 'm',
   'Last': 't',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'call': 1,
   'creation': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'firm': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'see': 1,
   'work': 1},
  'M'),
 ({'10': 1,
   '2.0': 4,
   '6': 1,
   '7': 1,
   '8': 1,
   '9': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='9'>,
   'First': 'v',
   'Last': '3',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   '\\xc2\\xbb': 2,
   'action': 4,
   'adob': 4,
   'cs3': 4,
   'deposit_made': False,
   'domain': 4,
   'email_verified': True,
   'facebook_connected': False,
   'flash': 12,
   'html/dhtml': 4,
   'http': 4,
   'identity_verified': False,
   'javascript': 4,
   'ms-dot': 4,
   'net': 4,
   'payment_verified': False,
   'phone_verified': False,
   'player': 4,
   'profile_complete': True,
   'script': 4,
   'server\\xc2\\xbbtechnolog': 3,
   'sql': 4,
   'technolog': 4,
   'use': 4,
   'xml': 4},
  'M'),
 ({'+6': 1,
   '100': 1,
   '3rd': 2,
   '4': 1,
   '5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'j',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   '\\ti': 1,
   'along': 1,
   'alway': 1,
   'aptitud': 1,
   'articl': 1,
   'asian': 1,
   'assur': 1,
   'bangladesh': 1,
   'batch': 1,
   'bba': 1,
   'best': 1,
   'boast': 1,
   'capabl': 1,
   'career': 1,
   'cgpa': 2,
   'choos': 1,
   'client': 1,
   'command': 1,
   'complet': 1,
   'countri': 1,
   'dead': 1,
   'deposit_made': False,
   'driven': 1,
   'email_verified': True,
   'enough': 1,
   'ensur': 1,
   'excel': 1,
   'experi': 1,
   'experienc': 1,
   'express': 1,
   'facebook_connected': False,
   'financ': 1,
   'glanc': 1,
   'identity_verified': False,
   'import': 1,
   'in-tim': 1,
   'includ': 1,
   'line': 1,
   'lowest': 1,
   'made': 1,
   'major': 1,
   'mba': 3,
   'mohammad': 1,
   'much': 1,
   'name': 1,
   'never': 1,
   'new': 1,
   'obtain': 1,
   'payment_verified': False,
   'phone_verified': False,
   'place': 2,
   'price': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 3,
   'reason': 1,
   'scienc': 1,
   'seriou': 1,
   'servic': 1,
   'show': 1,
   'skill': 2,
   'south': 1,
   'submiss': 2,
   'talent': 1,
   'technic': 1,
   'technolog': 1,
   'uniqu': 1,
   'univers': 1,
   'verbal': 1,
   'want': 1,
   'work': 1,
   'write': 3,
   'written': 1,
   'zone': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='0'>,
   'First': 'a',
   'Last': '8',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'best': 1,
   'come': 1,
   'deposit_made': False,
   'detail': 1,
   'done': 1,
   'easi': 1,
   'effici': 1,
   'email_verified': True,
   'english': 1,
   'excel': 1,
   'facebook_connected': False,
   'fast': 2,
   'good': 1,
   'grammar': 1,
   'honest': 1,
   'identity_verified': False,
   'improv': 1,
   'initi': 1,
   'keen': 1,
   'much': 1,
   'new': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': True,
   'possibl': 1,
   'profile_complete': True,
   'project': 2,
   'reason': 1,
   'sens': 1,
   'skill': 1,
   'softwar': 1,
   'solut': 1,
   'take': 1,
   'want': 1,
   'way': 1,
   'work': 1,
   'worker': 1,
   'yet': 1},
  'M'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'client': 1,
   'css': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'done': 1,
   'email_verified': True,
   'facebook_connected': False,
   'familiar': 1,
   'html': 2,
   'identity_verified': False,
   'joomla': 1,
   'mani': 1,
   'name': 1,
   'past': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'psd': 1,
   'raj': 1,
   'ravi': 1,
   'sharma': 1,
   'two': 1,
   'web': 1,
   'wordpress': 1,
   'xhtml': 1,
   'year': 1},
  'M'),
 ({"'s": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'link': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'resum': 1},
  'F'),
 ({'30': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'v',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'administr': 1,
   'also': 2,
   'artist': 1,
   'beka': 1,
   'bibl': 1,
   'book': 1,
   'card': 1,
   'cashless': 1,
   'certain': 1,
   'children': 2,
   'combin': 1,
   'compani': 1,
   'conflict': 1,
   'deposit_made': True,
   'develop': 2,
   'doman': 1,
   'earn': 1,
   'educ': 2,
   'email_verified': True,
   'english': 1,
   'experi': 2,
   'extract': 1,
   'facebook_connected': False,
   'featur': 1,
   'field': 1,
   'glen': 1,
   'government': 1,
   'health': 1,
   'help': 1,
   'herbal': 1,
   'hospit': 1,
   'identity_verified': False,
   'illustr': 1,
   'immedi': 1,
   'includ': 2,
   'india': 1,
   'indian': 1,
   'indigen': 1,
   'individu': 1,
   'insur': 1,
   'involv': 1,
   'latter': 1,
   'level': 1,
   'may': 1,
   'medic': 4,
   'medium': 1,
   'method': 1,
   'missionari': 1,
   'modern': 1,
   'montessori': 1,
   'name': 1,
   'network': 2,
   'newslett': 1,
   'non': 1,
   'organ': 2,
   'organizations.at': 1,
   'parti': 1,
   'payment_verified': True,
   'phone_verified': False,
   'photographi': 1,
   'present': 1,
   'profession': 1,
   'professor': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 2,
   'research': 1,
   'retir': 1,
   'rule': 1,
   'sale': 1,
   'school': 1,
   'slum': 1,
   'sponsor': 1,
   'studi': 1,
   'teach': 1,
   'team': 1,
   'third': 1,
   'three': 1,
   'transcript': 1,
   'treatment': 1,
   'univers': 1,
   'use': 2,
   'variou': 2,
   'visit': 1,
   'way': 1,
   'work': 5,
   'write': 1,
   'written': 1,
   'year': 1},
  'M'),
 ({"''": 1,
   "'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   '``': 1,
   'alway': 2,
   'best': 2,
   'carri': 1,
   'deposit_made': False,
   'email_verified': True,
   'everi': 2,
   'facebook_connected': False,
   'give': 3,
   'identity_verified': False,
   'impact': 1,
   'job': 3,
   'last': 1,
   'payment_verified': False,
   'phone_verified': False,
   'posit': 1,
   'profile_complete': True,
   'realli': 1,
   'shot': 1,
   'take': 1,
   'think': 1,
   'want': 1},
  'F'),
 ({'--': 14,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'i',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'aim': 1,
   'art': 1,
   'background': 1,
   'best': 1,
   'blog': 1,
   'creativ': 1,
   'deposit_made': False,
   'design': 3,
   'dreami': 1,
   'effect': 1,
   'email_verified': True,
   'facebook_connected': False,
   'graphic': 1,
   'high': 2,
   'identity_verified': False,
   'imag': 1,
   'inspir': 1,
   'logo': 1,
   'manipul': 1,
   'object': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photo': 2,
   'photoshop': 1,
   'poster': 1,
   'profession': 1,
   'profile_complete': True,
   'provid': 2,
   'qualiti': 2,
   'remov': 1,
   'resourc': 1,
   'retouch': 1,
   'servic': 1,
   'stock': 1,
   'tutori': 2,
   'writer': 1},
  'F'),
 ({'4': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 'S',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'academ': 1,
   'accept': 1,
   'articles\\xc2\\xb7': 1,
   'blogs\\xc2\\xb7': 1,
   'complet': 1,
   'content': 4,
   'copyscap': 1,
   'deliv': 1,
   'deposit_made': False,
   'differ': 1,
   'email_verified': True,
   'enhanc': 1,
   'facebook_connected': False,
   'fast': 1,
   'field': 1,
   'follow': 1,
   'freelanc': 1,
   'genuin': 1,
   'get': 1,
   'goal': 1,
   'graduat': 1,
   'group': 1,
   'high': 1,
   'hire': 1,
   'huge': 1,
   'identity_verified': False,
   'industri': 1,
   'last': 1,
   'main': 1,
   'mani': 1,
   'moneybook': 1,
   'offer': 1,
   'origin': 1,
   'pass': 1,
   'payment': 1,
   'payment_verified': False,
   'paypal': 1,
   'phone_verified': False,
   'privileg': 1,
   'profession': 1,
   'profile_complete': True,
   'qualiti': 2,
   'quantiti': 1,
   'review': 1,
   'seo': 1,
   'servic': 1,
   'special': 1,
   'strive': 1,
   'studi': 1,
   'subject': 1,
   'time': 1,
   'turnaround': 1,
   'us': 1,
   'variou': 1,
   'via': 1,
   'work': 1,
   'writer': 3,
   'year': 1},
  'M'),
 ({'2008': 1,
   '2012': 1,
   '7': 1,
   'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'angularj': 1,
   'api': 1,
   'applic': 1,
   'asp.net': 2,
   'c': 1,
   'crm': 1,
   'deposit_made': False,
   'develop': 2,
   'domain': 1,
   'email_verified': True,
   'entiti': 1,
   'erp': 1,
   'experi': 1,
   'experience.i': 1,
   'expertis': 1,
   'facebook_connected': False,
   'hello': 1,
   'identity_verified': False,
   'includ': 1,
   'inventori': 1,
   'javascript': 1,
   'jqueri': 1,
   'larg': 1,
   'like': 1,
   'ms-sql': 1,
   'mvc': 2,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'server': 1,
   'ssr': 1,
   'technolog': 2,
   'variou': 1,
   'web': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'k',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'deposit_made': True,
   'email_verified': True,
   'expert': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'lamp': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'y',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'java': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profile_complete': True,
   'programm': 1,
   'web': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'adob': 1,
   'also': 2,
   'area': 1,
   'articl': 1,
   'blog': 1,
   'bookmark': 1,
   'code': 1,
   'comment': 1,
   'corel': 1,
   'deposit_made': False,
   'design': 1,
   'directori': 1,
   'draw': 1,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'facebook': 1,
   'facebook_connected': False,
   'follow': 1,
   'forum': 1,
   'good': 1,
   'great': 1,
   'identity_verified': False,
   'like': 1,
   'microsoft': 3,
   'network': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'post': 1,
   'powerpoint': 1,
   'profile_complete': True,
   'site': 1,
   'social': 2,
   'speed': 1,
   'submiss': 2,
   'test': 1,
   'twitter': 1,
   'type': 1,
   'word': 1,
   'wpm': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'a',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'afford': 1,
   'also': 1,
   'app': 1,
   'awar': 1,
   'best': 2,
   'brand': 1,
   'busi': 1,
   'clear': 1,
   'client': 1,
   'commun': 1,
   'creat': 1,
   'deliv': 1,
   'deliveri': 1,
   'deposit_made': True,
   'email_verified': True,
   'ensur': 1,
   'everi': 2,
   'excel': 1,
   'facebook_connected': True,
   'firm': 1,
   'fit': 1,
   'focu': 1,
   'follow': 1,
   'gener': 1,
   'guarante': 1,
   'hire': 1,
   'identity_verified': True,
   'includ': 1,
   'individu': 1,
   'innov': 1,
   'know': 1,
   'lead': 1,
   'make': 1,
   'market': 1,
   'onsit': 1,
   'orient': 1,
   'outstand': 1,
   'payment_verified': True,
   'phone_verified': True,
   'prefer': 1,
   'pride': 1,
   'profile_complete': True,
   'propos': 1,
   'receiv': 1,
   'requir': 1,
   'sale': 1,
   'softwar': 1,
   'staff': 1,
   'strive': 1,
   'support': 1,
   'take': 1,
   'technic': 1,
   'time': 2,
   'train': 1,
   'uniqu': 1,
   'within': 1},
  'M'),
 ({'9': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='8'>,
   'First': 's',
   'Last': '6',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'anim': 1,
   'corpor': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'explain': 1,
   'facebook_connected': True,
   'graphic': 1,
   'identity_verified': False,
   'medic': 1,
   'motion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'video': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 't',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'analyst': 1,
   'busi': 1,
   'current': 1,
   'deliveri': 1,
   'deposit_made': True,
   'e2e': 1,
   'email_verified': True,
   'facebook_connected': False,
   'good': 1,
   'identity_verified': False,
   'indian': 1,
   'interperson': 1,
   'mnc': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'respons': 1,
   'skill': 1,
   'sr.': 1,
   'technic': 1,
   'well': 1,
   'work': 1},
  'M'),
 ({"'m": 1,
   '100': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'i',
   'Last': 'q',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='i'>,
   'build': 1,
   'busi': 1,
   'client': 1,
   'current': 1,
   'deposit_made': False,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'i\\\\': 1,
   'identity_verified': False,
   'knowledg': 1,
   'last': 1,
   'opportun': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'provid': 1,
   'satisfact': 1,
   'seek': 1,
   'servic': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'm',
   'Numchar': 5,
   'Vowel': None,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'high': 1,
   'identity_verified': False,
   'math': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'school': 1,
   'teacher': 1},
  'M'),
 ({'2.0': 1,
   '2003': 1,
   '30': 1,
   '5': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='V'>,
   'Digit': None,
   'First': 'V',
   'Last': 'G',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'abil': 1,
   'abl': 1,
   'actionscript': 1,
   'almost': 1,
   'alway': 1,
   'ambiti': 1,
   'as3.0': 2,
   'base': 2,
   'big': 1,
   'biggest': 1,
   'chat': 1,
   'code': 1,
   'commun': 1,
   'compani': 1,
   'constant': 1,
   'contract': 1,
   'deposit_made': True,
   'design': 1,
   'develop': 2,
   'either': 1,
   'email_verified': True,
   'facebook': 1,
   'facebook_connected': True,
   'firm': 1,
   'flash': 2,
   'flash/flex': 1,
   'freelanc': 1,
   'get': 1,
   'good': 1,
   'hi': 1,
   'identity_verified': False,
   'independ': 1,
   'job': 1,
   'know': 1,
   'look': 1,
   'mail': 1,
   'may': 1,
   'min': 2,
   'passion': 2,
   'payment_verified': True,
   'phone_verified': True,
   'photoshop': 1,
   'port': 1,
   'profil': 1,
   'profile_complete': True,
   'program': 1,
   'programm': 1,
   'project': 2,
   'provid': 1,
   'rate': 1,
   'repli': 1,
   'requir': 1,
   'robotleg': 1,
   'sens': 1,
   'servic': 1,
   'sinc': 1,
   'small': 1,
   'smartfox': 1,
   'start': 1,
   'strength': 1,
   'suffici': 1,
   'take': 1,
   'use': 1,
   'via': 1,
   'within': 1,
   'work': 2},
  'M'),
 ({"'m": 2,
   "'s": 2,
   '.i': 1,
   '2': 1,
   '2009': 1,
   '3': 2,
   '5': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='L'>,
   'Digit': None,
   'First': 'L',
   'Last': 'i',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'actual': 1,
   'address': 1,
   'art': 1,
   'background': 1,
   'base': 1,
   'best': 1,
   'blog': 1,
   'broken': 1,
   'challeng': 1,
   'christoph': 2,
   'client': 1,
   'code': 2,
   'commun': 1,
   'concept': 1,
   'contribut': 1,
   'creativ': 1,
   'css': 1,
   'css2': 1,
   'current': 1,
   'day': 1,
   'degrad': 1,
   'deposit_made': False,
   'design': 2,
   'director': 1,
   'domain': 1,
   'email_verified': True,
   'facebook_connected': False,
   'feedback': 1,
   'follow': 1,
   'forum': 1,
   'franc': 1,
   'freelanc': 1,
   'geek': 1,
   'grace': 1,
   'hello': 1,
   'html': 1,
   'identity_verified': False,
   'jacob': 1,
   'launch': 1,
   'lectur': 1,
   'link': 1,
   'love': 1,
   'market': 3,
   'meet': 1,
   'miss': 1,
   'name': 2,
   'new': 1,
   'onlin': 1,
   'pari': 2,
   'payment_verified': False,
   'peer': 1,
   'phone_verified': False,
   'portfolio': 2,
   'profile_complete': True,
   'rank': 1,
   'read': 1,
   'recent': 1,
   'recogn': 1,
   'regard': 1,
   'renew': 1,
   'resum': 1,
   'revers': 1,
   'sinc': 1,
   'skill': 1,
   'special': 1,
   'url': 1,
   'usabl': 1,
   'view': 1,
   'visual': 1,
   'watch': 1,
   'web': 2,
   'webdesign': 2,
   'websit': 1,
   'zlobinski-furmaniak': 2},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='3'>,
   'First': 'd',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='a'>,
   'bargain': 1,
   'becom': 1,
   'bs': 1,
   'coe': 1,
   'compani': 1,
   'consult': 1,
   'decid': 1,
   'deposit_made': False,
   'email_verified': True,
   'employe': 1,
   'everi': 1,
   'facebook_connected': False,
   'go': 1,
   'graduat': 1,
   'identity_verified': False,
   'independ': 1,
   'individu': 1,
   'knowledg': 1,
   'need': 1,
   'never': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'servic': 1,
   'skill': 1,
   'time': 1,
   'want': 1,
   'webmast': 1,
   'work': 1,
   'wrong': 1,
   'yr': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='1'>,
   'First': 'v',
   'Last': '2',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'articl': 2,
   'client': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'give': 1,
   'identity_verified': False,
   'intend': 1,
   'meet': 1,
   'need': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'qualiti': 1,
   'readi': 1,
   'requir': 1,
   'serv': 1,
   'subject': 1,
   'varieti': 1,
   'wide': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='0'>,
   'First': 'c',
   'Last': '0',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'area': 1,
   'cm': 1,
   'codeignit': 1,
   'compani': 1,
   'creat': 1,
   'css': 1,
   'deposit_made': False,
   'develop': 1,
   'differ': 1,
   'email_verified': True,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': True,
   'framework': 2,
   'ground': 1,
   'html': 1,
   'identity_verified': False,
   'joomla': 1,
   'lamp': 1,
   'medium': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'program': 1,
   'project': 1,
   'side': 1,
   'small': 1,
   'work': 2,
   'year': 1,
   'yii': 1,
   'zend': 1},
  'M'),
 ({"'ll": 2,
   '1.': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
   'Digit': None,
   'First': 'H',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'account': 1,
   'achiev': 2,
   'ad': 1,
   'afford': 1,
   'analysi': 2,
   'announc': 1,
   'attract': 1,
   'b2b': 1,
   'banner': 1,
   'blog': 4,
   'book': 1,
   'brochur': 1,
   'build': 2,
   'built': 1,
   'busi': 1,
   'cm': 1,
   'competit': 2,
   'competitor': 1,
   'consum': 1,
   'cover': 1,
   'creat': 2,
   'custom': 1,
   'defin': 1,
   'deposit_made': False,
   'design': 3,
   'develop': 1,
   'email_verified': True,
   'exist': 1,
   'experi': 1,
   'facebook_connected': False,
   'ghost': 1,
   'help': 3,
   'identity_verified': False,
   'industri': 1,
   'inform': 1,
   'joomla': 1,
   'leader': 1,
   'link': 2,
   'manag': 2,
   'market': 2,
   'match': 1,
   'media': 1,
   'monitor': 2,
   'need': 1,
   'network': 1,
   'offer': 1,
   'ongo': 1,
   'page': 1,
   'payment_verified': False,
   'phone_verified': False,
   'player': 1,
   'press': 1,
   'product': 1,
   'profil': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 2,
   'report': 1,
   'simpl': 1,
   'skill': 1,
   'social': 1,
   'strategi': 3,
   'system': 1,
   'target': 1,
   'thought': 1,
   'time': 1,
   'trend': 1,
   'twitter': 3,
   'util': 1,
   'vertic': 1,
   'web': 1,
   'websit': 3,
   'whether': 2,
   'wordpress': 1,
   'write': 1},
  'F'),
 ({'100+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'n',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='a'>,
   'alam': 1,
   'almost': 1,
   'applic': 1,
   'beauti': 1,
   'codeignit': 1,
   'deposit_made': False,
   'design': 2,
   'develop': 3,
   'dhaka': 1,
   'dynam': 1,
   'email_verified': True,
   'facebook_connected': False,
   'framework': 1,
   'hi': 1,
   'identity_verified': False,
   'khan': 1,
   'live': 1,
   'md': 1,
   'open': 1,
   'past': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'portfolio': 1,
   'prefer': 1,
   'profile_complete': True,
   'sourc': 1,
   'uniqu': 1,
   'use': 1,
   'valid': 1,
   'w3c': 1,
   'web': 1,
   'websit': 4,
   'welcom': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'.net': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='D'>,
   'Digit': None,
   'First': 'D',
   'Last': 'd',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(4, 5), match='o'>,
   'also': 1,
   'applic': 1,
   'around': 1,
   'base': 1,
   'client': 1,
   'compani': 1,
   'deploy': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'exampl': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'intern': 1,
   'like': 1,
   'mani': 1,
   'opportun': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pleas': 1,
   'profile_complete': True,
   'request': 1,
   'see': 1,
   'servic': 1,
   'site': 1,
   'small': 1,
   'softwar': 1,
   'technolog': 1,
   'vers': 1,
   'visit': 1,
   'web': 2,
   'welcom': 1,
   'well': 1,
   'window': 1,
   'work': 2,
   'world': 1,
   'write': 1},
  'M'),
 ({'...': 1,
   '4': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='5'>,
   'First': 'p',
   'Last': '5',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'build': 1,
   'comput': 1,
   'convers': 1,
   'data': 4,
   'deposit_made': True,
   'email_verified': True,
   'entri': 1,
   'etc': 1,
   'experi': 1,
   'facebook_connected': False,
   'format': 1,
   'graduat': 1,
   'identity_verified': False,
   'internet': 2,
   'link': 1,
   'market': 1,
   'payment_verified': False,
   'phone_verified': False,
   'post': 1,
   'process': 1,
   'profile_complete': True,
   'research': 1,
   'scienc': 1,
   'seo': 1,
   'year': 1},
  'M'),
 ({'2014.': 1,
   '28': 1,
   '5': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='W'>,
   'Digit': None,
   'First': 'W',
   'Last': 'l',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'call': 1,
   'canada': 1,
   'center': 1,
   'contractor': 1,
   'custom': 1,
   'deposit_made': False,
   'email_verified': True,
   'expand': 1,
   'experi': 1,
   'facebook_connected': False,
   'flexibl': 1,
   'hi': 1,
   'identity_verified': False,
   'includ': 1,
   'independ': 1,
   'look': 1,
   'name': 1,
   'old': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'retail': 1,
   'schedul': 1,
   'septemb': 1,
   'servic': 1,
   'sinc': 1,
   'variou': 1,
   'work': 1,
   'year': 2},
  'F'),
 ({"'s": 1,
   "'ve": 1,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'o',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'back': 1,
   'best': 1,
   'busi': 1,
   'care': 1,
   'choic': 1,
   'configur': 1,
   'cost-effect': 1,
   'deposit_made': True,
   'design': 1,
   'detail': 1,
   'eight': 1,
   'email_verified': True,
   'facebook_connected': True,
   'get': 1,
   'identity_verified': False,
   'joomla': 1,
   'mainten': 2,
   'one-stop': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'run': 1,
   'site': 1,
   'specialis': 1,
   'staff': 1,
   'take': 1,
   'web': 1,
   'websit': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'a',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'applic': 1,
   'busi': 2,
   'compani': 1,
   'cost': 1,
   'deposit_made': True,
   'design': 1,
   'designing-': 1,
   'develop': 1,
   'dynam': 1,
   'email_verified': True,
   'etc': 1,
   'evolv': 1,
   'facebook_connected': False,
   'galaxi': 1,
   'help': 1,
   'hosting-': 1,
   'identity_verified': False,
   'info': 1,
   'low': 1,
   'payment_verified': False,
   'phone_verified': True,
   'process': 1,
   'profile_complete': True,
   'programming-': 1,
   'provid': 1,
   'qualiti': 1,
   'rang': 1,
   'servic': 4,
   'software-': 1,
   'solut': 1,
   'special': 1,
   'strateg': 1,
   'system': 1,
   'web': 5,
   'web-bas': 1},
  'M'),
 ({'14': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'afford': 1,
   'agenc': 1,
   'aim': 1,
   'art': 1,
   'attent': 1,
   'attract': 1,
   'bid': 1,
   'busi': 1,
   'clear': 1,
   'commun': 2,
   'compet': 1,
   'core': 1,
   'creativ': 1,
   'crisp': 1,
   'cultur': 1,
   'custom': 2,
   'deposit_made': True,
   'design': 3,
   'detail': 1,
   'director': 1,
   'effici': 1,
   'email_verified': True,
   'facebook_connected': True,
   'favor': 1,
   'freelanc': 1,
   'futur': 1,
   'go': 1,
   'highest': 1,
   'hire': 1,
   'ident': 1,
   'identity_verified': False,
   'industry-standard': 1,
   'interfac': 1,
   'intern': 1,
   'job': 1,
   'last': 1,
   'layout': 1,
   'level': 1,
   'lie': 1,
   'local': 1,
   'logo': 1,
   'look': 1,
   'loyalti': 1,
   'market': 2,
   'master': 1,
   'maximum': 2,
   'may': 1,
   'payment_verified': False,
   'perfect': 1,
   'perform': 1,
   'phone_verified': True,
   'portfolio': 1,
   'possibl': 2,
   'print': 1,
   'prior': 1,
   'produc': 1,
   'profile_complete': True,
   'prove': 1,
   'qualiti': 1,
   'save': 1,
   'section': 1,
   'servic': 1,
   'smallest': 1,
   'start': 1,
   'sure': 1,
   'task': 1,
   'technic': 1,
   'think': 1,
   'tool': 1,
   'use': 1,
   'vibrant': 1,
   'web': 1,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='M'>,
   'Digit': None,
   'First': 'M',
   'Last': 'o',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'articl': 1,
   'blog': 1,
   'bulk': 1,
   'competit': 2,
   'content': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': False,
   'highli': 1,
   'identity_verified': False,
   'notch': 1,
   'offer': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'rate': 2,
   'reason': 1,
   'time': 1,
   'top': 1,
   'turnaround': 1,
   'web': 1,
   'work': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'o',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'abil': 1,
   'abl': 1,
   'also': 1,
   'analysi': 1,
   'applic': 1,
   'assist': 1,
   'b2b': 1,
   'busi': 2,
   'cm': 1,
   'commerci': 1,
   'common': 1,
   'data': 2,
   'databas': 1,
   'decis': 1,
   'dedic': 1,
   'deposit_made': False,
   'depth': 1,
   'dn': 1,
   'drupal': 1,
   'email_verified': True,
   'emerg': 1,
   'environ': 1,
   'excel': 1,
   'facebook_connected': False,
   'flexibl': 1,
   'ftp': 1,
   'hard': 1,
   'hardwar': 1,
   'henc': 1,
   'host': 1,
   'identity_verified': False,
   'individu': 1,
   'instal': 1,
   'joomla': 1,
   'knowledg': 1,
   'make': 1,
   'manag': 2,
   'market': 2,
   'ms': 1,
   'mysql': 1,
   'network': 1,
   'offic': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 1,
   'press': 1,
   'profici': 1,
   'profile_complete': True,
   'relat': 1,
   'resel': 1,
   'resourc': 1,
   'self-motiv': 1,
   'sens': 1,
   'server': 1,
   'share': 1,
   'social': 1,
   'softwar': 1,
   'sql': 1,
   'support': 1,
   'technic': 1,
   'technolog': 1,
   'understand': 1,
   'virtual': 1,
   'vp': 1,
   'whm/cpanel': 1,
   'word': 1,
   'work': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 's',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'area': 1,
   'bring': 1,
   'complex': 1,
   'continu': 1,
   'creativ': 1,
   'databas': 1,
   'degre': 1,
   'deposit_made': False,
   'design': 1,
   'desir': 1,
   'develop': 1,
   'differ': 1,
   'effect': 1,
   'email_verified': True,
   'engin': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'growth': 1,
   'high': 1,
   'identity_verified': False,
   'ingenu': 1,
   'market': 1,
   'medium': 1,
   'payment_verified': False,
   'perform': 1,
   'person': 1,
   'phone_verified': False,
   'proactiv': 1,
   'profession': 3,
   'profile_complete': True,
   'project': 1,
   'provid': 1,
   'qualiti': 1,
   'relat': 1,
   'requir': 1,
   'research': 1,
   'sector': 1,
   'six': 1,
   'small': 1,
   'softwar': 2,
   'solut': 1,
   'spirit': 1,
   'system': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'2013': 1,
   '7': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 'n',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'acrobat': 1,
   'apps.i': 1,
   'clean': 1,
   'convers': 1,
   'creat': 2,
   'creation': 1,
   'cycl': 1,
   'data': 2,
   'deal': 1,
   'deposit_made': True,
   'email_verified': True,
   'excel': 2,
   'facebook_connected': False,
   'form': 2,
   'freelanc': 1,
   'full': 1,
   'hundr': 1,
   'identity_verified': False,
   'includ': 1,
   'issu': 1,
   'job': 1,
   'last': 1,
   'live': 1,
   'mani': 1,
   'offic': 1,
   'payment_verified': False,
   'pdf': 3,
   'perform': 2,
   'phone_verified': True,
   'pro': 1,
   'profile_complete': True,
   'research': 1,
   'setup': 1,
   'skill': 1,
   'solut': 1,
   'spreadsheet': 1,
   'technic': 1,
   'xi': 1,
   'year': 1},
  'M'),
 ({'6+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'r',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'accord': 1,
   'complex': 1,
   'custom': 2,
   'deposit_made': False,
   'design': 1,
   'develop': 2,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'fulli': 1,
   'hard': 1,
   'identity_verified': False,
   'number': 1,
   'paid': 1,
   'payment_verified': False,
   'phone_verified': False,
   'plugin': 1,
   'profile_complete': True,
   'project': 1,
   'requir': 1,
   'set': 1,
   'skill': 1,
   'theme': 2,
   'web': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'15': 1,
   'Caps': None,
   'Digit': None,
   'First': 'j',
   'Last': 's',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'access': 1,
   'basic': 1,
   'deposit_made': True,
   'develop': 2,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'ms': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'special': 1,
   'sql': 1,
   'visual': 1,
   'year': 1},
  'M'),
 ({'...': 1,
   '25': 1,
   'Caps': None,
   'Digit': None,
   'First': 'k',
   'Last': 'n',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'deposit_made': False,
   'email_verified': True,
   'english': 1,
   'experi': 3,
   'facebook_connected': False,
   'graphic': 1,
   'identity_verified': False,
   'level': 1,
   'need': 1,
   'outdoor': 1,
   'payment_verified': False,
   'phone_verified': False,
   'portugues': 1,
   'profession': 1,
   'profile_complete': True,
   'romanc': 1,
   'tell': 1,
   'translat': 1,
   'variou': 1,
   'word': 1,
   'year': 3},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'h',
   'Last': 'a',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'cool': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'like': 2,
   'manual': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': True,
   'profile_complete': True,
   'similar': 1,
   'test': 1,
   'tester': 1,
   'websit': 1,
   'work': 3,
   'would': 1},
  'M'),
 ({"''": 2,
   "'m": 1,
   "'ve": 1,
   '10+': 1,
   '2.0': 2,
   'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 'h',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   '``': 2,
   'ajax': 1,
   'app': 1,
   'applic': 1,
   'around': 1,
   'avail': 1,
   'back-end': 1,
   'basi': 1,
   'check': 1,
   'chrome': 1,
   'curl': 1,
   'current': 1,
   'daili': 1,
   'deposit_made': True,
   'desktop': 1,
   'detail': 1,
   'done': 1,
   'email_verified': True,
   'experi': 1,
   'extens': 1,
   'facebook_connected': True,
   'fast': 1,
   'filipino': 1,
   'freelanc': 2,
   'front-end': 1,
   'go': 1,
   'guarante': 1,
   'high': 1,
   'identity_verified': False,
   'internet': 1,
   'jqueri': 1,
   'known': 1,
   'lot': 1,
   'love': 1,
   'one': 1,
   'payment_verified': False,
   'phone_verified': True,
   'phonegap': 1,
   'php': 1,
   'previou': 1,
   'profile_complete': True,
   'qualiti': 1,
   'request': 1,
   'review': 1,
   'stay': 1,
   'super': 2,
   'sure': 1,
   'tri': 1,
   'use': 1,
   'web': 2,
   'websit': 1,
   'work': 4,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'n',
   'Numchar': 4,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'admin': 1,
   'avail': 1,
   'busi': 2,
   'cleric': 1,
   'creativ': 1,
   'data': 1,
   'deposit_made': True,
   'email_verified': True,
   'entri': 1,
   'experi': 1,
   'extens': 1,
   'extra': 1,
   'facebook_connected': False,
   'gener': 1,
   'identity_verified': False,
   'immedi': 1,
   'incom': 1,
   'new': 1,
   'offic': 1,
   'owner': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'project': 2,
   'provid': 1,
   'seek': 1,
   'short': 1,
   'small': 1,
   'take': 1,
   'term': 1,
   'write': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'j',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'accuraci': 1,
   'achiev': 1,
   'also': 1,
   'correct': 1,
   'deposit_made': False,
   'electron': 1,
   'email_verified': True,
   'enthusiast': 1,
   'facebook_connected': False,
   'fast': 1,
   'freelanc': 1,
   'goal': 1,
   'good': 1,
   'grammar': 1,
   'help': 1,
   'hour': 1,
   'identity_verified': False,
   'keep': 1,
   'latest': 1,
   'lest': 1,
   'like': 1,
   'look': 1,
   'new': 1,
   'opportun': 1,
   'part': 1,
   'payment_verified': False,
   'per': 1,
   'phone_verified': True,
   'plan': 1,
   'profile_complete': True,
   'tech': 1,
   'technolog': 1,
   'time': 1,
   'transcript': 1,
   'type': 1,
   'updat': 1,
   'week': 1,
   'work': 2},
  'M'),
 ({'4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'articl': 1,
   'assess': 1,
   'basic': 1,
   'blog': 1,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'glad': 1,
   'help': 1,
   'identity_verified': False,
   'passion': 1,
   'past': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 2,
   'sever': 1,
   'structur': 1,
   'take': 1,
   'websit': 1,
   'work': 1,
   'write': 1,
   'written': 1,
   'year': 1},
  'M'),
 ({'1.': 1,
   '2.': 1,
   'Caps': None,
   'Digit': None,
   'First': 'u',
   'Last': 'n',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='u'>,
   'area4': 1,
   'art': 1,
   'careful': 1,
   'chines': 1,
   'command': 1,
   'deposit_made': False,
   'editor': 1,
   'educ': 1,
   'email_verified': True,
   'english': 1,
   'english3': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'good': 1,
   'half': 1,
   'honest': 1,
   'identity_verified': False,
   'languages-english': 1,
   'major': 1,
   'master': 1,
   'one': 1,
   'patient': 1,
   'payment_verified': False,
   'perfom': 1,
   'person': 1,
   'phone_verified': False,
   'profile_complete': True,
   'respons': 1,
   'trait': 1,
   'two': 1,
   'work': 1,
   'year': 1},
  'F'),
 ({"'m": 1,
   "'ve": 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='3'>,
   'First': 'r',
   'Last': '7',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'abl': 1,
   'academ': 1,
   'avail': 1,
   'background': 1,
   'bring': 1,
   'cheer': 1,
   'choos': 1,
   'clariti': 1,
   'commun': 1,
   'consider': 1,
   'craft': 1,
   'dedic': 1,
   'deliveri': 1,
   'deposit_made': False,
   'email_verified': True,
   'esoter': 1,
   'excel': 1,
   'expect': 1,
   'extens': 1,
   'facebook_connected': False,
   'fierc': 1,
   'fresh': 2,
   'friendli': 1,
   'greet': 1,
   'health': 1,
   'identity_verified': False,
   'interest': 1,
   'involv': 1,
   'maintain': 1,
   'mechan': 1,
   'meet': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': False,
   'piec': 1,
   'pm': 1,
   'profession': 1,
   'profile_complete': True,
   'prompt': 1,
   'qualiti': 1,
   'reader': 1,
   'resum': 1,
   'review': 1,
   'sampl': 1,
   'season': 1,
   'specif': 1,
   'strong': 1,
   'swift': 1,
   'thank': 1,
   'time': 1,
   'turnaround': 1,
   'via': 1,
   'voic': 1,
   'well': 1,
   'work': 1,
   'write': 1,
   'writer': 1,
   'written': 1},
  'F'),
 ({"'m": 3,
   "'s": 1,
   '.net': 2,
   '2004': 1,
   '2005': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'd',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   'administr': 1,
   'adob': 1,
   'alon': 1,
   'analys': 1,
   'applic': 2,
   'architect': 1,
   'architectur': 1,
   'asp': 2,
   'attract': 1,
   'c': 1,
   'certifi': 1,
   'classic': 1,
   'code': 1,
   'comput': 1,
   'css': 1,
   'custom': 1,
   'databas': 1,
   'degre': 1,
   'deposit_made': True,
   'design': 2,
   'develop': 3,
   'dream': 1,
   'e-commerc': 1,
   'email_verified': True,
   'experi': 1,
   'experienc': 1,
   'express': 1,
   'facebook_connected': True,
   'focus': 1,
   'form': 1,
   'got': 1,
   'hello': 1,
   'high': 1,
   'html': 1,
   'identity_verified': False,
   'inform': 1,
   'interfac': 1,
   'level': 1,
   'make': 1,
   'manag': 2,
   'microsoft': 4,
   'moham': 1,
   'orient': 1,
   'payment_verified': True,
   'phone_verified': True,
   'produc': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'recent': 1,
   'relat': 2,
   'rich': 1,
   'say': 1,
   'scienc': 1,
   'senior': 1,
   'servic': 2,
   'sever': 1,
   'sinc': 1,
   'skill': 1,
   'softwar': 1,
   'special': 1,
   'specialist': 1,
   'studio': 1,
   'system': 2,
   'talent': 1,
   'technolog': 2,
   'usabl': 1,
   'use': 2,
   'user': 2,
   'visual': 1,
   'weaver': 1,
   'web': 5,
   'window': 1,
   'xml': 1,
   'year': 2},
  'M'),
 ({"'ll": 1,
   "'m": 1,
   '8+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'n',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'aleksandar': 1,
   'applic': 1,
   'contact': 1,
   'deposit_made': False,
   'design': 2,
   'devic': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'gladli': 1,
   'graphic': 1,
   'hello': 1,
   'identity_verified': True,
   'mobil': 1,
   'name': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'project': 1,
   'special': 1,
   'web': 1,
   'well': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"'m": 4,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'account': 1,
   'adob': 1,
   'also': 2,
   'anyth': 1,
   'bath': 1,
   'behind': 1,
   'class': 1,
   'comput': 1,
   'coupl': 1,
   'creativ': 1,
   'deposit_made': False,
   'design': 2,
   'ebay': 1,
   'email_verified': True,
   'facebook': 1,
   'facebook_connected': False,
   'feedback': 1,
   'flexibl': 1,
   'great': 1,
   'hardwork': 1,
   'help': 1,
   'identity_verified': False,
   'kitchen': 1,
   'like': 1,
   'lot': 1,
   'mainli': 1,
   'myspac': 1,
   'new': 1,
   'past': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'process': 1,
   'profile_complete': True,
   'project': 1,
   'prove': 1,
   'skill': 2,
   'student': 1,
   'suit': 1,
   'take': 1,
   'thrown': 1,
   'twitter': 1,
   'valid': 1,
   'way': 1,
   'websit': 1,
   'would': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(11, 12), match='1'>,
   'First': 's',
   'Last': '8',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'achiev': 1,
   'deposit_made': False,
   'effort': 1,
   'email_verified': True,
   'everi': 1,
   'facebook_connected': False,
   'grate': 1,
   'identity_verified': False,
   'make': 1,
   'opportun': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'take': 1,
   'wish': 1},
  'M'),
 ({'17': 1,
   '4th': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 'a',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'address': 1,
   'birth': 1,
   'deposit_made': False,
   'email_verified': True,
   'estat': 1,
   'facebook_connected': False,
   'feder': 1,
   'hous': 1,
   'identity_verified': False,
   'imo': 2,
   'malenation': 1,
   'new': 1,
   'origin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'road': 1,
   'sept': 1,
   'state': 1},
  'M'),
 ({'50': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'assist': 2,
   'automot': 1,
   'consult': 1,
   'corpor': 1,
   'deposit_made': True,
   'dmv': 1,
   'email_verified': True,
   'everi': 1,
   'except': 1,
   'facebook_connected': False,
   'firm': 2,
   'gener': 1,
   'goal': 1,
   'harder': 1,
   'identity_verified': False,
   'industri': 1,
   'larger': 1,
   'mantra': 1,
   'offer': 1,
   'oper': 1,
   'outsourc': 1,
   'payment_verified': False,
   'person': 1,
   'phone_verified': True,
   'process': 1,
   'profile_complete': True,
   'project': 1,
   'result': 1,
   'servic': 1,
   'set': 1,
   'skill': 1,
   'smarter': 1,
   'state': 1,
   'take': 1,
   'us': 1,
   'view': 1,
   'virtual': 1,
   'work': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'e',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'dedic': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'hard': 1,
   'identity_verified': False,
   'output': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'satisfi': 1,
   'undergradu': 1,
   'worker': 1},
  'M'),
 ({"'m": 3,
   '14': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 's',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'access': 1,
   'administration.i': 1,
   'also': 1,
   'arab': 1,
   'c': 1,
   'c/c++': 1,
   'databas': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 1,
   'document': 1,
   'email_verified': True,
   'engin': 1,
   'english': 1,
   'experi': 1,
   'experience.i': 1,
   'expert': 1,
   'facebook_connected': False,
   'follow': 1,
   'french': 1,
   'hello': 1,
   'identity_verified': False,
   'java/j2e': 1,
   'languag': 1,
   'ms': 1,
   'mysql': 1,
   'non-techn': 1,
   'oracl': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pl/sql': 1,
   'profile_complete': True,
   'senior': 1,
   'server': 1,
   'softwar': 1,
   'sql': 2,
   'stock': 1,
   'technic': 1,
   'translat': 2,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='T'>,
   'Digit': None,
   'First': 'T',
   'Last': 'w',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'academ': 1,
   'agenc': 1,
   'american': 1,
   'degre': 1,
   'deposit_made': True,
   'edit': 1,
   'email_verified': True,
   'english': 2,
   'excel': 1,
   'experi': 2,
   'extens': 1,
   'facebook_connected': True,
   'foreign': 1,
   'hello': 1,
   'identity_verified': False,
   'includ': 2,
   'intern': 1,
   'interpret': 1,
   'job': 1,
   'knowledg': 1,
   'limit': 1,
   'linguist': 1,
   'name': 1,
   'obtain': 1,
   'oral': 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'proofread': 1,
   'russian': 2,
   'sinc': 1,
   'special': 1,
   'state': 1,
   'translat': 1,
   'univers': 3,
   'write': 2,
   'written': 1},
  'F'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 'e',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'afford': 1,
   'attract': 1,
   'compliant': 1,
   'databas': 1,
   'deposit_made': True,
   'design': 2,
   'develop': 3,
   'driven': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': True,
   'freelanc': 1,
   'friendly.i': 1,
   'front-end': 1,
   'graphic': 1,
   'html/css': 1,
   'identity_verified': False,
   'larger': 1,
   'love': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'site': 1,
   'special': 1,
   'standard': 1,
   'tackl': 1,
   'user': 1,
   'web': 2,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'v',
   'Last': 'o',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'accord': 1,
   'blog': 1,
   'complet': 1,
   'custom': 1,
   'deposit_made': True,
   'designbann': 1,
   'designcr': 1,
   'email_verified': True,
   'exist': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'integr': 1,
   'offer': 1,
   'payment_verified': False,
   'phone_verified': False,
   'power': 2,
   'profile_complete': True,
   'servic': 1,
   'theme': 2,
   'websit': 1,
   'websitewordpress': 1,
   'wordpress': 3},
  'F'),
 ({'8': 1,
   '90': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='4'>,
   'First': 'd',
   'Last': '7',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'account': 1,
   'assist': 1,
   'background': 1,
   'call': 1,
   'center': 1,
   'custom': 1,
   'data': 1,
   'deadlin': 1,
   'deliv': 1,
   'deposit_made': True,
   'email_verified': True,
   'english': 1,
   'entry.i': 1,
   'experi': 1,
   'facebook_connected': True,
   'fast': 1,
   'given': 1,
   'handl': 1,
   'identity_verified': False,
   'industri': 1,
   'minut': 1,
   'outcom': 1,
   'payment_verified': True,
   'per': 1,
   'phone_verified': True,
   'possibl': 1,
   'proactiv': 1,
   'profile_complete': True,
   'project': 1,
   'servic': 1,
   'solid': 1,
   'support': 1,
   'task': 1,
   'technic': 1,
   'time': 1,
   'type': 1,
   'virtual': 1,
   'word': 1,
   'year': 1},
  'M'),
 ({"'m": 1,
   '...': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'y',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'also': 1,
   'back': 1,
   'basic': 1,
   'c++': 1,
   'cours': 1,
   'css': 1,
   'deposit_made': False,
   'discov': 1,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'fairli': 1,
   'flavor': 1,
   'forward': 1,
   'gain': 1,
   'get': 1,
   'go': 1,
   'hat': 1,
   'html': 1,
   'identity_verified': False,
   'involv': 1,
   'issu': 1,
   'javascript': 1,
   'legal': 1,
   'move': 1,
   'much': 1,
   'mysql': 1,
   'page': 1,
   'payment_verified': False,
   'perl': 1,
   'phone_verified': False,
   'php': 1,
   'pretti': 1,
   'profici': 1,
   'profile_complete': True,
   'seo': 1,
   'simpler': 1,
   'skill': 1,
   'start': 2,
   'straight': 1,
   'techniqu': 1,
   'thing': 1,
   'tri': 1,
   'variou': 1,
   'way': 1,
   'white': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'.\\xe2\\u20ac\\xa2\\tdesign': 1,
   '1': 1,
   '10': 2,
   '10+': 1,
   '15': 2,
   '2': 2,
   '2000': 4,
   '2001': 2,
   '2002': 4,
   '2002-': 2,
   '2003': 1,
   '2004': 2,
   '2005': 2,
   '2007': 2,
   '2008': 2,
   '3': 3,
   '3-tier': 2,
   '30': 1,
   '36': 1,
   '4': 2,
   '5': 1,
   '5.0': 1,
   '6': 3,
   '6.x': 1,
   '7': 1,
   '8+': 1,
   '8.1': 1,
   '9+': 1,
   '90': 1,
   '93': 2,
   '94': 1,
   '95/nt': 3,
   '98': 3,
   '9i/10g': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'c',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   '\\teyelit': 2,
   '\\tjava': 1,
   '\\tlanguag': 2,
   '\\toctob': 1,
   '\\ttechnic': 1,
   '\\xe2\\u20ac\\u201c': 7,
   '\\xe2\\u20ac\\xa2\\tanalysi': 1,
   '\\xe2\\u20ac\\xa2\\tarchitect': 2,
   '\\xe2\\u20ac\\xa2\\tcod': 2,
   '\\xe2\\u20ac\\xa2\\tdesign': 5,
   '\\xe2\\u20ac\\xa2\\tdevelop': 2,
   '\\xe2\\u20ac\\xa2\\tprovid': 1,
   'abil': 1,
   'access': 4,
   'accomplish': 1,
   'account': 1,
   'accur': 1,
   'achiev': 3,
   'across': 2,
   'act': 1,
   'action': 1,
   'activ': 1,
   'ad': 1,
   'adapt': 1,
   'address': 1,
   'administr': 1,
   'advis': 1,
   'agent': 1,
   'aggreg': 1,
   'agil': 5,
   'aka': 1,
   'analysi': 6,
   'angel': 1,
   'ant': 1,
   'apach': 1,
   'applic': 15,
   'approxim': 1,
   'april': 4,
   'architect': 12,
   'architectur': 9,
   'around': 1,
   'assign': 1,
   'audienc': 2,
   'autom': 2,
   'award': 1,
   'b2b': 3,
   'b2c': 3,
   'back': 2,
   'balanc': 1,
   'banner': 1,
   'base': 9,
   'basic': 2,
   'bea': 3,
   'behavior': 3,
   'best': 1,
   'bid': 1,
   'blueprint': 1,
   'bom': 1,
   'bonu': 1,
   'borland': 2,
   'bu': 2,
   'build': 1,
   'busi': 7,
   'c': 1,
   'c++': 2,
   'c/c++': 8,
   'calcul': 1,
   'campaign': 5,
   'capabl': 6,
   'captur': 1,
   'care': 1,
   'case': 4,
   'central': 1,
   'chairman': 1,
   'chang': 1,
   'chief': 1,
   'chosen': 1,
   'claim': 1,
   'class': 3,
   'client': 7,
   'client\\xe2\\u20ac\\u2122': 1,
   'clipper': 2,
   'cluster': 2,
   'coach': 2,
   'code': 10,
   'codebas': 4,
   'coher': 2,
   'collect': 1,
   'collector': 8,
   'command': 4,
   'commun': 3,
   'compani': 3,
   'complet': 1,
   'complic': 1,
   'compon': 9,
   'composit': 1,
   'concept': 2,
   'condit': 1,
   'configur': 1,
   'connect': 2,
   'consist': 2,
   'construct': 3,
   'consult': 2,
   'contact': 1,
   'contain': 1,
   'continu': 1,
   'contract': 18,
   'control': 1,
   'corba': 2,
   'core': 1,
   'corpor': 2,
   'cost': 2,
   'creat': 2,
   'critic': 1,
   'crm': 1,
   'current': 3,
   'custom': 9,
   'customiz': 1,
   'd.o.o.softwar': 2,
   'dao': 1,
   'data': 11,
   'databas': 7,
   'date': 1,
   'day': 1,
   'db2': 1,
   'dbase': 1,
   'dbm': 1,
   'dbms\\xe2\\u20ac\\xa2\\tdesign': 2,
   'dec': 1,
   'decemb': 1,
   'deep': 1,
   'defin': 1,
   'deliv': 4,
   'deliver': 1,
   'deliveri': 1,
   'deploy': 2,
   'deposit_made': False,
   'describ': 1,
   'design': 20,
   'detail': 4,
   'develop': 23,
   'diagram': 3,
   'differ': 1,
   'disloc': 2,
   'distribut': 3,
   'divis': 4,
   'do': 1,
   'document': 6,
   'dom': 1,
   'domain': 2,
   'done': 2,
   'driven': 2,
   'driver': 1,
   'dtd': 1,
   'dynam': 1,
   'e-commerc': 2,
   'ejb': 9,
   'email_verified': True,
   'enabl': 2,
   'end': 4,
   'enforc': 1,
   'engin': 6,
   'enterpris': 3,
   'entiti': 1,
   'entri': 1,
   'environ': 2,
   'equip': 6,
   'erwin': 1,
   'event': 3,
   'excel': 1,
   'execut': 2,
   'experi': 1,
   'express': 1,
   'fab': 1,
   'facebook_connected': True,
   'facil': 2,
   'factori': 2,
   'financi': 2,
   'first': 1,
   'flavor': 1,
   'flex': 1,
   'flexibl': 4,
   'flow': 1,
   'follow': 1,
   'form': 2,
   'formula': 1,
   'framework': 7,
   'front': 2,
   'futur': 1,
   'ga': 1,
   'game': 2,
   'gather': 1,
   'gener': 3,
   'goal': 1,
   'gof': 2,
   'gold': 1,
   'graph': 1,
   'greatest': 1,
   'grid': 3,
   'ground': 2,
   'group': 1,
   'group\\tsenior': 2,
   'group\\ttechn': 3,
   'gui': 4,
   'handheld': 1,
   'handler': 1,
   'hardwar': 1,
   'health': 1,
   'help': 1,
   'high': 3,
   'high-level': 1,
   'highli': 2,
   'hoc': 1,
   'horizont': 1,
   'hour': 1,
   'hp-ux': 2,
   'html': 1,
   'http': 1,
   'ibm': 1,
   'identity_verified': False,
   'ii': 1,
   'ilog/jrul': 2,
   'implement': 7,
   'ina': 1,
   'inc.': 3,
   'includ': 1,
   'inform': 1,
   'initi': 1,
   'instal': 2,
   'integr': 6,
   'interact': 2,
   'interfac': 4,
   'internet': 4,
   'introduc': 1,
   'invest': 1,
   'involv': 1,
   'issu': 3,
   'j2ee': 5,
   'januari': 1,
   'java': 21,
   'jm': 4,
   'jsp': 2,
   'juli': 2,
   'june': 3,
   'junit': 1,
   'knowledg': 1,
   'lan': 2,
   'languag': 7,
   'lantast': 3,
   'layer': 2,
   'lead': 2,
   'leader': 2,
   'legaci': 6,
   'light': 1,
   'line': 2,
   'linux': 3,
   'lo': 1,
   'logic': 2,
   'loyalti': 5,
   'mainfram': 2,
   'manag': 7,
   'manufactur': 1,
   'map': 1,
   'march': 1,
   'market': 4,
   'materi': 1,
   'maven': 1,
   'maxim': 1,
   'maximum': 1,
   'may': 2,
   'me': 2,
   'member': 1,
   'mentor': 2,
   'messag': 8,
   'meta': 1,
   'methodolog': 5,
   'middl': 1,
   'middlewar': 1,
   'migrat': 2,
   'million': 4,
   'mine': 1,
   'mission': 1,
   'mississauga': 2,
   'mmo': 1,
   'mo': 2,
   'model': 7,
   'modem': 1,
   'modul': 1,
   'modular': 1,
   'monitor': 1,
   'mq': 2,
   'multi': 2,
   'multilingu': 1,
   'multipl': 1,
   'mvc': 2,
   'mysql': 1,
   'nation': 1,
   'new': 3,
   'no': 1,
   'non': 1,
   'novel': 1,
   'object': 3,
   'octob': 2,
   'oil': 3,
   'omniorb': 2,
   'onlin': 1,
   'oo': 1,
   'oper': 3,
   'oracl': 4,
   'order': 4,
   'owner': 1,
   'p2p': 2,
   'page': 2,
   'pair': 2,
   'pars': 1,
   'part': 5,
   'partner': 1,
   'path': 1,
   'pattern': 4,
   'payment_verified': False,
   'per': 3,
   'perform': 2,
   'perman': 1,
   'phase': 2,
   'phone_verified': False,
   'pilot': 1,
   'plan': 2,
   'plotter': 2,
   'plug-in': 2,
   'po': 1,
   'possibl': 1,
   'practic': 1,
   'prefer': 1,
   'prepar': 1,
   'present': 5,
   'previou': 1,
   'pri': 2,
   'primari': 1,
   'process': 5,
   'product': 11,
   'profil': 1,
   'profile_complete': True,
   'program': 3,
   'progress': 3,
   'project': 7,
   'promot': 1,
   'proper': 3,
   'protocol': 3,
   'provid': 6,
   'proxi': 4,
   'publish': 1,
   'ration': 10,
   'real': 1,
   'record': 1,
   'red': 1,
   'refineri': 1,
   'regard': 1,
   'relev': 1,
   'rendezv': 6,
   'report': 1,
   'repres': 1,
   'requir': 6,
   'resourc': 1,
   'respons': 2,
   'rest': 1,
   'reus': 1,
   'reusabl': 1,
   'review': 2,
   'reward': 4,
   'right': 1,
   'rmi': 1,
   'roi': 1,
   'role': 1,
   'rose': 9,
   'rule': 1,
   'run': 1,
   'rup': 1,
   'rv': 1,
   'scalabl': 3,
   'schedul': 1,
   'scope': 1,
   'score': 1,
   'script': 1,
   'scrum': 1,
   'sdk': 1,
   'sdlc': 1,
   'search': 1,
   'secur': 1,
   'segment': 1,
   'self': 1,
   'semiconductor': 4,
   'send': 1,
   'septemb': 1,
   'sequenc': 2,
   'serv': 1,
   'server': 11,
   'servic': 4,
   'servlet': 2,
   'session': 1,
   'set': 1,
   'shorten': 1,
   'side': 3,
   'site': 2,
   'soa': 7,
   'socket': 2,
   'softwar': 9,
   'solut': 18,
   'sophist': 1,
   'sourc': 1,
   'specif': 2,
   'spi': 1,
   'spring': 2,
   'stage': 1,
   'standard': 1,
   'starteam': 1,
   'state': 3,
   'statement': 2,
   'static': 1,
   'station': 2,
   'statu': 1,
   'stori': 2,
   'strateg': 1,
   'structur': 3,
   'strut': 3,
   'studio': 2,
   'subject': 1,
   'subscrib': 1,
   'success': 2,
   'suffici': 1,
   'support': 2,
   'swing': 1,
   'synchron': 1,
   'system': 15,
   'tactic': 1,
   'talk': 1,
   'target': 2,
   'task': 2,
   'tcp/ip': 4,
   'tdd': 3,
   'teach': 1,
   'team': 5,
   'technic': 2,
   'technolog': 4,
   'telecommut': 1,
   'thin': 2,
   'tibco': 4,
   'tie': 1,
   'tier': 7,
   'tight': 1,
   'time': 4,
   'tomcat': 1,
   'tool': 1,
   'topic': 1,
   'track': 2,
   'tracker': 1,
   'traffic': 2,
   'transact': 2,
   'transfer': 2,
   'transit': 1,
   'translat': 1,
   'transport': 2,
   'two': 1,
   'tx': 1,
   'uml': 7,
   'underli': 1,
   'unit': 2,
   'unix': 1,
   'upgrad': 1,
   'upper': 1,
   'us': 1,
   'usag': 1,
   'usd': 1,
   'use': 21,
   'user': 4,
   'util': 3,
   'variou': 3,
   'vendor': 1,
   'version': 1,
   'vertic': 1,
   'via': 4,
   'visual': 4,
   'vm': 2,
   'warehous': 1,
   'web': 2,
   'weblog': 5,
   'webmethod': 3,
   'webspher': 1,
   'week': 1,
   'window': 3,
   'winner': 1,
   'without': 1,
   'work': 1,
   'workflow': 4,
   'write': 1,
   'www': 1,
   'xml': 12,
   'xp': 1,
   'xsd': 2,
   'xsl': 3,
   'xslt': 1,
   'year': 2,
   'yr.': 14},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'l',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'also': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'identity_verified': False,
   'job': 1,
   'last': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photograph': 1,
   'profile_complete': True,
   'sincer': 1,
   'still': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'30': 1,
   '8-10': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'also': 1,
   'approv': 1,
   'around': 1,
   'asset': 1,
   'australia': 1,
   'case': 1,
   'chang': 1,
   'client': 3,
   'cliental': 1,
   'commerci': 3,
   'compani': 1,
   'deliver': 1,
   'depend': 1,
   'deposit_made': False,
   'dvd': 2,
   'either': 1,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'file': 2,
   'ftp': 1,
   'hour': 1,
   'identity_verified': False,
   'kept': 1,
   'loop': 1,
   'may': 1,
   'music': 1,
   'outsourc': 1,
   'oversea': 1,
   'payment_verified': False,
   'phone_verified': False,
   'prepar': 1,
   'product': 1,
   'profile_complete': True,
   'project': 1,
   'receiv': 1,
   'requir': 1,
   'script': 1,
   'sec': 1,
   'send': 1,
   'sent': 1,
   'short': 1,
   'skype': 1,
   'specialis': 1,
   'tape': 1,
   'televis': 1,
   'throughout': 1,
   'turn': 1,
   'upload': 1,
   'use': 1,
   'variou': 1,
   'view': 1,
   'vo': 1,
   'whole': 1,
   'work': 1},
  'M'),
 ({'13': 1,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 'u',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'also': 2,
   'armi': 1,
   'art': 2,
   'b.f.a': 1,
   'background': 1,
   'banner': 1,
   'brochur': 1,
   'busi': 1,
   'card': 1,
   'combat': 1,
   'craft': 1,
   'current': 1,
   'data': 1,
   'deposit_made': True,
   'design': 3,
   'digit': 1,
   'earn': 1,
   'ebay': 1,
   'edit': 1,
   'email_verified': True,
   'enhanc': 1,
   'entri': 1,
   'etc..': 2,
   'extra': 1,
   'facebook_connected': False,
   'fine': 1,
   'full': 1,
   'graphic': 1,
   'i.e': 1,
   'identity_verified': False,
   'includ': 1,
   'inform': 1,
   'logo': 1,
   'manipul': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photo': 2,
   'photographi': 2,
   'poster': 1,
   'profile_complete': True,
   'remov': 1,
   'sale': 1,
   'skill': 2,
   'spare': 1,
   'special': 1,
   'specialist': 1,
   'take': 1,
   'time': 2,
   'type': 1,
   'veteran': 1,
   'visual': 1,
   'web': 1,
   'will': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({"''": 2,
   "'s": 2,
   '-creat': 1,
   '-email': 2,
   '-familiar': 2,
   '-manag': 1,
   '1.': 2,
   '2.': 3,
   '3.': 2,
   '4.': 1,
   '5': 1,
   '6.': 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='a'>,
   '\\\\': 1,
   'account': 2,
   'achiev': 1,
   'also': 2,
   'alway': 2,
   'assist': 1,
   'attempt': 1,
   'award': 1,
   'ba': 1,
   'basic': 1,
   'behalf': 1,
   'best': 1,
   'blood': 1,
   'bpo': 1,
   'busi': 2,
   'cabl': 1,
   'card': 1,
   'chat': 1,
   'chess': 1,
   'chimp': 1,
   'client': 2,
   'comcast': 1,
   'compani': 1,
   'contact': 1,
   'continu': 1,
   'cover': 1,
   'creation': 2,
   'custom': 4,
   'data': 2,
   'decid': 1,
   'deposit_made': True,
   'doc': 1,
   'document': 1,
   'dsl': 1,
   'ebay': 1,
   'ebook': 1,
   'email': 7,
   'email_verified': True,
   'employ': 2,
   'engin': 1,
   'english': 1,
   'etc': 1,
   'excel': 3,
   'experi': 1,
   'express': 1,
   'facebook_connected': False,
   'fast': 1,
   'feedback': 1,
   'folder': 1,
   'follow': 1,
   'forward': 1,
   'found': 1,
   'gather': 1,
   'give': 1,
   'goal': 1,
   'googl': 1,
   'graciela': 2,
   'great': 2,
   'handl': 1,
   'happi': 1,
   'hard': 1,
   'help': 1,
   'identity_verified': False,
   'igor': 1,
   'import': 1,
   'inbox': 1,
   'industri': 1,
   'inform': 1,
   'infus': 1,
   'internet': 2,
   'ipad': 1,
   'live': 2,
   'look': 1,
   'mac': 1,
   'mail': 1,
   'mailchimp': 1,
   'make': 1,
   'manag': 1,
   'manila': 1,
   'market': 1,
   'materi': 1,
   'maxworkout': 2,
   'may': 1,
   'microsoft': 1,
   'month': 1,
   'offer': 1,
   'offic': 1,
   'one': 1,
   'opportun': 1,
   'payment_verified': True,
   'paypal': 1,
   'pdf': 1,
   'phone_verified': False,
   'pleas': 1,
   'powerpoint': 1,
   'process': 2,
   'profession': 1,
   'profile_complete': True,
   'project': 1,
   'prospect': 1,
   'qualif': 1,
   'recommend': 1,
   'remark': 1,
   'repres': 1,
   'research': 3,
   'respons': 1,
   'review': 1,
   'scan': 1,
   'see': 1,
   'servic': 4,
   'smirnov': 1,
   'social': 1,
   'sociolog': 1,
   'softwar': 1,
   'sort': 1,
   'spreadsheet': 1,
   'stream': 1,
   'strive': 1,
   'strongli': 1,
   'suit': 1,
   'support': 11,
   'susan': 1,
   'technic': 1,
   'thunderbird': 1,
   'top': 1,
   'troubleshoot': 1,
   'truli': 1,
   'uk': 1,
   'univers': 1,
   'unwant': 1,
   'verizon': 1,
   'virtual': 1,
   'web': 1,
   'word': 1,
   'work': 5,
   'world': 1,
   'written': 1,
   'year': 1,
   'youtub': 1},
  'F'),
 ({"'m": 1,
   "'ve": 1,
   '--': 1,
   '1984.': 1,
   '2005': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'n',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'activ': 1,
   'also': 1,
   'anticip': 1,
   'applic': 1,
   'bank': 1,
   'bill': 1,
   'busi': 2,
   'came': 1,
   'client': 3,
   'convers': 1,
   'data': 1,
   'databas': 1,
   'db': 1,
   'dbm': 1,
   'deposit_made': False,
   'develop': 2,
   'donat': 1,
   'educ': 1,
   'email_verified': True,
   'engin': 1,
   'estat': 1,
   'even': 1,
   'event': 1,
   'exist': 1,
   'experi': 1,
   'facebook_connected': False,
   'filemak': 2,
   'food': 1,
   'full': 1,
   'go': 1,
   'good': 1,
   'health': 1,
   'host': 1,
   'human': 1,
   'identity_verified': False,
   'includ': 1,
   'inform': 1,
   'insur': 1,
   'ipad': 1,
   'iphon': 1,
   'link': 1,
   'manag': 2,
   'market': 1,
   'migrat': 1,
   'need': 1,
   'network': 1,
   'new': 1,
   'odbc': 1,
   'payment_verified': False,
   'phone_verified': False,
   'plu': 1,
   'pretti': 1,
   'profile_complete': True,
   'rang': 1,
   'real': 1,
   'redesign': 1,
   'remot': 1,
   'repair': 1,
   'resourc': 1,
   'scratch': 1,
   'self-mad': 1,
   'sinc': 2,
   'small': 1,
   'sql': 1,
   'stand-alon': 1,
   'student': 1,
   'system': 3,
   'thing': 1,
   'thought': 1,
   'time': 1,
   'track': 1,
   'troubleshoot': 1,
   'upgrad': 2,
   'work': 2,
   'world': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='H'>,
   'Digit': None,
   'First': 'H',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'apach': 1,
   'bind': 1,
   'build': 1,
   'cisco': 2,
   'cpanel': 1,
   'deposit_made': False,
   'dhcp': 2,
   'email_verified': True,
   'environ': 1,
   'equip': 1,
   'exim': 1,
   'experi': 1,
   'facebook_connected': True,
   'firewal': 1,
   'hewlett-packard': 1,
   'hp': 1,
   'ibm': 1,
   'identity_verified': False,
   'iproute2': 1,
   'iptabl': 1,
   'kernel': 1,
   'linux': 1,
   'mainten': 1,
   'mysql': 1,
   'network': 1,
   'offic': 1,
   'oop': 1,
   'open': 1,
   'openvpn': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pix': 1,
   'plesk': 1,
   'postfix': 1,
   'ppp': 1,
   'pptp': 1,
   'procurv': 1,
   'profile_complete': True,
   'raid': 2,
   'samba': 1,
   'sendmail': 1,
   'soft': 1,
   'ssh': 1,
   'switch': 1,
   'technolog': 1,
   'vlan': 1,
   'vpn': 1,
   'webspher': 1,
   'whm': 1,
   'wifi': 1},
  'M'),
 ({"''": 2,
   '.now': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'm',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   '``': 2,
   'assur': 1,
   'base': 1,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'inform': 1,
   'largest': 1,
   'master': 1,
   'multin': 1,
   'name': 1,
   'norway': 1,
   'organ': 1,
   'pakistan': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'punjab': 1,
   'qualiti': 1,
   'softwar': 1,
   'technolog': 1,
   'univers': 2,
   'work': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'A',
   'Last': '0',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'apart': 1,
   'attest': 1,
   'collabor': 1,
   'commun': 1,
   'cooper': 1,
   'deposit_made': True,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'graphic': 1,
   'great': 1,
   'high': 1,
   'identity_verified': False,
   'payment_verified': False,
   'person': 1,
   'phone_verified': True,
   'pride': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'rang': 1,
   'review': 1,
   'servic': 1,
   'set': 1,
   'skill': 1,
   'take': 1,
   'transcript': 1,
   'work': 1,
   'write': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='2'>,
   'First': 't',
   'Last': '2',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'carrier': 1,
   'case': 1,
   'comput': 1,
   'consid': 1,
   'debug': 1,
   'deposit_made': True,
   'email_verified': True,
   'explor': 1,
   'facebook_connected': False,
   'flow': 1,
   'give': 1,
   'help': 1,
   'identity_verified': False,
   'inspir': 1,
   'interest': 1,
   'knowledg': 1,
   'network': 1,
   'new': 1,
   'optim': 1,
   'payment_verified': True,
   'phone_verified': False,
   'possibl': 1,
   'process': 1,
   'profile_complete': True,
   'program': 1,
   'skill': 1},
  'F'),
 ({'6': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='Y'>,
   'Digit': None,
   'First': 'Y',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'brochur': 1,
   'busi': 1,
   'calendar': 1,
   'card': 1,
   'dealt': 1,
   'deposit_made': False,
   'design': 2,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'graphic': 1,
   'identity_verified': False,
   'includ': 1,
   'logo': 1,
   'menu': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'variou': 1,
   'work': 1,
   'year': 1},
  'F'),
 ({"'m": 3,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'Digit': None,
   'First': 'A',
   'Last': 'x',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='A'>,
   'advanc': 1,
   'aim': 1,
   'attent': 1,
   'attitud': 1,
   'comfort': 1,
   'creation': 1,
   'cross': 1,
   'css': 1,
   'deposit_made': True,
   'design': 2,
   'desir': 1,
   'detail': 1,
   'develop': 1,
   'developer.i': 1,
   'developmenti': 1,
   'dive': 1,
   'email_verified': True,
   'exist': 1,
   'experienc': 1,
   'eye': 1,
   'facebook_connected': True,
   'featur': 1,
   'focu': 2,
   'freelanc': 3,
   'front-end': 2,
   'grow': 1,
   'highli': 1,
   'html': 1,
   'identity_verified': False,
   'implement': 1,
   'interfac': 1,
   'javascript': 1,
   'keen': 1,
   'latest': 1,
   'learn': 1,
   'locat': 1,
   'look': 2,
   'new': 1,
   'onlin': 1,
   'opportun': 1,
   'part': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': True,
   'platform': 1,
   'posit': 1,
   'profici': 1,
   'profile_complete': True,
   'respons': 1,
   'scss': 1,
   'special': 1,
   'stack': 1,
   'sweden': 1,
   'team-play': 1,
   'technolog': 2,
   'ui': 1,
   'ui-': 1,
   'user': 2,
   'web': 3,
   'work': 3},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'T',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'lot': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'time': 1,
   'work': 1},
  'M'),
 ({'30-40': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 's',
   'Numchar': 16,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'data': 1,
   'deposit_made': True,
   'email_verified': True,
   'entri': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'job': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'speed': 1,
   'two': 1,
   'wpm.i': 1,
   'year': 1},
  'F'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='1'>,
   'First': 'm',
   'Last': '2',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'alway': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': True,
   'field': 1,
   'handl': 1,
   'identity_verified': False,
   'new': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'relat': 1,
   'softwar': 1,
   'things.i': 1,
   'tri': 2,
   'type': 1,
   'websit': 1,
   'whether': 1,
   'work': 1},
  'M'),
 ({"'m": 1,
   "'re": 1,
   "'s": 2,
   '24': 1,
   'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'w',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'american': 2,
   'born': 1,
   'charg': 1,
   'deal': 1,
   'depend': 1,
   'deposit_made': True,
   'difficult': 1,
   'email_verified': True,
   'english': 1,
   'everyth': 1,
   'facebook_connected': False,
   'get': 1,
   'go': 1,
   'hour': 1,
   'identity_verified': False,
   'journalist': 1,
   'littl': 1,
   'nativ': 2,
   'pay': 1,
   'payment_verified': False,
   'perfect': 1,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'promis': 1,
   'seo': 1,
   'server': 1,
   'speaker': 1,
   'turnaround': 1,
   'work': 2,
   'writer': 1},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'i',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
   'build': 1,
   'deposit_made': False,
   'email_verified': True,
   'engin': 1,
   'etc': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'link': 1,
   'manag': 1,
   'market': 1,
   'payment_verified': False,
   'phone_verified': False,
   'ppc': 1,
   'profile_complete': True,
   'relat': 1,
   'search': 1,
   'seo': 1,
   'submiss': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'10': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'n',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'comput': 3,
   'data': 1,
   'deposit_made': False,
   'design': 1,
   'done': 2,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'last': 1,
   'oper': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'relat': 1,
   'small': 1,
   'work': 3,
   'year': 1},
  'M'),
 ({"'ve": 1,
   '...': 1,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'a',
   'Numchar': 15,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='i'>,
   'artist': 1,
   'capabl': 1,
   'commonli': 1,
   'custom': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'experienc': 1,
   'facebook_connected': False,
   'finish': 2,
   'fun': 1,
   'graphic': 1,
   'handl': 1,
   'help': 1,
   'identity_verified': False,
   'job': 1,
   'lot': 1,
   'nice': 1,
   'past': 1,
   'payment_verified': False,
   'per': 1,
   'phone_verified': False,
   'pressur': 1,
   'profile_complete': True,
   'provid': 1,
   'reason': 1,
   'task': 1,
   'that': 1,
   'thing': 1,
   'togeth': 1,
   'use': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='N'>,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='2'>,
   'First': 'N',
   'Last': 'd',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'copywrit': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'internet': 1,
   'love': 1,
   'music': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'web': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 's',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'comput': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'graduat': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'scienc': 1},
  'F'),
 ({'4': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'o',
   'Last': '2',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'seo': 1,
   'year': 1},
  'M'),
 ({'15': 1,
   'Caps': None,
   'Digit': None,
   'First': 'y',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'base': 1,
   'comput': 1,
   'deposit_made': True,
   'email_verified': True,
   'expertis': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': True,
   'professor': 1,
   'profile_complete': True,
   'scienc': 1,
   'sql': 1,
   'web': 1,
   'year': 1},
  'M'),
 ({'50': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'activ': 2,
   'anim': 1,
   'book': 1,
   'cartoon': 1,
   'classic': 1,
   'comic': 1,
   'custom': 1,
   'deposit_made': True,
   'design': 1,
   'digit': 1,
   'done': 1,
   'edit': 1,
   'email_verified': True,
   'especi': 1,
   'facebook_connected': False,
   'fast': 1,
   'graphic': 1,
   'identity_verified': False,
   'illustr': 1,
   'job': 1,
   'manag': 1,
   'music': 1,
   'need': 1,
   'parallel': 1,
   'payment_verified': True,
   'phone_verified': True,
   'photo': 1,
   'possibl': 1,
   'princip': 1,
   'profile_complete': True,
   'publish': 1,
   'rel': 1,
   'sever': 1,
   'soon': 1,
   'strip': 1,
   'techniqu': 1,
   'use': 1,
   'video': 1,
   'work': 2},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='3'>,
   'First': 'g',
   'Last': '0',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'deposit_made': True,
   'email_verified': True,
   'everyon': 1,
   'facebook_connected': False,
   'hello': 1,
   'identity_verified': False,
   'k': 1,
   'onlin': 1,
   'p': 1,
   'payment_verified': True,
   'phone_verified': True,
   'profile_complete': True,
   'servic': 1,
   'support': 1,
   'tri': 1,
   'via': 1,
   'welcom': 1},
  'M'),
 ({'7': 1,
   'Caps': None,
   'Digit': None,
   'First': 'p',
   'Last': 'b',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'abl': 1,
   'accord': 1,
   'advanc': 1,
   'agil': 1,
   'ajax': 1,
   'angular': 2,
   'api': 1,
   'approach': 1,
   'avail': 1,
   'best': 1,
   'bootstrap': 1,
   'broad': 1,
   'budget': 1,
   'busi': 3,
   'client': 1,
   'code': 1,
   'codeignit': 1,
   'complex': 1,
   'css': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 4,
   'discuss': 1,
   'ebay': 1,
   'email_verified': True,
   'etc': 1,
   'experi': 1,
   'facebook_connected': False,
   'fb': 1,
   'feel': 1,
   'free': 1,
   'gambl': 1,
   'good': 1,
   'googl': 1,
   'grow': 1,
   'handi': 1,
   'help': 2,
   'hi': 1,
   'html': 1,
   'identity_verified': False,
   'integr': 2,
   'ionic': 1,
   'javascript': 1,
   'job': 1,
   'joomla': 1,
   'jqueri': 1,
   'js': 2,
   'like': 1,
   'magento': 1,
   'mobil': 2,
   'mysql': 1,
   "n't": 1,
   'need': 1,
   'network': 1,
   'offer': 1,
   'opencart': 1,
   'payment_verified': False,
   'paypal': 1,
   'phone_verified': False,
   'phonegap': 1,
   'php': 1,
   'profile_complete': True,
   'provid': 2,
   'servic': 2,
   'shoaib': 1,
   'shop': 1,
   'solut': 1,
   'solv': 1,
   'technolog': 1,
   'type': 2,
   'web': 2,
   'websit': 1,
   'wordpress': 1,
   'year': 1,
   'yii': 1,
   'yii2': 1,
   'zencart': 1},
  'M'),
 ({'5,000': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'B',
   'Numchar': 3,
   'Vowel': None,
   'attent': 2,
   'attract': 1,
   'audienc': 1,
   'blog': 1,
   'client': 3,
   'come': 1,
   'compani': 1,
   'consist': 1,
   'deposit_made': True,
   'email_verified': True,
   'establish': 2,
   'facebook_connected': False,
   'forward': 1,
   'found': 1,
   'freelanc': 1,
   'full-tim': 1,
   'getafreelanc': 2,
   'grab': 1,
   'help': 1,
   'high': 1,
   'identity_verified': False,
   'impact': 1,
   'inc.': 1,
   'individu': 1,
   'industri': 1,
   'interest': 1,
   'involv': 1,
   'kind': 1,
   'know': 1,
   'long-term': 1,
   'look': 1,
   'major': 1,
   'market': 1,
   'name': 1,
   'new': 2,
   'onlin': 2,
   'past': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'qualiti': 1,
   'relationship': 1,
   'reliabl': 1,
   'reput': 1,
   'retain': 1,
   'sampl': 1,
   'see': 1,
   'take': 1,
   'target': 1,
   'three': 2,
   'use': 1,
   'varieti': 1,
   'web': 1,
   'websit': 1,
   'wide': 1,
   'work': 3,
   'writer': 2,
   'year': 1},
  'M'),
 ({'5': 1,
   'Caps': None,
   'Digit': None,
   'First': 'd',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'almost': 1,
   'also': 1,
   'alway': 1,
   'bootstrap': 1,
   'browser': 1,
   'capabl': 1,
   'code': 1,
   'content': 1,
   'css3': 1,
   'deposit_made': False,
   'design': 1,
   'develop': 3,
   'differ': 1,
   'email_verified': True,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'factor': 1,
   'focus': 1,
   'html': 1,
   'identity_verified': False,
   'independ': 1,
   'jqueri': 1,
   'keep': 1,
   'mind': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'product': 1,
   'profile_complete': True,
   'refere': 1,
   'speak': 1,
   'standard': 2,
   'tool': 1,
   'w3c': 1,
   'web': 2,
   'websit': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'k',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'applic': 1,
   'are:1.': 1,
   'area': 1,
   'campu': 1,
   'data': 1,
   'deposit_made': True,
   'development3': 1,
   'email_verified': True,
   'etl': 1,
   'expertis': 1,
   'facebook_connected': False,
   'identity_verified': True,
   'payment_verified': True,
   'peoplesoft': 1,
   'phone_verified': True,
   'profile_complete': True,
   'solut': 1,
   'websit': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(2, 3), match='3'>,
   'First': 'm',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'actual': 1,
   'also': 1,
   'android': 1,
   'command': 1,
   'deposit_made': True,
   'email_verified': True,
   'expertis': 1,
   'facebook_connected': True,
   'good': 1,
   'hello': 1,
   'identity_verified': False,
   'implement': 1,
   'iphon': 1,
   'job': 1,
   'jqueri': 1,
   'knowledg': 1,
   'learn': 2,
   'libgdx': 1,
   'like': 1,
   'mamun': 1,
   'mysql': 1,
   'payment_verified': False,
   'phone_verified': False,
   'phonegap': 1,
   'photoshop': 1,
   'php': 1,
   'profile_complete': True,
   'program': 1,
   'want': 1},
  'M'),
 ({'2': 1,
   '4': 1,
   'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'l',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'around': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'framework': 1,
   'hibern': 1,
   'identity_verified': False,
   'java': 1,
   'jsf': 1,
   'knowledg': 1,
   'like': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'spring': 1,
   'strut': 1,
   'web': 2,
   'year': 1},
  'M'),
 ({"'m": 1,
   "'s": 1,
   '5': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
   'Digit': None,
   'First': 'B',
   'Last': 'e',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'area': 2,
   'around': 1,
   'compani': 3,
   'contribut': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'employ': 2,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'field': 1,
   'great': 1,
   'hello': 1,
   'hire': 1,
   'identity_verified': False,
   'increas': 1,
   'knowledg': 1,
   'mani': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'profit': 1,
   'provid': 1,
   'readi': 1,
   'skill': 1,
   'substanti': 1,
   'today': 1,
   'web': 1,
   'work': 1,
   'world': 1,
   'year': 1},
  'M'),
 ({'2017': 3,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='8'>,
   'First': 'f',
   'Last': '6',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='e'>,
   'also': 1,
   'architect': 1,
   'basic': 1,
   'calcul': 1,
   'conceptu': 1,
   'deposit_made': True,
   'design': 3,
   'detail': 1,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': True,
   'friend': 1,
   'hello': 1,
   'identity_verified': True,
   'inventor': 1,
   'kind': 1,
   'knowledg': 1,
   'name': 1,
   'naval': 1,
   'need': 1,
   'payment_verified': False,
   'phone_verified': True,
   'pro': 1,
   'profession': 1,
   'profile_complete': True,
   'provid': 1,
   'rhino': 1,
   'servic': 1,
   'simul': 1,
   'sketch': 1,
   'softwar': 1,
   'solidwork': 1,
   'start': 1},
  'M'),
 ({"'m": 3,
   "'ve": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='B'>,
   'Digit': None,
   'First': 'B',
   'Last': 'o',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'account': 1,
   'activ': 1,
   'advertis': 1,
   'ago': 2,
   'anyth': 1,
   'area': 1,
   'australia': 1,
   'built': 1,
   'channel': 1,
   'cheer': 1,
   'contact': 1,
   'creation': 1,
   'creativ': 1,
   'deadlin': 1,
   'deposit_made': True,
   'design': 1,
   'detail': 2,
   'differ': 1,
   'email_verified': True,
   'english': 1,
   'experi': 1,
   'extens': 1,
   'facebook_connected': True,
   'field': 1,
   'film': 2,
   'freelanc': 2,
   'gussysound': 2,
   'happi': 1,
   'hello': 1,
   'identity_verified': False,
   'includ': 1,
   'love': 1,
   'made': 1,
   'main': 1,
   'mean': 1,
   'mix': 1,
   'music': 2,
   "n't": 2,
   'need': 1,
   'new': 2,
   'payment_verified': True,
   'phone_verified': True,
   'pleas': 1,
   'post': 1,
   'pressur': 1,
   'product': 2,
   'profile_complete': True,
   'project': 1,
   'quiet': 1,
   'radio': 1,
   'record': 1,
   'sampl': 1,
   'screen': 1,
   'show': 1,
   'small': 1,
   'sound': 5,
   'specialis': 1,
   'still': 1,
   'studio': 2,
   'tv': 2,
   'voiceov': 1,
   'web': 1,
   'work': 3,
   'would': 1,
   'year': 2},
  'F'),
 ({'2010': 1,
   '3d': 1,
   'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'x',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'agreement': 1,
   'client': 1,
   'compens': 1,
   'complet': 1,
   'convert': 1,
   'deposit': 1,
   'deposit_made': False,
   'design': 2,
   'desktop': 2,
   'document': 1,
   'domain': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'flash': 1,
   'govern': 1,
   'graphic': 2,
   'half': 1,
   'hardwar': 1,
   'host': 1,
   'identity_verified': False,
   'intro': 1,
   'mike': 1,
   'model': 1,
   'name': 1,
   'offer': 1,
   'payment_verified': False,
   'paypal': 1,
   'phone_verified': False,
   'privat': 1,
   'profile_complete': True,
   'project': 1,
   'provid': 1,
   'publish': 2,
   'requir': 1,
   'sector': 1,
   'softwar': 1,
   'support': 1,
   'ten': 1,
   'total': 1,
   'train': 1,
   'web': 2,
   'websit': 1,
   'year': 1},
  'M'),
 ({"'m": 1,
   "'ve": 2,
   'Caps': None,
   'Digit': None,
   'First': 't',
   'Last': 'a',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'bangladesh': 1,
   'complet': 1,
   'comput': 1,
   'degre': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'freelanc': 1,
   'good': 1,
   'graduat': 1,
   'hi': 1,
   'honest': 1,
   'identity_verified': False,
   'knowledg': 1,
   'mr.': 1,
   'payment_verified': False,
   'phone_verified': False,
   'post': 1,
   'profile_complete': True,
   'want': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'o',
   'Last': 'r',
   'Numchar': 11,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='o'>,
   'advoc': 2,
   'aim': 1,
   'benefit': 1,
   'client': 1,
   'deposit_made': True,
   'elev': 1,
   'email_verified': True,
   'enjoy': 1,
   'facebook_connected': False,
   'get': 1,
   'greater': 1,
   'identity_verified': False,
   'institut': 1,
   'invest': 1,
   'joy': 1,
   'make': 1,
   'payment_verified': False,
   'peopl': 1,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'see': 1,
   'sure': 1,
   'valu': 2,
   'work': 1,
   'write': 2,
   'writer': 1,
   'written': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='C'>,
   'Digit': None,
   'First': 'C',
   'Last': 'y',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'access': 1,
   'arm': 1,
   'attend': 1,
   'control': 1,
   'deposit_made': False,
   'detector': 1,
   'develop': 1,
   'dsp': 1,
   'email_verified': True,
   'etc': 1,
   'facebook_connected': False,
   'ga': 1,
   'identity_verified': False,
   'lock': 1,
   'microcontrol': 1,
   'msp430': 1,
   'payment_verified': False,
   'phone_verified': False,
   'platform': 1,
   'profile_complete': True,
   'program': 1,
   'safe': 1,
   'time': 1,
   'use': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(1, 2), match='2'>,
   'First': 'e',
   'Last': 'n',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'administr': 2,
   'applic': 2,
   'area': 1,
   'base': 1,
   'comput': 1,
   'databas': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': True,
   'ibm': 1,
   'identity_verified': False,
   'internet': 1,
   'like': 1,
   'linux': 2,
   'network': 2,
   'offic': 1,
   'oracl': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'relat': 1,
   'server': 3,
   'skill': 1,
   'storag': 1,
   'system': 1,
   'troubleshoot': 1,
   'window': 1},
  'M'),
 ({'4': 1,
   '9': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(3, 4), match='1'>,
   'First': 't',
   'Last': '3',
   'Numchar': 6,
   'Vowel': None,
   'across': 1,
   'adword': 1,
   'also': 1,
   'bing': 1,
   'busi': 1,
   'campaign': 1,
   'client': 1,
   'clients.i': 1,
   'close': 1,
   'deposit_made': True,
   'ecommerc': 1,
   'email_verified': True,
   'facebook': 1,
   'facebook_connected': False,
   'googl': 1,
   'identity_verified': False,
   'manag': 1,
   'mani': 1,
   'market': 1,
   'media': 1,
   'payment_verified': False,
   'phone_verified': True,
   'ppc': 1,
   'profile_complete': True,
   'self': 1,
   'sem': 1,
   'seo': 1,
   'shopifi': 1,
   'sinc': 2,
   'social': 1,
   'starter': 1,
   'success': 1,
   'work': 2,
   'world': 1,
   'year': 2},
  'F'),
 ({"'s": 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'i',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='i'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'hobbi': 1,
   'identity_verified': False,
   'love': 1,
   'passion': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'profess': 1,
   'profile_complete': True,
   'work': 1},
  'F'),
 ({'2008': 1,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'r',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'ajax': 1,
   'align': 1,
   'also': 1,
   'angularj': 1,
   'api': 2,
   'applic': 2,
   'backbonej': 1,
   'base': 2,
   'bitbucket': 1,
   'build': 1,
   'c': 1,
   'c++': 1,
   'cakephp': 1,
   'challeng': 1,
   'clean': 1,
   'cloud': 1,
   'code': 2,
   'codeignit': 1,
   'compet': 1,
   'concentr': 1,
   'core': 1,
   'css3': 1,
   'databas': 1,
   'demonstr': 1,
   'deposit_made': False,
   'desktop': 1,
   'develop': 4,
   'effici': 1,
   'email_verified': True,
   'emberj': 1,
   'end': 1,
   'enthusiast': 1,
   'execut': 1,
   'experi': 1,
   'experienc': 1,
   'facebook_connected': False,
   'familiar': 1,
   'fluent': 1,
   'framework': 1,
   'front': 1,
   'git': 1,
   'googl': 1,
   'hobbi': 1,
   'html5': 1,
   'identity_verified': False,
   'implement': 1,
   'includ': 1,
   'integr': 1,
   'interact': 1,
   'interest': 1,
   'java': 1,
   'jqueri': 1,
   'languag': 2,
   'larg': 1,
   'love': 1,
   'manag': 2,
   'mobil': 1,
   'mssql': 1,
   'mvc': 1,
   'mysql': 1,
   'new': 1,
   'nodej': 1,
   'one': 2,
   'other': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'problem': 1,
   'profile_complete': True,
   'python': 1,
   'quick': 1,
   'rdbm': 1,
   'recent': 2,
   'relat': 1,
   'rest': 1,
   'script': 1,
   'similar': 1,
   'sinc': 1,
   'skill': 2,
   'small': 1,
   'solv': 1,
   'soon': 1,
   'sourc': 2,
   'strong': 1,
   'svn': 1,
   'system': 1,
   'task': 1,
   'technolog': 1,
   'tortois': 1,
   'toward': 1,
   'use': 1,
   'variou': 1,
   'vb': 1,
   'web': 1,
   'whmc': 1,
   'wordpress': 1,
   'work': 1,
   'zend': 1},
  'M'),
 ({'...': 1,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'analyt': 1,
   'anyth': 1,
   'databas': 2,
   'debug': 1,
   'deposit_made': True,
   'els': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'framework': 1,
   'help': 1,
   'identity_verified': False,
   'includ': 1,
   'individu': 1,
   'manag': 1,
   'mysql': 1,
   'oop': 1,
   'optim': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 2,
   'profile_complete': True,
   'program': 2,
   'servic': 1,
   'skill': 5,
   'strong': 2,
   'web': 1,
   'xml': 1,
   'year': 1},
  'F'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='G'>,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='7'>,
   'First': 'G',
   'Last': '7',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'acm': 1,
   'address': 1,
   'adob': 1,
   'advertis': 1,
   'alway': 1,
   'applic': 1,
   'band': 1,
   'big': 1,
   'bryan': 1,
   'buffett': 2,
   'cabl': 1,
   'client': 1,
   'comput': 1,
   'creativ': 1,
   'cs5': 4,
   'cynthia': 1,
   'deadlin': 1,
   'deposit_made': False,
   'design': 2,
   'dreamweav': 1,
   'eddi': 1,
   'educ': 1,
   'email_verified': True,
   'enabl': 1,
   'entrepreneur': 1,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'fluent': 1,
   'focu': 1,
   'gain': 1,
   'graphic': 1,
   'hall': 1,
   'houston': 1,
   'identity_verified': False,
   'illustr': 1,
   'indesign': 1,
   'industry-standard': 1,
   'innov': 1,
   'jimmi': 1,
   'john': 1,
   'keith': 1,
   'knowledg': 3,
   'layout': 1,
   'lifestyl': 1,
   'lift': 1,
   'live': 1,
   'love': 1,
   'luke': 2,
   'mac': 1,
   'machin': 1,
   'margaritavil': 3,
   'margarittvil': 2,
   'may': 1,
   'meet': 1,
   'microsoft': 1,
   'money': 1,
   'multipl': 1,
   'need': 1,
   'offic': 1,
   'outdoor': 1,
   'payment_verified': False,
   'person': 1,
   'phil': 1,
   'phone_verified': False,
   'photoshop': 1,
   'platform': 1,
   'prepress': 1,
   'pride': 1,
   'principl': 1,
   'print': 1,
   'processes.i': 1,
   'produc': 1,
   'product': 1,
   'profile_complete': True,
   'project': 1,
   'radio': 1,
   'record': 2,
   'retail': 1,
   'savannah': 1,
   'softwar': 1,
   'st': 1,
   'stone': 1,
   'take': 1,
   'theft': 1,
   'trent': 1,
   'understand': 1,
   'uniqu': 1,
   'variou': 1,
   'view': 1,
   'walker': 1,
   'websit': 1,
   'well': 1,
   'window': 1,
   'wood': 1,
   'work': 2},
  'M'),
 ({'7': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 'p',
   'Last': '1',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'email_verified': True,
   'experienc': 1,
   'facebook_connected': False,
   'framework': 1,
   'hello': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profession': 1,
   'profile_complete': True,
   'variou': 1,
   'wordpress': 1,
   'year': 1},
  'M'),
 ({"'ll": 1,
   "'m": 1,
   '...': 5,
   'Caps': None,
   'Digit': None,
   'First': 'n',
   'Last': 'n',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'actual': 2,
   'applic': 1,
   'becom': 1,
   'best': 2,
   'call': 4,
   'deposit_made': True,
   'dream': 1,
   'email_verified': True,
   'facebook_connected': False,
   'famili': 1,
   'famou': 1,
   'filmmak': 1,
   'first': 1,
   'foremost': 1,
   'friend': 2,
   'geek': 3,
   'get': 1,
   'girlfriend': 1,
   'good': 3,
   'hand': 1,
   'identity_verified': False,
   'left': 1,
   'littl': 1,
   'one': 2,
   'parent': 1,
   'partner': 1,
   'payment_verified': True,
   'perfect': 1,
   'person': 1,
   'phone_verified': True,
   'pixel': 2,
   'pride': 1,
   'profile_complete': True,
   'push': 1,
   'pusher': 1,
   'right': 1,
   'spend': 1,
   'time': 3,
   'tri': 3,
   'well': 1,
   'whatev': 2,
   'young': 1},
  'M'),
 ({'5+': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(9, 10), match='4'>,
   'First': 'b',
   'Last': '4',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='o'>,
   'applic': 1,
   'arrang': 1,
   'asp.net*': 1,
   'c': 1,
   'chanc': 1,
   'css*': 1,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'excel': 2,
   'experi': 1,
   'expertis': 1,
   'facebook_connected': False,
   'give': 1,
   'hi': 1,
   'html*': 1,
   'identity_verified': False,
   'java': 1,
   'manag': 1,
   'ms': 1,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'project': 1,
   'prove': 1,
   'qualiti': 1,
   'us': 1,
   'vb.net': 1,
   'web/desktop': 1,
   'wordpress*': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='9'>,
   'First': 'a',
   'Last': '5',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'entri': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'name': 1,
   'onlin': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'sharma': 1,
   'work': 2},
  'M'),
 ({'5yr': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'banner': 1,
   'brainstorm': 1,
   'brand': 1,
   'check': 1,
   'consum': 1,
   'deposit_made': False,
   'design': 4,
   'edit': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'field': 2,
   'format': 1,
   'furnitur': 2,
   'good': 1,
   'graphic': 1,
   'hand': 1,
   'heavi': 1,
   'hi': 1,
   'identity_verified': False,
   'kind': 2,
   'let': 1,
   'light': 1,
   'logic': 1,
   'logo': 1,
   'love': 2,
   'machineri': 1,
   'mani': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'problem': 1,
   'product': 1,
   'profile_complete': True,
   'project': 2,
   'projects.i': 1,
   'relat': 2,
   'sketch': 1,
   'solv': 1,
   'thing': 1,
   'time': 1,
   'tri': 1,
   'vector': 1,
   'work': 2},
  'M'),
 ({'2005': 1,
   '3.0': 1,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'l',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'actionscript': 1,
   'agil': 1,
   'air': 1,
   'ask': 1,
   'believ': 1,
   'commun': 1,
   'confid': 1,
   'creat': 2,
   'css2': 1,
   'css3': 1,
   'deposit_made': True,
   'develop': 3,
   'email_verified': True,
   'environ': 1,
   'espa\\xc3\\xb1ol': 1,
   'facebook_connected': True,
   'flash': 2,
   'flex': 1,
   'goal': 1,
   'good': 1,
   'guidanc': 1,
   'help': 2,
   'html4': 1,
   'html5': 2,
   'identity_verified': False,
   'improv': 2,
   'ingl\\xc3\\xa9': 1,
   'interfac': 1,
   'javascript': 2,
   'jqueri': 1,
   'leadership': 1,
   'main': 1,
   'mani': 1,
   'methodolog': 1,
   'motiv': 1,
   'multicultur': 1,
   'multidisciplinari': 1,
   'need': 1,
   'payment_verified': True,
   'perform': 1,
   'phone_verified': True,
   'php': 2,
   'product': 1,
   'profile_complete': True,
   'provid': 1,
   'qualiti': 1,
   'rich': 1,
   'self-taught': 1,
   'sinc': 1,
   'skill': 1,
   'solid': 1,
   'standard': 1,
   'strength': 1,
   'team': 3,
   'tie': 1,
   'use': 1,
   'user': 1,
   'web': 3,
   'work': 2,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'r',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(3, 4), match='o'>,
   'applic': 1,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'india': 1,
   'mobil': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'wed': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'f',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'deposit_made': False,
   'develop': 1,
   'email_verified': True,
   'excel': 1,
   'facebook_connected': True,
   'identity_verified': False,
   'illustr': 1,
   'ms': 1,
   'oracl': 1,
   'payment_verified': False,
   'phone_verified': False,
   'photoshop': 1,
   'profile_complete': True,
   'word': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='3'>,
   'First': 's',
   'Last': '4',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='u'>,
   'applic': 1,
   'deposit_made': True,
   'email_verified': True,
   'facebook_connected': True,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': True,
   'power': 1,
   'profile_complete': True,
   'readi': 1,
   'serv': 1,
   'web': 1,
   'yii': 1},
  'M'),
 ({'15': 1,
   '8': 1,
   'Caps': None,
   'Digit': None,
   'First': 'g',
   'Last': 'e',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'combin': 1,
   'deposit_made': True,
   'design': 1,
   'email_verified': True,
   'experi': 1,
   'facebook_connected': False,
   'graphic': 1,
   'identity_verified': False,
   'internet': 1,
   'marketing.w': 1,
   'payment_verified': True,
   'peopl': 1,
   'phone_verified': False,
   'php': 2,
   'profile_complete': True,
   'program': 1,
   'seo': 1,
   'skill': 1,
   'team': 1,
   'wordpress': 2,
   'year': 1},
  'M'),
 ({'15': 1,
   'Caps': None,
   'Digit': None,
   'First': 's',
   'Last': 'e',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(2, 3), match='u'>,
   'becom': 1,
   'busi': 2,
   'deposit_made': True,
   'email_verified': True,
   'error': 1,
   'extrem': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'load': 1,
   'onlin': 2,
   'payment_verified': False,
   'phone_verified': True,
   'profici': 1,
   'profile_complete': True,
   'trial': 1,
   'year': 1},
  'M'),
 ({'**': 1,
   '--': 4,
   '200': 1,
   '2004': 1,
   '2006': 1,
   'Caps': None,
   'Digit': None,
   'First': 'e',
   'Last': 't',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'adword': 1,
   'also': 1,
   'android': 1,
   'app': 3,
   'beauti': 1,
   'best': 1,
   'chang': 1,
   'code': 1,
   'convert': 1,
   'css': 1,
   'custom': 1,
   'deposit_made': True,
   'develop': 2,
   'drupal': 1,
   'ecommerc': 1,
   'email_verified': True,
   'engin': 1,
   'ensur': 1,
   'ethic': 1,
   'even': 1,
   'facebook_connected': False,
   'first': 1,
   'guarante': 2,
   'happi': 2,
   'highli': 2,
   'hire': 1,
   'html': 1,
   'identity_verified': False,
   'integr': 1,
   'internet': 1,
   'io': 1,
   'javascript': 1,
   'joomla': 1,
   'jqueri': 1,
   'laser': 1,
   'lead': 1,
   'learner': 1,
   'like': 1,
   'list': 1,
   'listen': 1,
   'made': 2,
   'magento': 1,
   'mani': 1,
   'market': 2,
   'mysql': 1,
   'neither': 1,
   'opencart': 1,
   'payment_verified': True,
   'peopl': 1,
   'phone_verified': True,
   'php': 1,
   'prefer': 1,
   'prestashop': 1,
   'profession': 1,
   'profile_complete': True,
   'rank': 1,
   'rapidli': 1,
   'search': 1,
   'seo': 1,
   'sinc': 1,
   'site': 1,
   'smm': 1,
   'start': 1,
   'still': 1,
   'store': 1,
   'target': 1,
   'team': 1,
   'technolog': 1,
   'thing': 2,
   'top': 1,
   'tri': 1,
   'use': 1,
   'user': 1,
   'vb': 1,
   'web': 2,
   'websit': 1,
   'well': 1,
   'woocommerc': 1,
   'wordpress': 1,
   'work': 1,
   'zencart': 1},
  'M'),
 ({'Caps': <_sre.SRE_Match object; span=(0, 1), match='K'>,
   'Digit': None,
   'First': 'K',
   'Last': 't',
   'Numchar': 7,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'area': 1,
   'brand': 1,
   'code': 1,
   'cs5': 1,
   'deposit_made': False,
   'design': 3,
   'develop': 2,
   'dreamweav': 2,
   'email_verified': True,
   'facebook_connected': False,
   'firework': 1,
   'form': 1,
   'graphic': 1,
   'identity_verified': False,
   'illustr': 1,
   'independ': 1,
   'joomla': 1,
   'logo': 1,
   'medium': 1,
   'mysql': 1,
   'part': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'php': 1,
   'portfolio': 1,
   'ppc': 1,
   'primari': 1,
   'profile_complete': True,
   'secur': 1,
   'sem': 1,
   'seo': 1,
   'site': 2,
   'strongest': 1,
   'team': 1,
   'use': 2,
   'web': 1,
   'work': 1,
   'written': 1},
  'M'),
 ({"'ll": 1,
   '6': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(5, 6), match='2'>,
   'First': 'e',
   'Last': 'j',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='e'>,
   'also': 2,
   'angularj': 1,
   'app': 1,
   'autom': 1,
   'back-end': 1,
   'bootstrap': 1,
   'build': 1,
   'css': 1,
   'deposit_made': False,
   'develop': 1,
   'differ': 1,
   'done': 1,
   'either': 1,
   'email_verified': True,
   'experi': 1,
   'expressj': 1,
   'facebook_connected': False,
   'front-end': 1,
   'full-tim': 1,
   'get': 1,
   'host': 1,
   'html5': 1,
   'identity_verified': False,
   'javascript': 1,
   'librari': 1,
   'manag': 1,
   'mani': 1,
   'manual': 1,
   'need': 1,
   'node.j': 1,
   'offer': 2,
   'opencart': 1,
   'organ': 1,
   'payment_verified': False,
   'phone_verified': True,
   'php': 1,
   'profession': 1,
   'profile_complete': True,
   'solut': 1,
   'special': 1,
   'technolog': 1,
   'test': 1,
   'variou': 1,
   'vp': 1,
   'web': 4,
   'websit': 1,
   'wordpress': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({"'m": 2,
   '50': 1,
   '6': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(10, 11), match='1'>,
   'First': 'a',
   'Last': '9',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'account': 1,
   'also': 2,
   'board': 1,
   'captcha': 1,
   'chanc': 1,
   'compani': 1,
   'cpa': 1,
   'data': 2,
   'deposit_made': False,
   'email_verified': True,
   'entri': 1,
   'even': 1,
   'everyon': 1,
   'exam': 1,
   'experi': 1,
   'facebook_connected': False,
   'financ': 1,
   'follow': 1,
   'free': 1,
   'freelanc': 1,
   'full': 1,
   'gaf': 1,
   'give': 1,
   'graduat': 1,
   'hard': 1,
   'hope': 1,
   'hour': 1,
   'identity_verified': False,
   'instruct': 1,
   'manag': 1,
   'newbi': 1,
   'payment_verified': False,
   'perfectionist': 1,
   'phone_verified': False,
   'plan': 2,
   'plenti': 1,
   'previou': 1,
   'privat': 1,
   'profile_complete': True,
   'review': 1,
   'take': 1,
   'thank': 1,
   'though': 1,
   'time': 1,
   'welcom': 1,
   'work': 3,
   'wpm': 1,
   'year': 1},
  'F'),
 ({"'m": 2,
   '.\\xe2\\u0153\\u201c': 3,
   '10+': 1,
   '1000+': 1,
   '12': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   '\\xe2\\u0153\\u201c': 1,
   'ad': 1,
   'adob': 2,
   'anim': 4,
   'banner': 1,
   'brochur': 1,
   'bulk': 1,
   'busi': 1,
   'canva': 1,
   'card': 1,
   'client': 1,
   'complet': 2,
   'convers': 3,
   'css3': 1,
   'deposit_made': True,
   'design': 7,
   'develop': 1,
   'edg': 1,
   'email': 1,
   'email_verified': True,
   'expert': 1,
   'facebook_connected': True,
   'file': 1,
   'finish': 4,
   'first': 1,
   'flash': 1,
   'flyer': 1,
   'freelanc': 1,
   'hard': 1,
   'html5': 2,
   'identity_verified': True,
   'imposs': 1,
   'javascript': 1,
   'journey': 1,
   'land': 1,
   'long': 1,
   'long-term': 1,
   'mani': 1,
   'me.i': 1,
   'media': 1,
   'newslett': 1,
   'noth': 1,
   'page': 1,
   'partnership': 1,
   'passion': 1,
   'payment_verified': True,
   'pdf': 1,
   'phone_verified': True,
   'platform': 1,
   'poster': 1,
   'present': 1,
   'print': 1,
   'profession': 1,
   'profile_complete': True,
   'project': 3,
   'rich': 1,
   'satisfact': 1,
   'special': 1,
   'success': 1,
   'svg': 1,
   'swf': 1,
   'take': 1,
   'team': 1,
   'websit': 1,
   'work': 2,
   'year': 1},
  'M'),
 ({'12': 1,
   'Caps': None,
   'Digit': None,
   'First': 'c',
   'Last': 'u',
   'Numchar': 6,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'ad': 1,
   'adob': 2,
   'aftereffect': 1,
   'agenc': 1,
   'also': 1,
   'anim': 1,
   'anyth': 1,
   'around': 1,
   'asset': 1,
   'autodesk': 1,
   'avail': 1,
   'becam': 1,
   'budget': 1,
   'complet': 1,
   'cours': 1,
   'creation': 1,
   'day': 2,
   'deposit_made': False,
   'design': 2,
   'develop': 1,
   'e-learn': 1,
   'edit': 1,
   'els': 1,
   'email_verified': True,
   'enjoy': 1,
   'everyon': 1,
   'experi': 1,
   'explain': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'full-tim': 1,
   'glad': 1,
   'graphic': 2,
   'identity_verified': False,
   'intern': 1,
   'intro': 1,
   'like': 1,
   'line': 1,
   'logo': 1,
   'maxon': 1,
   'maya': 1,
   'motion': 2,
   'much': 2,
   'network': 1,
   'next': 1,
   'night': 1,
   'normal': 1,
   'one': 1,
   'payment_verified': False,
   'phone_verified': True,
   'photoshop': 1,
   'plan': 1,
   'pretti': 1,
   'produc': 1,
   'profile_complete': True,
   'project': 3,
   'relat': 1,
   'research': 1,
   'rockstar': 1,
   'schedul': 1,
   'special': 1,
   'storyboard': 1,
   'style': 1,
   'talk': 1,
   'that\\xe2\\u20ac\\u2122': 1,
   'throughout': 1,
   'train': 1,
   'tv': 1,
   'video': 4,
   'within': 1,
   'work': 3,
   'year': 2},
  'M'),
 ({'3': 1,
   'Caps': None,
   'Digit': None,
   'First': 'b',
   'Last': 't',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'add': 1,
   'also': 1,
   'anoth': 1,
   'back': 1,
   'built': 1,
   'client': 2,
   'deposit_made': True,
   'develop': 1,
   'email_verified': True,
   'end': 1,
   'environ': 1,
   'facebook_connected': False,
   'freelanc': 1,
   'function': 1,
   'good': 1,
   'identity_verified': False,
   'jqueri': 1,
   'like': 3,
   'mani': 3,
   'mysql': 1,
   'onlin': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 2,
   'php/mysql': 1,
   'profile_complete': True,
   'reput': 1,
   'satisfi': 1,
   'servic': 1,
   'side': 1,
   'site': 1,
   'use': 2,
   'web': 1,
   'websit': 1,
   'work': 4,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'r',
   'Last': 'l',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='e'>,
   'applic': 1,
   'asp': 1,
   'bachelor': 1,
   'basic': 1,
   'comput': 1,
   'degre': 1,
   'deposit_made': False,
   'desktop': 1,
   'email_verified': True,
   'facebook_connected': True,
   'g.': 1,
   'graduat': 1,
   'identity_verified': False,
   'payment_verified': False,
   'phone_verified': False,
   'php': 1,
   'profile_complete': True,
   'respect': 1,
   'scienc': 2,
   'special': 1,
   'use': 1,
   'visual': 1,
   'web': 1},
  'M'),
 ({'...': 1,
   '1': 1,
   '100': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'f',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'auto': 1,
   'cad': 1,
   'captur': 1,
   'cheapest': 1,
   'convers': 1,
   'currenc': 1,
   'current': 1,
   'deposit_made': True,
   'diet': 1,
   'email_verified': True,
   'etc': 1,
   'excel': 1,
   'experi': 1,
   'facebook_connected': False,
   'follow': 1,
   'hat': 1,
   'identity_verified': False,
   'lanka': 1,
   'lankan': 1,
   'payment_verified': True,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'provid': 1,
   'qualiti': 1,
   'rv': 1,
   'sale': 1,
   'seo': 1,
   'servic': 1,
   'sheet': 1,
   'sri': 2,
   'team': 1,
   'technolog': 1,
   'us': 1,
   'white': 1,
   'work': 2},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'w',
   'Last': 'p',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'android': 1,
   'applic': 4,
   'best': 1,
   'care': 1,
   'contact': 1,
   'cross': 1,
   'deposit_made': False,
   'detail': 1,
   'develop': 3,
   'email_verified': True,
   'entertain': 1,
   'expertis': 1,
   'extj': 1,
   'facebook_connected': False,
   'health': 1,
   'html5': 1,
   'identity_verified': False,
   'industri': 2,
   'j2ee': 1,
   'limit': 1,
   'meet': 1,
   'mobil': 2,
   'mysql': 1,
   'passion': 2,
   'payment_verified': False,
   'phone_verified': False,
   'phonegap': 1,
   'platform': 1,
   'profile_complete': True,
   'program': 1,
   'push': 1,
   'requir': 1,
   'sencha': 1,
   'serv': 1,
   'sever': 1,
   'special': 1,
   'sqllite': 1,
   'team': 1,
   'technic': 1,
   'technolog': 1,
   'till': 2,
   'titanium': 1,
   'touch': 1,
   'us': 2,
   'web': 2,
   'whose': 1,
   'work': 1},
  'M'),
 ({"'ve": 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'Digit': None,
   'First': 'I',
   'Last': 'u',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='I'>,
   'compet': 1,
   'complet': 1,
   'contact': 1,
   'cours': 1,
   'deposit_made': True,
   'email_verified': True,
   'enabl': 1,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'identity_verified': False,
   'improv': 1,
   'increas': 1,
   'level': 1,
   'look': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profession': 1,
   'profile_complete': True,
   'spanish': 1,
   'subject': 1,
   'thank': 1,
   'translat': 1,
   'work': 1},
  'F'),
 ({'20': 1,
   'Caps': <_sre.SRE_Match object; span=(0, 1), match='R'>,
   'Digit': None,
   'First': 'R',
   'Last': 'z',
   'Numchar': 12,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'accord': 1,
   'also': 1,
   'civil': 2,
   'cost': 1,
   'deposit_made': False,
   'draw': 1,
   'email_verified': True,
   'estim': 1,
   'experi': 1,
   'facebook_connected': False,
   'field': 1,
   'identity_verified': False,
   'market': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'quantiti': 1,
   'rate': 1,
   'work': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'a',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'abil': 1,
   'adapt': 2,
   'administr': 1,
   'area': 1,
   'backup': 3,
   'central': 1,
   'challeng': 1,
   'citrix': 1,
   'commerc': 1,
   'commun': 1,
   'configur': 1,
   'constantli': 1,
   'core': 1,
   'deposit_made': False,
   'design': 1,
   'dhcp': 1,
   'directori': 1,
   'dynam': 1,
   'email_verified': True,
   'engin': 1,
   'environ': 1,
   'exec': 2,
   'experi': 1,
   'facebook_connected': False,
   'file': 1,
   'ftp': 1,
   'function': 1,
   'greatest': 1,
   'handi': 1,
   'http': 2,
   'identity_verified': False,
   'immedi': 1,
   'isa': 1,
   'learn': 1,
   'new': 2,
   'obtain': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': False,
   'posit': 1,
   'profile_complete': True,
   'program': 1,
   'project': 1,
   'quick': 1,
   'revit': 1,
   'rout': 1,
   'server': 4,
   'servermicrosoft': 3,
   'sharepoint': 1,
   'situat': 1,
   'skill': 1,
   'sql': 1,
   'strength': 1,
   'symantec': 1,
   'system': 1,
   'use': 2,
   'vmware': 1,
   'vpn': 1,
   'walk': 1,
   'web': 1,
   'win': 1},
  'M'),
 ({'Caps': None,
   'Digit': None,
   'First': 'q',
   'Last': 'x',
   'Numchar': 3,
   'Vowel': None,
   'advis': 1,
   'analysi': 1,
   'data': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'identity_verified': False,
   'methodolog': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'provid': 1,
   'research': 1,
   'statist': 2,
   'teach': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(8, 9), match='2'>,
   'First': 's',
   'Last': '7',
   'Numchar': 13,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'current': 1,
   'deposit_made': True,
   'electr': 1,
   'email_verified': True,
   'engin': 1,
   'facebook_connected': False,
   'graduat': 1,
   'identity_verified': False,
   'limit': 1,
   'master': 1,
   'payment_verified': False,
   'phone_verified': True,
   'profile_complete': True,
   'usc': 1,
   'work': 1},
  'M'),
 ({'...': 1,
   '8+': 1,
   'Caps': None,
   'Digit': None,
   'First': 'a',
   'Last': 'r',
   'Numchar': 14,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'along': 1,
   'also': 1,
   'b': 3,
   'brochur': 1,
   'c': 2,
   'cake': 1,
   'code': 1,
   'content': 1,
   'core': 1,
   'custom': 2,
   'deposit_made': False,
   'design': 2,
   'designing3': 1,
   'e-commerc': 1,
   'email_verified': True,
   'experi': 2,
   'facebook_connected': False,
   'follow': 1,
   'good': 1,
   'hear': 1,
   'hello': 1,
   'help': 1,
   'html4': 1,
   'identity_verified': True,
   'ignit': 1,
   'linish': 2,
   'logo': 1,
   'look': 1,
   'magento': 1,
   'manag': 1,
   'opencart': 1,
   'opensourc': 1,
   'oscommerce6': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 1,
   'php5': 1,
   'plugin': 1,
   'profile_complete': True,
   'program': 1,
   'programm': 1,
   'soon': 1,
   'system': 1,
   'team': 1,
   'technologies.i': 1,
   'web': 1,
   'wordpress': 1,
   'year': 1},
  'M'),
 ({'.i': 1,
   '35': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(7, 8), match='2'>,
   'First': 'a',
   'Last': '1',
   'Numchar': 9,
   'Vowel': <_sre.SRE_Match object; span=(0, 1), match='a'>,
   'bsc': 1,
   'comput': 1,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'graduat': 1,
   'identity_verified': False,
   'know': 1,
   'ms': 1,
   'offic': 1,
   'payment_verified': False,
   'pdf': 1,
   'phone_verified': False,
   'profile_complete': True,
   'scienc': 1,
   'speed': 1,
   'type': 1,
   'wpm': 1},
  'F'),
 ({"'m": 1,
   'Caps': None,
   'Digit': None,
   'First': 'm',
   'Last': 'a',
   'Numchar': 8,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='i'>,
   'best': 1,
   'bulgaria': 1,
   'clients.i': 1,
   'deposit_made': False,
   'design': 1,
   'email_verified': True,
   'facebook_connected': False,
   'good': 1,
   'graphic': 1,
   'hi': 1,
   'identity_verified': False,
   'live': 1,
   'make': 1,
   'part': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'project': 1,
   'realli': 1,
   'see': 1,
   'small': 1,
   'varna': 1,
   'work': 1},
  'F'),
 ({'Caps': None,
   'Digit': None,
   'First': 'f',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='o'>,
   'deposit_made': False,
   'email_verified': True,
   'facebook_connected': False,
   'help': 1,
   'identity_verified': False,
   'inform': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'web': 1,
   'websit': 1,
   'would': 1},
  'M'),
 ({'2': 1,
   'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(6, 7), match='8'>,
   'First': 's',
   'Last': 's',
   'Numchar': 10,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'analyst': 1,
   'analyt': 1,
   'associ': 1,
   'data': 2,
   'db2': 1,
   'deposit_made': True,
   'dynam': 1,
   'email_verified': True,
   'facebook_connected': True,
   'financi': 1,
   'forecast': 1,
   'identity_verified': False,
   'india': 1,
   'j2ee': 1,
   'learn': 1,
   'ltd.': 1,
   'machin': 1,
   'market': 1,
   'mba': 1,
   'model': 1,
   'payment_verified': True,
   'phone_verified': True,
   'php': 1,
   'predict': 1,
   'profile_complete': True,
   'pvt': 1,
   'r': 1,
   'scientist': 1,
   'sinc': 1,
   'skill': 1,
   'sql': 1,
   'work': 1,
   'xl': 1,
   'year': 1},
  'M'),
 ({'Caps': None,
   'Digit': <_sre.SRE_Match object; span=(4, 5), match='6'>,
   'First': 'n',
   'Last': '6',
   'Numchar': 5,
   'Vowel': <_sre.SRE_Match object; span=(1, 2), match='a'>,
   'banner': 1,
   'big': 1,
   'blog': 1,
   'bosnian': 1,
   'bulgarian': 1,
   'comment': 1,
   'croatian': 1,
   'data': 1,
   'deposit_made': False,
   'design': 1,
   'directori': 1,
   'email_verified': True,
   'english': 1,
   'entri': 1,
   'experi': 1,
   'facebook_connected': False,
   'identity_verified': False,
   'logo': 1,
   'ms': 1,
   'offer': 1,
   'offic': 1,
   'payment_verified': False,
   'phone_verified': False,
   'profile_complete': True,
   'serbian': 1,
   'submiss': 1,
   'translat': 1,
   'web': 1},
  'M'),
 ...]
In [131]:
# Run a Naive Bayes classifier on above training set using 5 fold cross validation and check accuracy of model

from sklearn.model_selection import KFold
import numpy as np
k_fold = KFold(n_splits=5, shuffle=True)
accu = []
for train_idx, test_idx in k_fold.split(list2):
    train = [list2[i] for i in train_idx]
    test = [list2[i] for i in test_idx]
    classifier = nltk.NaiveBayesClassifier.train(train)   
    accu.append( nltk.classify.util.accuracy(classifier, test) )
    print('accuracy:', accu[len(accu)-1])    
print('CV mean accuracy:', np.mean(accu))   
accuracy: 0.5336
accuracy: 0.5104
accuracy: 0.5616
accuracy: 0.5448
accuracy: 0.544435548438751
CV mean accuracy: 0.538967109688
In [132]:
#Train Naive Bayes classifier on entire training set and use it to predict gender on test set


test = pd.read_csv('test.csv')

from ast import literal_eval                          #Parse Json format status as dictionary on test set

status2 = test['status'].apply(literal_eval)

fea2=[]                                             # Creating test set of features
for i in range(len(status2)):
    z={**testfeat[i],**testfeat2[i],**status2[i]}
    fea2.append(z)

fea2
classifier2 = nltk.NaiveBayesClassifier.train(list2)  #Training model on training set list2
pred100 = [classifier2.classify(row) for row in fea2] #Gender prediction on test set fea2
pred100
Out[132]:
['F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'M',
 'M',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'M',
 'F',
 'M',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'M',
 'F',
 'M',
 'M',
 'M',
 'F',
 'F',
 'M',
 'F',
 'F',
 'F',
 'M',
 'F',
 ...]
In [133]:
# Display top 5 most informative features used for classification

classifier2.show_most_informative_features(5)
Most Informative Features
                   femal = 1                   F : M      =     21.7 : 1.0
                  well.i = 1                   F : M      =     18.8 : 1.0
                     cat = 1                   F : M      =     18.8 : 1.0
                     mom = 1                   F : M      =     16.8 : 1.0
                 tourist = 1                   F : M      =     15.9 : 1.0
In [134]:
# Copy test set predictions to output dataset

naiveqn3 = pd.DataFrame({'username':test['username'], 'prediction':pred100})
naiveqn3.to_csv('dav16108naiveqn3.csv', index=False)
In [135]:
# Run a Max Entropy classifier on above training set using 5 fold cross validation and check accuracy of model

k_fold = KFold(n_splits=5, shuffle=True)
accu = []
for train_idx, test_idx in k_fold.split(list2):
    train = [list2[i] for i in train_idx]
    test = [list2[i] for i in test_idx]
    classifier = nltk.classify.MaxentClassifier.train(train, trace=3, max_iter=2)       
    accu.append( nltk.classify.util.accuracy(classifier, test) )
    print('accuracy:', accu[len(accu)-1])    
print('CV mean accuracy:', np.mean(accu)) 
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.812
         Final          -0.24406        0.813
accuracy: 0.816
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.815
         Final          -0.28975        0.816
accuracy: 0.804
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.811
         Final          -0.31599        0.812
accuracy: 0.8208
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.814
         Final          -0.30684        0.815
accuracy: 0.8096
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.813
         Final          -0.29538        0.814
accuracy: 0.8134507606084868
CV mean accuracy: 0.812770152122
In [136]:
#Train Max Entropy classifier on entire training set and use it to predict gender on test set

classifier3 = nltk.classify.MaxentClassifier.train(list2, trace=3, max_iter=2)
pred101 = [classifier3.classify(row) for row in fea2]
pred101
  ==> Training (2 iterations)

      Iteration    Log Likelihood    Accuracy
      ---------------------------------------
             1          -0.69315        0.813
         Final          -0.28704        0.814
Out[136]:
['M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 'M',
 ...]
In [137]:
# Display top 5 most informative features used for classification


classifier3.show_most_informative_features(5)
   0.446 Numchar==5 and label is 'M'
   0.446 build==1 and label is 'M'
   0.446 complet==1 and label is 'M'
   0.446 follow==1 and label is 'M'
   0.446 express==1 and label is 'M'
In [138]:
# Copy test set predictions to output dataset

test = pd.read_csv('test.csv')
maxentropyqn3 = pd.DataFrame({'username':test['username'], 'prediction':pred101})
maxentropyqn3.to_csv('dav16108maxentropyqn3.csv', index=False)

Description and insights of Question1,2 and 3

In question1, predicting gender from username, I extracted various features from username like first character, last character, length of name,number of capitalized letters, vowel counts and presence of digits to train the model to predict gender. Two classifiers, Naive Bayes and Maximum Entropy classifier were used to train the model and predict gender on new data sets. 5-fold cross validation was done.Naive bayes classifier predicted new cases with mean accuracy of 71.4% and Max Entropy classifier predicted new cases with mean accuracy of 86.7%.
First=U,X,Y,Last=O,B were major features to identify female users according to Naive bayes Vowels=a,e,i,o,u were major features to identify female users according to max entropy classifier

In question2, predicting gender from description, the words and frequency of occurence in description was used to train the model to predict gender. Three classifiers, Naive Bayes, maximum Entropy and Support Vector Classifier were used to train the model and predict gender on test set. 5-fold cross validation was done.Naive bayes classifier predicted new cases with mean accuracy of 56.5% ,Max Entropy classifier predicted new cases with mean accuracy of 75.08%, and Support Vector Classifier predicted new cases with mean accuracy of 74.4%
Presence of words mom, cat, typeset, cum were major features to identify female users according to Naive bayes Presence of words lion,build,complete were major features to identify male users according to max entropy classifier

In question3, predicting gender from a combination of username, decsription and status, all the dictionary of features from earlier questions were combined with status dictionary obtained after json parsing. This combined dictionary of features was used to train the model and predict gender for test case.Two models, Naive Bayes and Maximum Entropy Classifier were used to train the model and predict gender on test set. 5-fold cross validation was done.Naive bayes classifier predicted new cases with mean accuracy of 53.8% ,Max Entropy classifier predicted new cases with mean accuracy of 81.2%. Presence of words femal, cat, mom, tourist were major features to identify female users according to Naive bayes. Presence of words build, complet,follow,express and number of characters=5 were major features to identify male users according to max entropy classifier.